@font-face {
  font-family: "Geist";
  src: url("assets/fonts/geist-variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Happy Times";
  src: url("assets/fonts/happy-time.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Happy Times Swash";
  src: url("assets/fonts/happy-time-three.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #221f1d;
  --muted: #4f5964;
  --subtle: #7d8792;
  --paper: #ffffff;
  --surface: #f7fbff;
  --surface-strong: #edf6ff;
  --line: #e4edf6;
  --dark: #1f1e1b;
  --mint: #e5f4e7;
  --lavender: #e3ddee;
  --rose: #ead2dd;
  --cream: #fff1c9;
  --blue: #d8e9f8;
  --coral: #edc0b6;
  --peach: #f6d8b7;
  --pastel-green: #c5e6cf;
  --accent-blue: #6cb8ed;
  --accent-orange: #f5a23a;
  --accent-purple: #aa78a2;
  --card: #ffffff;
  --card-soft: #f4f9ff;
  --card-border: #e1ebf4;
  --shadow-soft: 0 16px 42px rgba(44, 38, 31, 0.09);
  --shadow-light: 0 3px 13px rgba(44, 38, 31, 0.08);
  --serif: Georgia, "Times New Roman", Times, serif;
  --serif-fancy: "Happy Times Swash", "Happy Times", Georgia, "Times New Roman", Times, serif;
  --sans: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --container: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  border-top: 9px solid var(--accent-blue);
  background:
    linear-gradient(168deg, transparent 0 34%, rgba(216, 233, 248, 0.26) 34% 43%, transparent 43% 100%) 0 720px / 100% 1500px no-repeat,
    linear-gradient(12deg, transparent 0 60%, rgba(229, 244, 231, 0.24) 60% 70%, transparent 70% 100%) 0 1580px / 100% 1500px no-repeat,
    var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

main::before {
  content: none;
}

main > * {
  position: relative;
  z-index: 1;
}

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

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

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

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 3px;
}

.site-header,
.hero,
.trusted-section,
.section-space,
.dark-cta,
.site-footer {
  width: min(calc(100% - 128px), var(--container));
  margin-inline: auto;
}

.site-header {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 2.4vw, 34px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--ink);
}

.brand-logo {
  width: clamp(220px, 22vw, 340px);
  height: auto;
  display: block;
}

.site-header .brand-logo {
  width: clamp(230px, 22vw, 340px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.6vw, 24px);
  margin-right: auto;
  font-size: 16px;
  font-weight: 650;
}

.main-nav a:nth-child(2)::after,
.main-nav a:nth-child(3)::after {
  content: "";
  width: 0;
  height: 0;
  display: inline-block;
  margin-left: 4px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  vertical-align: middle;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.6vw, 25px);
  font-size: 16px;
  font-weight: 700;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 18px;
  background: var(--paper);
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: #cfc6ba;
  background: #f4f9ff;
}

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

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

.button-dark:hover {
  background: #2c2823;
  border-color: #2c2823;
}

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

.button-outline {
  background: var(--paper);
  border-color: var(--line);
  color: var(--ink);
}

.button-glass,
.button-dark-outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

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

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

.hero {
  min-height: 652px;
  margin-top: 9px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: grid;
  align-items: center;
  background: var(--dark);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(31, 30, 27, 0.76) 0%, rgba(31, 30, 27, 0.48) 39%, rgba(31, 30, 27, 0.07) 80%);
}

.hero-copy {
  max-width: 780px;
  padding-left: 48px;
  padding-top: 90px;
  color: #ffffff;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0 0 34px;
  font-family: var(--serif);
  font-size: clamp(52px, 5.1vw, 70px);
  line-height: 0.88;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-copy h1 em {
  display: block;
  font-family: var(--serif-fancy);
  font-style: italic;
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 36px;
  color: #ffffff;
  font-size: clamp(21px, 1.65vw, 25px);
  line-height: 1.38;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trusted-section {
  padding: 94px 0 50px;
  text-align: center;
}

.trusted-section.compact {
  padding: 46px 0 0;
}

.trusted-section p {
  margin: 0 0 45px;
  color: var(--muted);
  font-size: 20px;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(9, minmax(72px, 1fr));
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
}

.brand-strip img {
  width: 100%;
  max-width: 132px;
  max-height: 54px;
  display: block;
  justify-self: center;
  object-fit: contain;
  opacity: 0.62;
  filter: grayscale(1) saturate(0) contrast(0.96);
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.brand-strip img:hover,
.brand-strip img:focus-visible {
  opacity: 1;
  filter: grayscale(0) saturate(1) contrast(1);
  transform: translateY(-2px);
}

.brand-strip .logo-tall {
  max-width: 72px;
  max-height: 66px;
}

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

.section-space {
  padding: clamp(76px, 8vw, 132px) 0;
}

.platform-intro {
  padding-top: clamp(36px, 5vw, 78px);
}

.platform-copy {
  max-width: 980px;
  margin: 0 auto 56px;
  text-align: center;
}

.platform-copy h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(42px, 4.6vw, 64px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: 0;
}

.platform-copy p {
  max-width: 900px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.4;
}

.platform-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.platform-card {
  min-height: 306px;
  border-radius: var(--radius);
  background: var(--surface);
  padding: 32px 26px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.platform-card:nth-child(1) {
  background: var(--mint);
}

.platform-card:nth-child(2) {
  background: var(--lavender);
}

.platform-card:nth-child(3) {
  background: var(--blue);
}

.platform-card:nth-child(4) {
  background: var(--cream);
}

.platform-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 0;
}

.platform-card p {
  margin: 0;
  color: var(--muted);
  font-size: 24px;
  line-height: 1.28;
}

.platform-icon {
  width: 52px;
  height: 52px;
  margin-bottom: auto;
  color: var(--ink);
  position: relative;
}

.platform-icon::before,
.platform-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

.icon-chat::before {
  width: 28px;
  height: 22px;
  left: 10px;
  top: 8px;
  border: 4px solid currentColor;
  border-left: 0;
}

.icon-chat::after {
  width: 18px;
  height: 16px;
  left: 8px;
  top: 27px;
  border-left: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  transform: skewY(28deg);
}

.icon-ladder::before {
  width: 28px;
  height: 40px;
  left: 12px;
  top: 5px;
  border-left: 4px solid currentColor;
  border-right: 4px solid currentColor;
  transform: skewY(-12deg);
}

.icon-ladder::after {
  width: 30px;
  height: 30px;
  left: 11px;
  top: 9px;
  background: linear-gradient(currentColor 0 0) 0 2px / 30px 4px no-repeat,
    linear-gradient(currentColor 0 0) 0 14px / 30px 4px no-repeat,
    linear-gradient(currentColor 0 0) 0 26px / 30px 4px no-repeat;
  transform: skewY(-12deg);
}

.icon-marker::before {
  width: 24px;
  height: 31px;
  left: 15px;
  top: 6px;
  border: 4px solid currentColor;
  border-top: 0;
}

.icon-marker::after {
  width: 15px;
  height: 15px;
  left: 21px;
  top: 31px;
  border-left: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  transform: rotate(-45deg);
}

.icon-shop::before {
  width: 34px;
  height: 28px;
  left: 8px;
  top: 17px;
  border: 4px solid currentColor;
  border-top: 0;
}

.icon-shop::after {
  width: 42px;
  height: 19px;
  left: 5px;
  top: 6px;
  border-top: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  background: repeating-linear-gradient(90deg, transparent 0 9px, currentColor 9px 13px);
}

.center-heading {
  max-width: 830px;
  margin: 0 auto 86px;
  text-align: center;
}

.center-heading h2,
.section-heading h2,
.faq-intro h2,
.dark-cta h2 {
  margin: 0;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

.center-heading h2 {
  font-size: clamp(54px, 5.4vw, 76px);
}

.center-heading em {
  font-family: var(--serif-fancy);
  font-style: italic;
}

.impact-section {
  padding-top: clamp(30px, 5vw, 82px);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.impact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.impact-card:nth-child(1) {
  background: #ffffff;
}

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

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

.impact-image {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  background: var(--surface);
}

.impact-body {
  min-height: 265px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-logo {
  width: min(208px, 86%);
  height: auto;
  margin-bottom: 28px;
}

.impact-body p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: clamp(20px, 1.7vw, 25px);
  line-height: 1.25;
}

.impact-body .impact-cta {
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  transition: transform 180ms ease, color 180ms ease;
}

.impact-card:hover .impact-cta,
.impact-card:focus-visible .impact-cta {
  color: var(--navy);
  transform: translateX(4px);
}

.challenge-section {
  padding-top: clamp(34px, 5vw, 78px);
}

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

.challenge-card {
  min-height: 354px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 0;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  padding: 30px;
  overflow: hidden;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.challenge-card:hover {
  background: #f4f9ff;
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

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

.challenge-card:nth-child(1) {
  background: var(--dark);
  color: #ffffff;
}

.challenge-card:nth-child(1):hover {
  background: #1d1d1d;
  border-color: #1d1d1d;
}

.challenge-card:nth-child(6) {
  background: var(--mint);
}

.challenge-card:nth-child(2) {
  background: var(--lavender);
}

.challenge-card:nth-child(3) {
  background: var(--blue);
}

.challenge-card:nth-child(4) {
  background: var(--cream);
}

.challenge-card:nth-child(5) {
  background: var(--rose);
}

.challenge-card:nth-child(6)::after {
  content: "";
  position: absolute;
  right: -82px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(36, 36, 36, 0.12);
  border-radius: 50%;
}

.challenge-icon {
  width: 64px;
  height: 64px;
  display: block;
  margin-bottom: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow-light);
  color: var(--ink);
  position: relative;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.challenge-card:hover .challenge-icon {
  border-color: var(--dark);
  background: var(--dark);
  color: #ffffff;
  transform: translateY(-2px);
}

.challenge-card:nth-child(1) .challenge-icon {
  border-color: rgba(255, 255, 255, 0.24);
  background: #ffffff;
  color: var(--ink);
}

.challenge-icon::before,
.challenge-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

.challenge-card h3 {
  max-width: 100%;
  margin: 0 0 14px;
  font-family: var(--sans);
  font-size: clamp(28px, 2.25vw, 35px);
  line-height: 1.1;
  font-weight: 760;
  letter-spacing: 0;
}

.challenge-card p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.38;
}

.challenge-card:nth-child(1) p {
  color: rgba(255, 255, 255, 0.76);
}

.challenge-icon.icon-retention::before {
  width: 24px;
  height: 15px;
  left: 19px;
  top: 26px;
  border-bottom: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: skewX(-18deg) rotate(-8deg);
}

.challenge-icon.icon-retention::after {
  width: 9px;
  height: 9px;
  left: 38px;
  top: 23px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(45deg);
}

.challenge-icon.icon-survey::before {
  width: 22px;
  height: 27px;
  left: 21px;
  top: 18px;
  border: 3px solid currentColor;
}

.challenge-icon.icon-survey::after {
  width: 16px;
  height: 14px;
  left: 26px;
  top: 25px;
  background:
    linear-gradient(currentColor 0 0) 0 0 / 3px 3px no-repeat,
    linear-gradient(currentColor 0 0) 8px 0 / 8px 3px no-repeat,
    linear-gradient(currentColor 0 0) 0 6px / 3px 3px no-repeat,
    linear-gradient(currentColor 0 0) 8px 6px / 8px 3px no-repeat,
    linear-gradient(currentColor 0 0) 0 12px / 3px 3px no-repeat,
    linear-gradient(currentColor 0 0) 8px 12px / 8px 3px no-repeat;
}

.challenge-icon.icon-listening::before {
  width: 23px;
  height: 18px;
  left: 20px;
  top: 20px;
  border: 3px solid currentColor;
  border-radius: 4px;
}

.challenge-icon.icon-listening::after {
  width: 10px;
  height: 9px;
  left: 24px;
  top: 36px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: skewY(30deg);
}

.challenge-icon.icon-onboarding::before {
  width: 9px;
  height: 9px;
  left: 20px;
  top: 21px;
  border: 3px solid currentColor;
  border-radius: 50%;
  box-shadow: 15px 0 0 -1px #ffffff, 15px 0 0 2px currentColor;
}

.challenge-icon.icon-onboarding::after {
  width: 31px;
  height: 13px;
  left: 17px;
  top: 37px;
  border: 3px solid currentColor;
  border-radius: 18px 18px 0 0;
  border-bottom: 0;
}

.challenge-card:hover .challenge-icon.icon-onboarding::before {
  box-shadow: 15px 0 0 -1px var(--dark), 15px 0 0 2px currentColor;
}

.challenge-icon.icon-manager::before {
  width: 26px;
  height: 20px;
  left: 19px;
  top: 27px;
  border: 3px solid currentColor;
  border-radius: 3px;
}

.challenge-icon.icon-manager::after {
  width: 14px;
  height: 7px;
  left: 25px;
  top: 20px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
}

.challenge-icon.icon-culture::before {
  width: 30px;
  height: 20px;
  left: 17px;
  top: 28px;
  border-bottom: 3px solid currentColor;
  background: repeating-linear-gradient(90deg, currentColor 0 3px, transparent 3px 9px);
}

.challenge-icon.icon-culture::after {
  width: 30px;
  height: 16px;
  left: 17px;
  top: 18px;
  border-top: 3px solid currentColor;
  transform: skewY(-16deg);
}

.challenge-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: stretch;
}

.challenge-map-panel {
  min-height: 760px;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  background: var(--dark);
  color: #ffffff;
  padding: 40px;
  overflow: hidden;
  isolation: isolate;
}

.challenge-map-panel::before,
.challenge-map-panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.challenge-map-panel::before {
  width: 420px;
  height: 420px;
  right: -150px;
  top: -120px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 0 0 68px rgba(255, 255, 255, 0.025);
}

.challenge-map-panel::after {
  width: 520px;
  height: 520px;
  left: -230px;
  bottom: -220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 64%);
}

.challenge-map-panel h2 {
  max-width: 520px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 4vw, 62px);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: 0;
}

.challenge-map-panel p {
  max-width: 440px;
  margin: auto 0 34px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 20px;
  line-height: 1.4;
}

.challenge-layout .challenge-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.challenge-layout .challenge-card,
.challenge-layout .challenge-card:nth-child(1),
.challenge-layout .challenge-card:nth-child(6) {
  min-height: 132px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 42px;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 6px 22px;
  border: 0;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  padding: 22px 24px;
  box-shadow: none;
}

.challenge-layout .challenge-card::after,
.challenge-layout .challenge-card:nth-child(6)::after {
  content: "\2192";
  position: relative;
  right: auto;
  bottom: auto;
  grid-column: 3;
  grid-row: 1 / span 2;
  place-self: center end;
  width: auto;
  height: auto;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  color: #8e8b85;
  font-family: var(--sans);
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  opacity: 0.76;
  z-index: 1;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.challenge-layout .challenge-card:hover,
.challenge-layout .challenge-card:nth-child(1):hover {
  background: #f4f9ff;
  box-shadow: var(--shadow-light);
  transform: translateX(4px);
}

.challenge-layout .challenge-card:hover::after {
  color: var(--ink);
  opacity: 1;
  transform: translateX(5px);
}

.challenge-layout .challenge-card:nth-child(1) {
  background: var(--mint);
}

.challenge-layout .challenge-card:nth-child(6) {
  background: var(--coral);
}

.challenge-layout .challenge-card:nth-child(2) {
  background: var(--lavender);
}

.challenge-layout .challenge-card:nth-child(3) {
  background: var(--blue);
}

.challenge-layout .challenge-card:nth-child(4) {
  background: var(--cream);
}

.challenge-layout .challenge-card:nth-child(5) {
  background: var(--rose);
}

.challenge-layout .challenge-icon,
.challenge-layout .challenge-card:nth-child(1) .challenge-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 56px;
  height: 56px;
  margin: 0;
  border-color: transparent;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  transition: color 180ms ease, transform 180ms ease;
}

.challenge-layout .challenge-card:hover .challenge-icon {
  border-color: transparent;
  background: transparent;
  color: var(--ink);
  transform: translateX(4px);
}

.challenge-layout .challenge-card h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: clamp(25px, 2.05vw, 31px);
  line-height: 1.08;
}

.challenge-layout .challenge-card p,
.challenge-layout .challenge-card:nth-child(1) p {
  grid-column: 2;
  grid-row: 2;
  max-width: 640px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.35;
}

.loop-section {
  padding-top: clamp(72px, 8vw, 132px);
}

.loop-intro {
  max-width: 860px;
  margin: 0 auto 58px;
  text-align: center;
}

.loop-intro h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(44px, 4.8vw, 68px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: 0;
}

.loop-intro p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--subtle);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.45;
  font-weight: 650;
}

.loop-visual {
  min-height: 760px;
  position: relative;
  overflow: visible;
}

.loop-stage {
  width: min(670px, 74vw);
  aspect-ratio: 1;
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
}

.loop-orbit,
.loop-orbit::before,
.loop-orbit::after {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.loop-orbit {
  border: 2px solid #d8d9d0;
  box-shadow: inset 0 0 90px rgba(44, 38, 31, 0.03);
}

.loop-orbit::before,
.loop-orbit::after {
  content: "";
}

.loop-orbit::before {
  inset: -11px;
  background: conic-gradient(
    from 0deg,
    transparent 0deg 36deg,
    var(--accent-purple) 36deg 56deg,
    transparent 56deg 108deg,
    #6eaa86 108deg 128deg,
    transparent 128deg 180deg,
    var(--accent-orange) 180deg 200deg,
    transparent 200deg 252deg,
    #dc8d81 252deg 272deg,
    transparent 272deg 324deg,
    var(--accent-blue) 324deg 344deg,
    transparent 344deg 360deg
  );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 12px), #000 calc(100% - 11px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 12px), #000 calc(100% - 11px));
  animation: chakra-spin 24s linear infinite;
}

.loop-orbit::after {
  inset: 14%;
  border: 1px solid rgba(216, 217, 208, 0.8);
  background:
    linear-gradient(#d8d9d0 0 0) 50% 0 / 1px 100% no-repeat,
    linear-gradient(90deg, #d8d9d0 0 0) 0 50% / 100% 1px no-repeat;
  opacity: 0.28;
  animation: chakra-spin 42s linear infinite reverse;
}

.loop-center {
  width: min(220px, 34%);
  aspect-ratio: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.loop-center strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
}

.loop-step {
  width: 205px;
  position: absolute;
  z-index: 2;
  text-align: center;
}

.loop-number {
  width: 58px;
  height: 58px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1;
  box-shadow: var(--shadow-light);
}

.loop-number::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(var(--loop-accent) 0deg 112deg, transparent 112deg 360deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
}

.loop-step h3 {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: 0;
}

.loop-step p {
  margin: 0 auto;
  max-width: 180px;
  color: var(--subtle);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 650;
}

.loop-step-1 {
  --loop-accent: var(--accent-purple);
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
}

.loop-step-2 {
  --loop-accent: #6eaa86;
  right: 8%;
  top: 28%;
}

.loop-step-3 {
  --loop-accent: var(--accent-orange);
  right: 14%;
  bottom: 14%;
}

.loop-step-4 {
  --loop-accent: #dc8d81;
  left: 14%;
  bottom: 14%;
}

.loop-step-5 {
  --loop-accent: var(--accent-blue);
  left: 8%;
  top: 28%;
}

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

@media (prefers-reduced-motion: reduce) {
  .loop-orbit::before,
  .loop-orbit::after {
    animation: none;
  }
}

.metrics-section {
  padding-top: clamp(48px, 6vw, 96px);
}

.metrics-heading {
  display: grid;
  grid-template-columns: minmax(0, 850px);
  gap: 18px;
  align-items: start;
  margin-bottom: 44px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.metrics-heading h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 4.6vw, 66px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: 0;
}

.metrics-heading p {
  max-width: 720px;
  margin: 0;
  color: var(--subtle);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.45;
  font-weight: 650;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(40px, 5.5vw, 92px);
}

.metric-card {
  min-height: auto;
  display: block;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.metric-card:hover {
  background: transparent;
  box-shadow: none;
  transform: none;
}

.metric-icon {
  width: 88px;
  height: 88px;
  display: block;
  margin: 0 0 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--blue);
  box-shadow: var(--shadow-light);
  color: var(--ink);
  position: relative;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.metric-card:hover .metric-icon {
  background: var(--cream);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.metric-card:nth-child(2) .metric-icon {
  background: var(--lavender);
}

.metric-card:nth-child(3) .metric-icon {
  background: var(--mint);
}

.metric-card:nth-child(4) .metric-icon {
  background: var(--coral);
}

.metric-icon::before,
.metric-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

.metric-card h3 {
  margin: 0 0 18px;
  font-size: clamp(20px, 1.55vw, 24px);
  line-height: 1.1;
  letter-spacing: 0;
}

.metric-card p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.42;
}

.metric-icon-retention::before {
  width: 42px;
  height: 26px;
  left: 22px;
  top: 42px;
  border-bottom: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: skewX(-18deg) rotate(-8deg);
}

.metric-icon-retention::after {
  width: 14px;
  height: 14px;
  left: 56px;
  top: 35px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(45deg);
}

.metric-icon-manager::before {
  width: 39px;
  height: 31px;
  left: 24px;
  top: 40px;
  border: 3px solid currentColor;
  border-radius: 3px;
}

.metric-icon-manager::after {
  width: 22px;
  height: 12px;
  left: 32px;
  top: 28px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
}

.metric-icon-readiness::before {
  width: 35px;
  height: 42px;
  left: 26px;
  top: 22px;
  border: 3px solid currentColor;
  border-radius: 3px;
}

.metric-icon-readiness::after {
  width: 20px;
  height: 18px;
  left: 34px;
  top: 34px;
  background:
    linear-gradient(currentColor 0 0) 0 0 / 4px 4px no-repeat,
    linear-gradient(currentColor 0 0) 9px 0 / 11px 3px no-repeat,
    linear-gradient(currentColor 0 0) 0 8px / 4px 4px no-repeat,
    linear-gradient(currentColor 0 0) 9px 8px / 11px 3px no-repeat,
    linear-gradient(currentColor 0 0) 0 16px / 4px 4px no-repeat,
    linear-gradient(currentColor 0 0) 9px 16px / 11px 3px no-repeat;
}

.metric-icon-frontline::before {
  width: 44px;
  height: 32px;
  left: 22px;
  top: 42px;
  border-bottom: 3px solid currentColor;
  background: repeating-linear-gradient(90deg, currentColor 0 3px, transparent 3px 9px);
}

.metric-icon-frontline::after {
  width: 44px;
  height: 22px;
  left: 22px;
  top: 25px;
  border-top: 3px solid currentColor;
  transform: skewY(-15deg);
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.system-card {
  min-height: 710px;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  background: var(--surface);
  padding: 48px;
}

.system-card:nth-child(1) {
  background: var(--mint);
}

.system-card:nth-child(2) {
  background: var(--lavender);
}

.system-card:nth-child(3) {
  background: var(--blue);
}

.system-card h3 {
  margin: auto 0 17px;
  font-size: clamp(27px, 2.1vw, 34px);
  line-height: 1.08;
  letter-spacing: 0;
}

.system-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.3;
}

.mockup-panel {
  min-height: 410px;
  display: grid;
  place-items: center;
}

.message-card,
.manage-card,
.lawyer-card {
  background: var(--paper);
  border: 0;
  border-radius: 9px;
  box-shadow: var(--shadow-light);
}

.message-card {
  width: 100%;
  max-width: 490px;
  padding: clamp(18px, 2vw, 26px);
}

.message-top {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.message-top strong {
  font-size: clamp(16px, 1.5vw, 20px);
}

.message-top small {
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
}

.message-card p {
  margin: 34px 0 24px;
  color: var(--muted);
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.3;
}

.file-pill {
  display: block;
  border-radius: 8px;
  background: #f4f9ff;
  color: var(--muted);
  padding: 13px 18px;
  font-size: clamp(15px, 1.35vw, 18px);
  text-decoration: underline;
}

.avatar {
  width: 42px;
  height: 42px;
  display: block;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--dark));
}

.avatar-red {
  background: linear-gradient(135deg, var(--rose), #c85d6c);
}

.avatar-gold {
  background: linear-gradient(135deg, var(--cream), #96714b);
}

.avatar-large {
  width: 74px;
  height: 74px;
  background: linear-gradient(135deg, #e8ddce, #161616);
}

.avatar-xl {
  width: 88px;
  height: 88px;
}

.manage-card {
  width: 100%;
  max-width: 490px;
  overflow: hidden;
}

.manage-card h4 {
  margin: 0;
  padding: 28px 22px 16px;
  background: var(--lavender);
  font-size: clamp(24px, 2vw, 30px);
}

.tabs {
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  padding: 0 22px 14px;
  background: var(--lavender);
  color: #85858d;
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 800;
}

.tabs strong {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
}

.permission-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  color: var(--muted);
  font-size: clamp(14px, 1.35vw, 18px);
}

.permission-row small {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 7px 10px;
  color: var(--muted);
  background: var(--paper);
  font-size: clamp(12px, 1.15vw, 16px);
  white-space: nowrap;
}

.manage-card button {
  width: calc(100% - 44px);
  min-height: 52px;
  margin: 12px 22px 24px;
  border: 0;
  border-radius: 7px;
  background: var(--dark);
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
}

.lawyer-card {
  width: 100%;
  max-width: 346px;
  padding: 28px 24px 24px;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
}

.lawyer-card h4,
.lawyer-card p {
  margin: 0;
}

.lawyer-card h4 {
  font-size: clamp(20px, 1.7vw, 23px);
}

.lawyer-card p {
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 19px);
}

.lawyer-card dl {
  grid-column: 1 / -1;
  margin: 34px 0 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  font-size: clamp(15px, 1.35vw, 18px);
}

.lawyer-card dt {
  font-weight: 800;
}

.lawyer-card dd {
  margin: 0;
  color: var(--muted);
}

.id-line {
  width: min(114px, 100%);
  height: 11px;
  margin-top: 6px;
  border-radius: 999px;
  background: #dededc;
}

.lawyer-card button {
  grid-column: 1 / -1;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #ffffff;
  font-size: 21px;
  font-weight: 800;
}

.review-section {
  min-height: 620px;
  border-radius: var(--radius);
  background: var(--mint);
  display: grid;
  grid-template-columns: 74px 1fr 74px;
  align-items: center;
  gap: 38px;
  padding-inline: 46px;
}

.round-button {
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.78);
  color: var(--ink);
  font-size: 32px;
  cursor: pointer;
}

.review-content {
  text-align: center;
}

.eyebrow {
  margin: 0 0 46px;
  font-size: 22px;
  font-weight: 800;
}

.review-content blockquote {
  max-width: 1040px;
  margin: 0 auto 44px;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1.16;
  font-style: italic;
  letter-spacing: 0;
}

.review-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 22px;
}

.review-content span {
  color: var(--muted);
  font-size: 21px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 48px;
}

.dots span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #a7ada8;
}

.dots .active {
  background: var(--ink);
}

.support-heading {
  margin-bottom: 90px;
}

.support-heading h2 {
  max-width: 620px;
  margin: 0 auto 34px;
  font-size: clamp(42px, 4vw, 56px);
}

.proof-grid {
  display: grid;
  grid-template-columns: 2.05fr 1fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 18px;
}

.quote-tile,
.stat-tile,
.image-tile {
  border-radius: var(--radius);
  overflow: hidden;
}

.quote-tile {
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  background: var(--dark);
  color: #ffffff;
  padding: 28px;
}

.quote-tile blockquote {
  max-width: 520px;
  margin: 42px 0 auto;
  font-size: 24px;
  line-height: 1.28;
  font-weight: 800;
}

.quote-tile footer span,
.quote-tile footer strong {
  display: block;
  font-size: 16px;
}

.image-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-tile {
  background: var(--cream);
  padding: 18px;
}

.stat-tile strong {
  display: block;
  margin-bottom: 70px;
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 500;
  letter-spacing: 0;
}

.stat-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.35;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px;
  margin-top: 94px;
}

.benefit-grid article {
  max-width: 360px;
}

.line-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-light);
  margin-bottom: 24px;
  position: relative;
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
  border-color: var(--ink);
}

.icon-calendar::before {
  width: 30px;
  height: 26px;
  border: 3px solid var(--ink);
}

.icon-calendar::after {
  width: 42px;
  height: 25px;
  border-bottom: 3px solid var(--ink);
  border-left: 3px solid var(--ink);
  transform: translate(3px, -11px);
}

.icon-clipboard::before {
  width: 28px;
  height: 36px;
  border: 3px solid var(--ink);
}

.icon-clipboard::after {
  width: 20px;
  height: 20px;
  background: repeating-linear-gradient(var(--ink) 0 3px, transparent 3px 8px);
}

.icon-library::before {
  width: 42px;
  height: 34px;
  border-bottom: 3px solid var(--ink);
  background: repeating-linear-gradient(90deg, transparent 0 7px, var(--ink) 7px 10px);
}

.icon-library::after {
  width: 42px;
  height: 18px;
  border-top: 3px solid var(--ink);
  transform: translateY(-18px);
}

.benefit-grid h3 {
  margin: 0 0 12px;
  font-size: 16px;
}

.benefit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 24px;
  margin-bottom: 72px;
}

.section-heading h2 {
  font-size: clamp(46px, 4.2vw, 56px);
}

.news-section {
  padding-top: clamp(78px, 8vw, 136px);
}

.news-section .section-heading {
  margin-bottom: 78px;
}

.news-section .section-heading h2 {
  font-size: clamp(58px, 5.6vw, 82px);
  line-height: 0.95;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 24px 24px 38px;
  box-shadow: var(--shadow-light);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.news-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.news-card:nth-child(1) {
  background: #ffffff;
}

.news-card:nth-child(2) {
  background: #ffffff;
}

.news-card:nth-child(3) {
  background: #ffffff;
}

.news-card img {
  width: 100%;
  aspect-ratio: 1.6 / 1;
  border-radius: var(--radius);
  object-fit: cover;
  margin-bottom: 32px;
}

.news-card span {
  display: inline-flex;
  align-items: center;
  height: 25px;
  padding: 0 12px;
  border: 1px solid rgba(34, 31, 29, 0.14);
  border-radius: 999px;
  color: var(--ink);
  font-size: 14px;
}

.news-card h3 {
  margin: 18px 0 0;
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.22;
  letter-spacing: 0;
}

.news-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(15.5px, 1.05vw, 17px);
  line-height: 1.45;
}

.news-card .practice-use {
  margin-top: 24px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 780;
  text-transform: uppercase;
}

.founders-section {
  padding-top: clamp(84px, 9vw, 148px);
}

.founders-intro {
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(320px, 520px);
  gap: clamp(44px, 8vw, 132px);
  align-items: center;
  margin-bottom: 58px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.founders-intro h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(50px, 5vw, 76px);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: 0;
}

.founders-intro p {
  max-width: 500px;
  margin: 0;
  color: var(--subtle);
  font-size: clamp(20px, 1.65vw, 24px);
  line-height: 1.45;
  font-weight: 650;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

.founder-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  background: transparent;
  padding: 0;
  isolation: isolate;
  transition: transform 180ms ease;
}

.founder-card:hover,
.founder-card:focus,
.founder-card:focus-within,
.founder-card.is-open {
  z-index: 5;
  transform: translateY(-4px);
}

.founder-card:focus {
  outline: none;
}

.founder-card:focus-visible {
  outline: none;
}

.founder-photo {
  height: 390px;
  position: relative;
  margin: 0 0 10px;
  border-radius: var(--radius);
  background: transparent;
  overflow: visible;
  transition: transform 180ms ease;
}

.founder-mark,
.founder-portrait {
  position: absolute;
  display: block;
}

.founder-mark {
  width: 98%;
  height: 98%;
  left: 1%;
  top: 1%;
  object-fit: contain;
  object-position: center;
}

.founder-portrait {
  width: 72%;
  height: 72%;
  left: 50%;
  top: 50%;
  z-index: 1;
  border-radius: 50%;
  background: #ffffff;
  object-fit: cover;
  object-position: center 18%;
  transform: translate(-50%, -50%);
}

.founder-portrait-kshitij {
  object-position: center 10%;
}

.founder-copy {
  position: relative;
  padding: 0;
  text-align: center;
}

.founder-topline {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.founder-topline h3 {
  margin: 0;
  font-size: clamp(24px, 1.8vw, 31px);
  line-height: 1.05;
  letter-spacing: 0;
}

.founder-linkedin {
  position: absolute;
  left: 50%;
  top: calc(100% + 12px);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: background-color 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.founder-card:hover .founder-linkedin,
.founder-card:focus .founder-linkedin,
.founder-card:focus-within .founder-linkedin,
.founder-card.is-open .founder-linkedin {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.founder-linkedin:hover {
  background: var(--accent-blue);
  color: #ffffff;
  transform: translate(-50%, -2px);
}

.founder-copy p {
  width: min(440px, 100%);
  position: absolute;
  left: 50%;
  top: calc(100% + 62px);
  z-index: 4;
  margin: 0;
  padding: 20px;
  border: 0;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.founder-card:hover .founder-copy p,
.founder-card:focus .founder-copy p,
.founder-card:focus-within .founder-copy p,
.founder-card.is-open .founder-copy p {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.pricing-section {
  text-align: center;
}

.pricing-card {
  width: min(904px, 100%);
  min-height: 526px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 44px;
  padding: 34px 78px 34px 54px;
  background: linear-gradient(90deg, var(--cream), var(--paper) 48%, var(--blue));
  box-shadow: var(--shadow-light);
}

.pricing-card img {
  max-height: 460px;
  margin: 0 auto;
}

.pricing-copy {
  text-align: center;
}

.price {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(86px, 8vw, 128px);
  line-height: 0.8;
  letter-spacing: 0;
}

.price span {
  margin-right: 8px;
  font-size: 32px;
  vertical-align: 38px;
}

.price small {
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: 0;
}

.billing {
  margin: 30px 0 36px;
  color: var(--subtle);
  font-size: 14px;
}

.pricing-copy h2 {
  margin: 0 auto 36px;
  max-width: 360px;
  color: var(--muted);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
}

.faq-section {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 104px;
  align-items: start;
}

.faq-intro h2 {
  margin-bottom: 112px;
  font-size: clamp(46px, 4vw, 56px);
}

.faq-intro p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 16px;
}

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

.faq-item {
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.faq-item:nth-child(1) {
  background: var(--surface);
}

.faq-item:nth-child(2) {
  background: var(--surface);
}

.faq-item:nth-child(3) {
  background: var(--surface);
}

.faq-item:nth-child(4) {
  background: var(--surface);
}

.faq-item:nth-child(5) {
  background: var(--surface);
}

.faq-item button {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  background: transparent;
  padding: 0 18px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex: 0 0 auto;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

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

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

.faq-answer p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 15px;
}

.dark-cta {
  min-height: 478px;
  margin-bottom: 80px;
  border-radius: var(--radius);
  background: var(--dark);
  color: #ffffff;
  overflow: hidden;
  position: relative;
  display: grid;
  place-items: center;
}

.dark-pattern {
  position: absolute;
  inset: 0 auto 0 0;
  width: 36%;
  opacity: 0.42;
  background:
    linear-gradient(30deg, transparent 0 49%, rgba(216, 233, 248, 0.12) 49% 72%, transparent 72%) 0 0 / 100% 50%,
    linear-gradient(-30deg, transparent 0 36%, rgba(234, 210, 221, 0.14) 36% 63%, transparent 63%) 0 50% / 100% 50%;
}

.dark-cta-copy {
  position: relative;
  z-index: 1;
  width: min(860px, 90%);
  text-align: center;
}

.dark-cta h2 {
  font-size: clamp(50px, 5vw, 68px);
  line-height: 0.9;
  margin-bottom: 34px;
}

.dark-cta h2 em {
  display: block;
  font-family: var(--serif-fancy);
  font-style: italic;
}

.dark-cta p {
  margin: 0 auto 34px;
  max-width: 700px;
  color: #f0f0f0;
  font-size: 24px;
  line-height: 1.25;
}

.dark-cta-copy div {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 84px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 1fr 1.25fr;
  gap: 56px;
}

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

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

.footer-brand p {
  max-width: 240px;
  margin: 0 0 60px;
  color: var(--muted);
  font-size: 24px;
  line-height: 1.25;
}

.footer-brand small {
  display: block;
  max-width: 300px;
  margin-top: 26px;
  color: var(--subtle);
  font-size: 14px;
  line-height: 1.35;
}

.footer-brand small a {
  text-decoration: underline;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.35;
}

.footer-bottom {
  margin-top: 90px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  color: var(--subtle);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-row a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

/* ATP unified brand system */
.section-space {
  padding: clamp(84px, 8vw, 132px) 0;
}

.platform-copy,
.center-heading,
.loop-intro {
  max-width: 900px;
  margin-inline: auto;
}

.platform-copy,
.center-heading,
.loop-intro,
.review-content,
.pricing-section {
  text-align: center;
}

.hero-copy h1,
.platform-copy h2,
.center-heading h2,
.challenge-map-panel h2,
.loop-intro h2,
.metrics-heading h2,
.section-heading h2,
.founders-intro h2,
.faq-intro h2,
.dark-cta h2 {
  font-family: var(--sans);
  font-weight: 680;
  letter-spacing: 0;
  color: inherit;
}

.hero-copy h1 em,
.center-heading em,
.dark-cta h2 em {
  font-family: var(--serif-fancy);
  font-weight: 400;
  font-style: italic;
}

.platform-copy p,
.trusted-section p,
.loop-intro p,
.metrics-heading p,
.founders-intro p,
.faq-intro p,
.impact-body p,
.challenge-layout .challenge-card p,
.metric-card p,
.news-card h3 + p {
  color: var(--muted);
  font-family: var(--sans);
  font-weight: 480;
}

.button {
  min-height: 50px;
  border-radius: var(--radius);
  font-weight: 740;
  box-shadow: none;
}

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

.button-outline,
.button-light {
  background: var(--card);
  border-color: var(--card-border);
  color: var(--ink);
}

.button:hover {
  border-color: #cfc4b7;
  background: #f4f9ff;
}

.button-dark:hover {
  background: #2a2723;
  border-color: #2a2723;
}

.platform-card,
.impact-card,
.news-card,
.message-card,
.manage-card,
.lawyer-card,
.pricing-card {
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-light);
}

.platform-card:hover,
.impact-card:hover,
.news-card:hover {
  border-color: #d4cabd;
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.platform-card,
.impact-card,
.news-card {
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.platform-card,
.platform-card:nth-child(1),
.platform-card:nth-child(2),
.platform-card:nth-child(3),
.platform-card:nth-child(4),
.impact-card,
.impact-card:nth-child(1),
.impact-card:nth-child(2),
.impact-card:nth-child(3),
.news-card,
.news-card:nth-child(1),
.news-card:nth-child(2),
.news-card:nth-child(3) {
  background: var(--card);
}

.platform-icon,
.challenge-layout .challenge-icon,
.challenge-layout .challenge-card:nth-child(1) .challenge-icon,
.metric-icon,
.line-icon {
  border: 1px solid rgba(34, 31, 29, 0.08);
  border-radius: var(--radius);
  background: var(--mint);
  box-shadow: none;
  color: var(--ink);
}

.platform-card:nth-child(2) .platform-icon,
.challenge-layout .challenge-card:nth-child(2) .challenge-icon,
.metric-card:nth-child(2) .metric-icon {
  background: var(--lavender);
}

.platform-card:nth-child(3) .platform-icon,
.challenge-layout .challenge-card:nth-child(3) .challenge-icon,
.metric-card:nth-child(3) .metric-icon {
  background: var(--blue);
}

.platform-card:nth-child(4) .platform-icon,
.challenge-layout .challenge-card:nth-child(4) .challenge-icon,
.metric-card:nth-child(4) .metric-icon {
  background: var(--cream);
}

.challenge-layout .challenge-card:nth-child(5) .challenge-icon {
  background: var(--rose);
}

.challenge-layout .challenge-card:nth-child(6) .challenge-icon {
  background: var(--coral);
}

.challenge-layout .challenge-card:nth-child(1):hover .challenge-icon {
  background: var(--mint);
}

.challenge-layout .challenge-card:nth-child(2):hover .challenge-icon {
  background: var(--lavender);
}

.challenge-layout .challenge-card:nth-child(3):hover .challenge-icon {
  background: var(--blue);
}

.challenge-layout .challenge-card:nth-child(4):hover .challenge-icon {
  background: var(--cream);
}

.challenge-layout .challenge-card:nth-child(5):hover .challenge-icon {
  background: var(--rose);
}

.challenge-layout .challenge-card:nth-child(6):hover .challenge-icon {
  background: var(--coral);
}

.challenge-layout .challenge-card,
.challenge-layout .challenge-card:nth-child(1),
.challenge-layout .challenge-card:nth-child(2),
.challenge-layout .challenge-card:nth-child(3),
.challenge-layout .challenge-card:nth-child(4),
.challenge-layout .challenge-card:nth-child(5),
.challenge-layout .challenge-card:nth-child(6) {
  border: 1px solid var(--card-border);
  background: var(--card);
  box-shadow: none;
}

.challenge-layout .challenge-card:hover,
.challenge-layout .challenge-card:nth-child(1):hover {
  border-color: #d4cabd;
  background: var(--card-soft);
  box-shadow: var(--shadow-light);
  transform: translateX(4px);
}

.challenge-layout .challenge-card:hover .challenge-icon,
.challenge-layout .challenge-card:nth-child(1):hover .challenge-icon {
  border-color: rgba(34, 31, 29, 0.08);
  color: var(--ink);
}

.platform-card p,
.impact-body p,
.challenge-layout .challenge-card p,
.metric-card p {
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.38;
}

.platform-card h3,
.impact-body .impact-cta,
.challenge-layout .challenge-card h3,
.metric-card h3,
.news-card h3,
.faq-item button {
  font-family: var(--sans);
}

.challenge-layout .challenge-card h3 {
  font-size: clamp(22px, 1.7vw, 27px);
  font-weight: 720;
  line-height: 1.08;
}

.news-card h3 {
  font-size: clamp(24px, 1.9vw, 31px);
}

.faq-item,
.faq-item:nth-child(1),
.faq-item:nth-child(2),
.faq-item:nth-child(3),
.faq-item:nth-child(4),
.faq-item:nth-child(5) {
  border: 1px solid transparent;
  background: var(--surface);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.faq-item:hover,
.faq-item.is-open {
  border-color: var(--card-border);
  background: var(--card);
}

.impact-image,
.news-card img {
  border-radius: calc(var(--radius) - 1px);
}

.news-card span {
  background: var(--card-soft);
}

.metric-card {
  color: var(--ink);
}

.metric-icon {
  margin-bottom: 30px;
}

.loop-center strong,
.loop-number,
.price {
  font-family: var(--sans);
  font-style: normal;
  letter-spacing: 0;
}

.dark-cta,
.challenge-map-panel {
  background: var(--dark);
}

.dark-cta p,
.challenge-map-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer {
  background: transparent;
}

@media (max-width: 1180px) {
  .challenge-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .challenge-card {
    min-height: 340px;
  }

  .loop-visual {
    min-height: 720px;
  }

  .loop-stage {
    width: min(620px, 74vw);
  }

  .loop-step {
    width: 180px;
  }

  .loop-step-2 {
    right: 2%;
  }

  .loop-step-5 {
    left: 2%;
  }

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

  .system-card {
    min-height: 560px;
  }

  .system-card h3,
  .system-card > p {
    max-width: 680px;
  }
}

@media (max-width: 940px) {
  .site-header,
  .hero,
  .trusted-section,
  .section-space,
  .dark-cta,
  .site-footer {
    width: min(calc(100% - 48px), var(--container));
  }

  .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;
    display: flex;
    background: #ffffff;
    z-index: 50;
    border: 1px solid var(--line);
  }

  body.nav-open .main-nav {
    top: 92px;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  body.nav-open .header-actions {
    top: 314px;
    align-items: flex-start;
    padding: 0 22px 22px;
    border-top: 0;
    border-radius: 0 0 var(--radius) var(--radius);
  }

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

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

  .challenge-map-panel {
    min-height: 520px;
  }

  .metrics-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .metrics-heading p {
    max-width: 680px;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px 82px;
  }

  .founders-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .founder-card {
    width: min(540px, 100%);
    margin: 0 auto;
    padding: 0;
  }

  .founder-photo {
    height: 420px;
    min-height: 0;
    margin: 0 0 8px;
  }

  .founder-copy {
    padding: 0;
  }

  .platform-card-grid,
  .impact-grid,
  .news-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .quote-tile {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 420px;
  }

  .faq-section,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .loop-visual {
    min-height: 640px;
  }

  .loop-stage {
    width: min(520px, 76vw);
  }

  .loop-step {
    width: 150px;
  }

  .loop-step p {
    font-size: 14px;
  }

  .loop-step-2 {
    right: 0;
  }

  .loop-step-5 {
    left: 0;
  }

  .faq-intro h2 {
    margin-bottom: 40px;
  }
}

@media (max-width: 720px) {
  body {
    border-top-width: 7px;
  }

  .site-header,
  .hero,
  .trusted-section,
  .section-space,
  .dark-cta,
  .site-footer {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    min-height: 72px;
  }

  .site-header .brand-logo {
    width: min(250px, 70vw);
  }

  .brand {
    font-size: 22px;
  }

  .hero {
    min-height: 600px;
  }

  .hero-copy {
    padding: 56px 22px;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 15vw, 66px);
  }

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

  .hero-actions,
  .dark-cta-copy div,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

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

  .trusted-section {
    padding-top: 60px;
  }

  .center-heading {
    margin-bottom: 48px;
  }

  .center-heading h2,
  .section-heading h2,
  .faq-intro h2,
  .loop-intro h2,
  .metrics-heading h2,
  .founders-intro h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .metrics-heading {
    gap: 18px;
    margin-bottom: 26px;
    padding-bottom: 26px;
  }

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

  .metric-card {
    min-height: auto;
    padding: 0;
  }

  .founders-intro {
    margin-bottom: 34px;
    padding-bottom: 28px;
  }

  .founders-intro p {
    font-size: 18px;
  }

  .founder-card {
    display: flex;
    gap: 0;
    padding: 0;
  }

  .founder-photo {
    height: 360px;
    min-height: 0;
    margin: 0 0 2px;
  }

  .founder-copy {
    padding: 0 4px 4px;
  }

  .loop-intro {
    margin-bottom: 34px;
    text-align: left;
  }

  .loop-intro p {
    margin: 0;
    font-size: 18px;
  }

  .loop-visual {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .loop-stage {
    width: min(320px, 88vw);
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0 auto 20px;
  }

  .loop-step,
  .loop-step-1,
  .loop-step-2,
  .loop-step-3,
  .loop-step-4,
  .loop-step-5 {
    width: 100%;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: center;
    gap: 2px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    padding: 16px 18px;
    text-align: left;
  }

  .loop-number {
    width: 52px;
    height: 52px;
    grid-column: 1;
    grid-row: 1 / span 2;
    margin: 0;
  }

  .loop-step h3,
  .loop-step p {
    grid-column: 2;
    margin-left: 0;
  }

  .loop-step p {
    max-width: none;
  }

  .system-card {
    min-height: auto;
    padding: 24px;
  }

  .mockup-panel {
    min-height: 300px;
  }

  .review-section {
    min-height: 560px;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 34px 22px;
  }

  .round-button {
    display: none;
  }

  .review-content blockquote {
    font-size: clamp(30px, 10vw, 42px);
  }

  .proof-grid,
  .pricing-card,
  .faq-section,
  .footer-grid,
  .challenge-grid {
    grid-template-columns: 1fr;
  }

  .challenge-map-panel {
    min-height: 470px;
    padding: 30px;
  }

  .challenge-map-panel h2 {
    font-size: clamp(40px, 11vw, 54px);
  }

  .challenge-map-panel p {
    font-size: 18px;
  }

  .challenge-layout .challenge-card {
    min-height: auto;
    grid-template-columns: 48px minmax(0, 1fr) 28px;
    padding: 18px;
  }

  .challenge-layout .challenge-icon {
    width: 48px;
    height: 48px;
  }

  .challenge-layout .challenge-card h3 {
    font-size: clamp(24px, 7vw, 32px);
  }

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

  .image-tile {
    min-height: 260px;
  }

  .pricing-card {
    padding: 28px;
  }

  .section-heading {
    flex-direction: column;
  }

  .dark-cta {
    min-height: 520px;
  }

  .dark-pattern {
    width: 70%;
  }
}

/* Final ATP cohesion pass */
.site-header,
.hero,
.trusted-section,
.section-space,
.dark-cta,
.site-footer {
  width: min(calc(100% - clamp(56px, 10vw, 180px)), var(--container));
}

.platform-intro,
.impact-section,
.challenge-section,
.loop-section,
.metrics-section,
.news-section,
.founders-section,
.faq-section {
  scroll-margin-top: 28px;
}

.platform-copy h2,
.center-heading h2,
.challenge-map-panel h2,
.loop-intro h2,
.metrics-heading h2,
.section-heading h2,
.founders-intro h2,
.faq-intro h2 {
  font-size: clamp(42px, 4.8vw, 72px);
  line-height: 0.98;
  font-weight: 720;
}

.platform-copy p,
.loop-intro p,
.metrics-heading p,
.founders-intro p {
  max-width: 780px;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.45;
  font-weight: 520;
}

.platform-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.platform-card {
  min-height: 292px;
  padding: 30px;
  justify-content: flex-end;
}

.platform-icon,
.challenge-layout .challenge-icon,
.metric-icon {
  display: grid;
  place-items: center;
  overflow: hidden;
}

.platform-icon {
  width: 56px;
  height: 56px;
  margin-bottom: auto;
}

.platform-card h3 {
  font-size: clamp(21px, 1.55vw, 25px);
  line-height: 1.12;
  font-weight: 780;
}

.platform-card p {
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.38;
}

.impact-grid,
.news-grid {
  gap: 28px;
}

.impact-card,
.news-card {
  overflow: hidden;
}

.impact-image,
.news-card img {
  background: var(--surface);
}

.impact-body {
  min-height: 250px;
}

.impact-body p {
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.34;
}

.challenge-layout {
  gap: clamp(24px, 3vw, 36px);
}

.challenge-map-panel {
  min-height: auto;
  padding: clamp(34px, 3vw, 48px);
}

.challenge-map-panel h2 {
  max-width: 600px;
}

.challenge-map-panel p {
  margin-top: auto;
  margin-bottom: 0;
}

.challenge-layout .challenge-grid {
  gap: 14px;
}

.challenge-layout .challenge-card,
.challenge-layout .challenge-card:nth-child(1),
.challenge-layout .challenge-card:nth-child(2),
.challenge-layout .challenge-card:nth-child(3),
.challenge-layout .challenge-card:nth-child(4),
.challenge-layout .challenge-card:nth-child(5),
.challenge-layout .challenge-card:nth-child(6) {
  min-height: 124px;
  border: 1px solid transparent;
  background: var(--surface);
  padding: 22px 24px;
}

.challenge-layout .challenge-card:hover,
.challenge-layout .challenge-card:nth-child(1):hover {
  border-color: var(--card-border);
  background: var(--card);
  box-shadow: var(--shadow-light);
}

.challenge-layout .challenge-card h3 {
  font-size: clamp(21px, 1.65vw, 27px);
  line-height: 1.12;
  font-weight: 760;
}

.challenge-layout .challenge-card p {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.4;
}

.loop-visual {
  min-height: clamp(620px, 60vw, 760px);
}

.metrics-heading,
.founders-intro {
  border-bottom: 0;
  padding-bottom: 0;
}

.metrics-heading {
  grid-template-columns: 1fr;
}

.metrics-heading p {
  max-width: 1040px;
}

.metrics-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(44px, 5vw, 82px);
}

.metric-card {
  min-height: 0;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  gap: 6px 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.metric-card:hover {
  background: transparent;
  box-shadow: none;
  transform: none;
}

.metric-icon {
  width: 78px;
  height: 78px;
  grid-column: 1;
  grid-row: 1 / span 2;
  margin: 0;
}

.metric-card h3 {
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 0;
  font-size: clamp(20px, 1.35vw, 24px);
  font-weight: 780;
  line-height: 1.12;
}

.metric-card p {
  grid-column: 2;
  grid-row: 2;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.4;
}

.news-card {
  padding: 24px;
}

.news-card h3 {
  font-size: clamp(24px, 1.8vw, 31px);
  line-height: 1.18;
  font-weight: 790;
}

.founder-topline h3 {
  font-weight: 790;
  text-transform: uppercase;
}

.founder-copy p {
  border: 1px solid var(--card-border);
  background: #ffffff;
}

.faq-section {
  gap: clamp(48px, 7vw, 104px);
}

.faq-item button {
  min-height: 68px;
  padding: 0 22px;
}

.dark-cta {
  margin-top: 20px;
}

@media (max-width: 1180px) {
  .platform-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-card {
    min-height: 264px;
  }

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

  .challenge-map-panel {
    min-height: 310px;
  }

  .challenge-map-panel h2 {
    max-width: 820px;
    font-size: clamp(40px, 4.6vw, 58px);
  }

  .challenge-map-panel p {
    max-width: 650px;
    margin-top: 34px;
  }

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

@media (max-width: 940px) {
  .challenge-layout,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .challenge-map-panel {
    min-height: 360px;
  }

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

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

  .platform-card {
    min-height: 240px;
  }

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

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

  .metric-card {
    min-height: auto;
    grid-template-columns: 62px minmax(0, 1fr);
    padding: 20px;
  }

  .metric-icon {
    width: 62px;
    height: 62px;
  }

  .platform-copy,
  .center-heading,
  .loop-intro {
    text-align: left;
  }

  .platform-copy h2,
  .center-heading h2,
  .challenge-map-panel h2,
  .loop-intro h2,
  .metrics-heading h2,
  .section-heading h2,
  .founders-intro h2,
  .faq-intro h2 {
    font-size: clamp(38px, 11vw, 52px);
  }
}

/* Pastel card and page-depth pass */
body {
  background:
    linear-gradient(164deg, transparent 0 16%, rgba(216, 233, 248, 0.32) 16% 23%, transparent 23% 100%) 0 620px / 100% 1480px no-repeat,
    linear-gradient(11deg, transparent 0 48%, rgba(229, 244, 231, 0.34) 48% 57%, transparent 57% 100%) 0 1660px / 100% 1540px no-repeat,
    linear-gradient(169deg, transparent 0 64%, rgba(227, 221, 238, 0.28) 64% 72%, transparent 72% 100%) 0 2720px / 100% 1600px no-repeat,
    linear-gradient(8deg, transparent 0 78%, rgba(255, 241, 201, 0.28) 78% 85%, transparent 85% 100%) 0 3920px / 100% 1600px no-repeat,
    var(--paper);
}

main::before {
  content: "";
  position: absolute;
  inset: -180px 0 -120px;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(154deg, transparent 0 22%, rgba(108, 184, 237, 0.08) 22% 29%, transparent 29% 100%),
    linear-gradient(18deg, transparent 0 52%, rgba(197, 230, 207, 0.12) 52% 60%, transparent 60% 100%),
    linear-gradient(166deg, transparent 0 72%, rgba(170, 120, 162, 0.08) 72% 78%, transparent 78% 100%);
}

.platform-intro,
.challenge-section,
.loop-section,
.metrics-section,
.news-section,
.founders-section {
  position: relative;
}

.platform-intro::before,
.metrics-section::before,
.founders-section::before {
  content: "";
  position: absolute;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  top: 12%;
  height: 74%;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(112deg, rgba(216, 233, 248, 0.24), rgba(229, 244, 231, 0.14) 54%, transparent 78%);
  clip-path: polygon(0 20%, 100% 0, 100% 72%, 0 100%);
}

.challenge-section::before,
.news-section::before {
  content: "";
  position: absolute;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  top: 8%;
  height: 78%;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(74deg, transparent 0 12%, rgba(255, 241, 201, 0.18) 12% 52%, rgba(234, 210, 221, 0.14) 52% 88%, transparent 88% 100%);
  clip-path: polygon(0 0, 100% 18%, 100% 86%, 0 70%);
}

.platform-card {
  --card-bg: linear-gradient(135deg, #e5f4e7 0%, #f7fcf7 92%);
  --card-rim: rgba(117, 174, 138, 0.2);
  position: relative;
  overflow: hidden;
  border: 0;
  background: var(--card-bg);
  box-shadow: inset 0 0 0 1px var(--card-rim), 0 18px 42px rgba(44, 38, 31, 0.06);
}

.platform-card:nth-child(2) {
  --card-bg: linear-gradient(135deg, #e3ddee 0%, #fbf9ff 92%);
  --card-rim: rgba(170, 120, 162, 0.22);
}

.platform-card:nth-child(3) {
  --card-bg: linear-gradient(135deg, #d8e9f8 0%, #f6fbff 92%);
  --card-rim: rgba(108, 184, 237, 0.22);
}

.platform-card:nth-child(4) {
  --card-bg: linear-gradient(135deg, #fff1c9 0%, #fffaf0 92%);
  --card-rim: rgba(245, 162, 58, 0.2);
}

.platform-card::before,
.challenge-layout .challenge-card::before {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -54px;
  width: 62%;
  height: 128px;
  z-index: 0;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.34);
  transform: skewY(-8deg);
}

.platform-card > *,
.challenge-layout .challenge-card > * {
  position: relative;
  z-index: 1;
}

.platform-card:hover {
  background: var(--card-bg);
  box-shadow: inset 0 0 0 1px var(--card-rim), 0 22px 48px rgba(44, 38, 31, 0.1);
}

.platform-icon,
.platform-card:nth-child(2) .platform-icon,
.platform-card:nth-child(3) .platform-icon,
.platform-card:nth-child(4) .platform-icon {
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(34, 31, 29, 0.08);
}

.challenge-layout .challenge-card,
.challenge-layout .challenge-card:nth-child(1),
.challenge-layout .challenge-card:nth-child(2),
.challenge-layout .challenge-card:nth-child(3),
.challenge-layout .challenge-card:nth-child(4),
.challenge-layout .challenge-card:nth-child(5),
.challenge-layout .challenge-card:nth-child(6) {
  --challenge-bg: linear-gradient(135deg, #e5f4e7 0%, #f7fcf7 92%);
  --challenge-rim: rgba(117, 174, 138, 0.2);
  position: relative;
  overflow: hidden;
  border: 0;
  background: var(--challenge-bg);
  box-shadow: inset 0 0 0 1px var(--challenge-rim), 0 10px 28px rgba(44, 38, 31, 0.045);
  cursor: pointer;
}

.challenge-layout .challenge-card:nth-child(2) {
  --challenge-bg: linear-gradient(135deg, #e3ddee 0%, #fbf9ff 92%);
  --challenge-rim: rgba(170, 120, 162, 0.2);
}

.challenge-layout .challenge-card:nth-child(3) {
  --challenge-bg: linear-gradient(135deg, #d8e9f8 0%, #f6fbff 92%);
  --challenge-rim: rgba(108, 184, 237, 0.2);
}

.challenge-layout .challenge-card:nth-child(4) {
  --challenge-bg: linear-gradient(135deg, #fff1c9 0%, #fffaf0 92%);
  --challenge-rim: rgba(245, 162, 58, 0.18);
}

.challenge-layout .challenge-card:nth-child(5) {
  --challenge-bg: linear-gradient(135deg, #ead2dd 0%, #fff8fb 92%);
  --challenge-rim: rgba(170, 120, 162, 0.18);
}

.challenge-layout .challenge-card:nth-child(6) {
  --challenge-bg: linear-gradient(135deg, #edc0b6 0%, #fff5f2 92%);
  --challenge-rim: rgba(190, 104, 85, 0.18);
}

.challenge-layout .challenge-card:hover,
.challenge-layout .challenge-card:nth-child(1):hover {
  background: var(--challenge-bg);
  box-shadow: inset 0 0 0 1px var(--challenge-rim), 0 18px 42px rgba(44, 38, 31, 0.09);
}

.challenge-layout .challenge-icon,
.challenge-layout .challenge-card:nth-child(1) .challenge-icon,
.challenge-layout .challenge-card:nth-child(2) .challenge-icon,
.challenge-layout .challenge-card:nth-child(3) .challenge-icon,
.challenge-layout .challenge-card:nth-child(4) .challenge-icon,
.challenge-layout .challenge-card:nth-child(5) .challenge-icon,
.challenge-layout .challenge-card:nth-child(6) .challenge-icon,
.challenge-layout .challenge-card:hover .challenge-icon {
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(34, 31, 29, 0.08);
  box-shadow: none;
  color: var(--ink);
}

/* Button and type calibration */
body {
  font-size: 16px;
}

.button {
  min-height: 46px;
  gap: 12px;
  border-radius: var(--radius);
  padding: 0 22px;
  font-size: clamp(14px, 0.92vw, 15.5px);
  font-weight: 760;
  line-height: 1;
  box-shadow: none;
}

.button-dark,
.button-light {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: var(--ink);
}

.button-dark:hover,
.button-light:hover {
  background: #ee972c;
  border-color: #ee972c;
  color: var(--ink);
  box-shadow: 0 10px 22px rgba(245, 162, 58, 0.22);
}

.button-outline {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(108, 184, 237, 0.44);
  color: var(--ink);
}

.button-outline:hover {
  background: rgba(216, 233, 248, 0.62);
  border-color: rgba(108, 184, 237, 0.68);
  color: var(--ink);
  box-shadow: 0 10px 22px rgba(108, 184, 237, 0.16);
}

.button-glass,
.button-dark-outline {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
  color: #ffffff;
}

.button-glass:hover,
.button-dark-outline:hover {
  background: rgba(245, 162, 58, 0.2);
  border-color: rgba(245, 162, 58, 0.84);
  color: #ffffff;
}

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

.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(46px, 4.35vw, 64px);
  line-height: 0.98;
  font-weight: 720;
}

.hero-copy p {
  max-width: 680px;
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.45;
}

.platform-copy h2,
.center-heading h2,
.challenge-map-panel h2,
.loop-intro h2,
.metrics-heading h2,
.section-heading h2,
.founders-intro h2,
.faq-intro h2 {
  font-size: clamp(38px, 4.1vw, 62px);
  line-height: 1.04;
  font-weight: 710;
}

.news-section .section-heading h2 {
  font-size: clamp(42px, 4.4vw, 66px);
}

.dark-cta h2 {
  font-size: clamp(42px, 4.5vw, 64px);
  line-height: 1.02;
}

.platform-copy p,
.loop-intro p,
.metrics-heading p,
.founders-intro p,
.dark-cta p {
  font-size: clamp(16.5px, 1.25vw, 20px);
  line-height: 1.48;
}

.trusted-section p {
  font-size: clamp(15.5px, 1.1vw, 18px);
}

.platform-card h3,
.challenge-layout .challenge-card h3,
.metric-card h3 {
  font-size: clamp(19px, 1.28vw, 23px);
  line-height: 1.14;
}

.platform-card p {
  font-size: clamp(15.5px, 1.06vw, 18px);
  line-height: 1.42;
}

.challenge-layout .challenge-card p,
.metric-card p {
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.42;
}

.news-card h3 {
  font-size: clamp(22px, 1.6vw, 28px);
  line-height: 1.2;
}

.faq-item button {
  font-size: clamp(15px, 1.05vw, 17px);
}

@media (max-width: 720px) {
  .hero-copy h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .platform-copy h2,
  .center-heading h2,
  .challenge-map-panel h2,
  .loop-intro h2,
  .metrics-heading h2,
  .section-heading h2,
  .founders-intro h2,
  .faq-intro h2,
  .dark-cta h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .button {
    min-height: 48px;
    font-size: 15px;
  }
}

/* Borderless section cards */
.platform-card,
.platform-card:nth-child(1),
.platform-card:nth-child(2),
.platform-card:nth-child(3),
.platform-card:nth-child(4) {
  border: 0;
  box-shadow: 0 18px 42px rgba(44, 38, 31, 0.055);
}

.platform-card:hover {
  border-color: transparent;
  box-shadow: 0 22px 48px rgba(44, 38, 31, 0.09);
}

.platform-icon,
.platform-card:nth-child(2) .platform-icon,
.platform-card:nth-child(3) .platform-icon,
.platform-card:nth-child(4) .platform-icon {
  border: 0;
}

.impact-card,
.impact-card:nth-child(1),
.impact-card:nth-child(2),
.impact-card:nth-child(3) {
  border: 0;
  box-shadow: 0 18px 42px rgba(44, 38, 31, 0.06);
}

.impact-card:hover {
  border-color: transparent;
  box-shadow: 0 22px 48px rgba(44, 38, 31, 0.1);
}

.challenge-map-panel {
  border: 0;
  box-shadow: none;
}

.challenge-layout .challenge-card,
.challenge-layout .challenge-card:nth-child(1),
.challenge-layout .challenge-card:nth-child(2),
.challenge-layout .challenge-card:nth-child(3),
.challenge-layout .challenge-card:nth-child(4),
.challenge-layout .challenge-card:nth-child(5),
.challenge-layout .challenge-card:nth-child(6) {
  border: 0;
  box-shadow: 0 10px 28px rgba(44, 38, 31, 0.045);
}

.challenge-layout .challenge-card:hover,
.challenge-layout .challenge-card:nth-child(1):hover {
  border-color: transparent;
  box-shadow: 0 18px 42px rgba(44, 38, 31, 0.085);
}

.challenge-layout .challenge-icon,
.challenge-layout .challenge-card:nth-child(1) .challenge-icon,
.challenge-layout .challenge-card:nth-child(2) .challenge-icon,
.challenge-layout .challenge-card:nth-child(3) .challenge-icon,
.challenge-layout .challenge-card:nth-child(4) .challenge-icon,
.challenge-layout .challenge-card:nth-child(5) .challenge-icon,
.challenge-layout .challenge-card:nth-child(6) .challenge-icon,
.challenge-layout .challenge-card:hover .challenge-icon {
  border: 0;
}

/* Icon-free layouts until the final icon set is ready */
.platform-card {
  justify-content: flex-end;
  padding-top: clamp(48px, 4vw, 72px);
}

.challenge-layout .challenge-card,
.challenge-layout .challenge-card:nth-child(1),
.challenge-layout .challenge-card:nth-child(2),
.challenge-layout .challenge-card:nth-child(3),
.challenge-layout .challenge-card:nth-child(4),
.challenge-layout .challenge-card:nth-child(5),
.challenge-layout .challenge-card:nth-child(6) {
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 6px 20px;
}

.challenge-layout .challenge-card h3,
.challenge-layout .challenge-card p,
.challenge-layout .challenge-card:nth-child(1) p {
  grid-column: 1;
}

.challenge-layout .challenge-card::after,
.challenge-layout .challenge-card:nth-child(6)::after {
  grid-column: 2;
}

.metric-card {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 8px;
}

.metric-card h3,
.metric-card p {
  grid-column: 1;
  grid-row: auto;
}

/* Blank placeholders for future icon artwork */
.card-placeholder {
  width: 56px;
  height: 56px;
  display: block;
  flex: 0 0 auto;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 8px 18px rgba(44, 38, 31, 0.055);
}

.platform-card .card-placeholder {
  margin-bottom: auto;
}

.challenge-layout .challenge-card,
.challenge-layout .challenge-card:nth-child(1),
.challenge-layout .challenge-card:nth-child(2),
.challenge-layout .challenge-card:nth-child(3),
.challenge-layout .challenge-card:nth-child(4),
.challenge-layout .challenge-card:nth-child(5),
.challenge-layout .challenge-card:nth-child(6) {
  grid-template-columns: 56px minmax(0, 1fr) 42px;
}

.challenge-layout .challenge-card .card-placeholder {
  grid-column: 1;
  grid-row: 1 / span 2;
  place-self: center;
  margin: 0;
}

.challenge-layout .challenge-card h3,
.challenge-layout .challenge-card p,
.challenge-layout .challenge-card:nth-child(1) p {
  grid-column: 2;
}

.challenge-layout .challenge-card::after,
.challenge-layout .challenge-card:nth-child(6)::after {
  grid-column: 3;
}

.metric-card {
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 8px 22px;
}

.metric-card .card-placeholder {
  width: 64px;
  height: 64px;
  grid-column: 1;
  grid-row: 1 / span 2;
  place-self: center;
  background: var(--surface);
}

.metric-card h3,
.metric-card p {
  grid-column: 2;
}

@media (max-width: 720px) {
  .challenge-layout .challenge-card,
  .challenge-layout .challenge-card:nth-child(1),
  .challenge-layout .challenge-card:nth-child(2),
  .challenge-layout .challenge-card:nth-child(3),
  .challenge-layout .challenge-card:nth-child(4),
  .challenge-layout .challenge-card:nth-child(5),
  .challenge-layout .challenge-card:nth-child(6) {
    grid-template-columns: 48px minmax(0, 1fr) 28px;
  }

  .card-placeholder {
    width: 48px;
    height: 48px;
  }

  .metric-card {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .metric-card .card-placeholder {
    width: 54px;
    height: 54px;
  }
}

/* Clean background pass */
body {
  background: var(--paper);
}

main::before,
.platform-intro::before,
.metrics-section::before,
.founders-section::before,
.challenge-section::before,
.news-section::before,
.platform-card::before,
.challenge-layout .challenge-card::before {
  content: none;
  display: none;
}

/* ATP button system */
.button {
  border-radius: var(--radius);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button-dark {
  background: #07145d;
  border-color: #07145d;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(7, 20, 93, 0.16);
}

.button-dark:hover {
  background: #10257f;
  border-color: #10257f;
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(7, 20, 93, 0.2);
}

.button-light {
  background: #ffffff;
  border-color: rgba(108, 184, 237, 0.38);
  color: #07145d;
  box-shadow: 0 10px 24px rgba(7, 20, 93, 0.1);
}

.button-light:hover {
  background: #edf7ff;
  border-color: rgba(108, 184, 237, 0.7);
  color: #07145d;
  box-shadow: 0 12px 28px rgba(108, 184, 237, 0.2);
}

.button-outline {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(108, 184, 237, 0.44);
  color: #07145d;
}

.button-outline:hover {
  background: #edf7ff;
  border-color: rgba(108, 184, 237, 0.74);
  color: #07145d;
  box-shadow: 0 10px 24px rgba(108, 184, 237, 0.14);
}

.button-glass,
.button-dark-outline {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.36);
  color: #ffffff;
}

.button-glass:hover,
.button-dark-outline:hover {
  background: rgba(108, 184, 237, 0.18);
  border-color: rgba(108, 184, 237, 0.9);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(108, 184, 237, 0.16);
}

/* Final type hierarchy pass */
body {
  font-size: 16px;
  line-height: 1.5;
}

.section-space {
  padding-top: 104px;
  padding-bottom: 104px;
}

.main-nav,
.header-actions,
.button {
  font-size: 15px;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: 62px;
  line-height: 1;
  font-weight: 760;
}

.hero-copy h1 em {
  font-size: 0.94em;
  line-height: 1;
}

.hero-copy p {
  max-width: 650px;
  font-size: 19px;
  line-height: 1.48;
  font-weight: 520;
}

.trusted-section p {
  font-size: 16px;
  line-height: 1.4;
}

.platform-copy,
.center-heading,
.loop-intro {
  max-width: 860px;
}

.platform-copy h2,
.center-heading h2,
.loop-intro h2,
.metrics-heading h2,
.section-heading h2,
.founders-intro h2,
.faq-intro h2 {
  font-size: 54px;
  line-height: 1.05;
  font-weight: 720;
}

.challenge-map-panel h2 {
  font-size: 46px;
  line-height: 1.05;
  font-weight: 720;
}

.dark-cta h2 {
  font-size: 58px;
  line-height: 1.02;
  font-weight: 720;
}

.platform-copy p,
.loop-intro p,
.metrics-heading p,
.founders-intro p,
.dark-cta p,
.challenge-map-panel p {
  max-width: 780px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
}

.platform-card h3,
.challenge-layout .challenge-card h3,
.metric-card h3 {
  font-size: 21px;
  line-height: 1.18;
  font-weight: 760;
}

.platform-card p,
.challenge-layout .challenge-card p,
.metric-card p {
  font-size: 16px;
  line-height: 1.48;
}

.impact-body p {
  font-size: 18px;
  line-height: 1.4;
}

.impact-body .impact-cta {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 780;
}

.loop-step h3 {
  font-size: 17px;
  line-height: 1.15;
}

.loop-step p {
  font-size: 14px;
  line-height: 1.3;
}

.news-section .section-heading h2 {
  font-size: 54px;
  line-height: 1.05;
}

.news-card span,
.news-card .practice-use {
  font-size: 12px;
}

.news-card h3 {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 780;
}

.news-card p {
  font-size: 16px;
  line-height: 1.48;
}

.founder-topline h3 {
  font-size: 21px;
  line-height: 1.12;
}

.founder-copy p {
  font-size: 15.5px;
  line-height: 1.5;
}

.faq-item button {
  font-size: 16px;
  line-height: 1.25;
}

.footer-brand p {
  font-size: 21px;
  line-height: 1.25;
}

.footer-column h3,
.footer-column a,
.footer-contact p,
.footer-brand small,
.footer-bottom {
  font-size: 15px;
  line-height: 1.45;
}

@media (max-width: 940px) {
  .section-space {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .hero-copy h1 {
    font-size: 54px;
  }

  .platform-copy h2,
  .center-heading h2,
  .loop-intro h2,
  .metrics-heading h2,
  .section-heading h2,
  .founders-intro h2,
  .faq-intro h2,
  .news-section .section-heading h2 {
    font-size: 44px;
  }

  .challenge-map-panel h2,
  .dark-cta h2 {
    font-size: 44px;
  }
}

@media (max-width: 720px) {
  .section-space {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero-copy h1 {
    font-size: 42px;
    line-height: 1.04;
  }

  .hero-copy p,
  .platform-copy p,
  .loop-intro p,
  .metrics-heading p,
  .founders-intro p,
  .dark-cta p,
  .challenge-map-panel p {
    font-size: 16.5px;
  }

  .platform-copy h2,
  .center-heading h2,
  .loop-intro h2,
  .metrics-heading h2,
  .section-heading h2,
  .founders-intro h2,
  .faq-intro h2,
  .news-section .section-heading h2,
  .challenge-map-panel h2,
  .dark-cta h2 {
    font-size: 36px;
    line-height: 1.08;
  }

  .platform-card h3,
  .challenge-layout .challenge-card h3,
  .metric-card h3 {
    font-size: 20px;
  }

  .news-card h3 {
    font-size: 23px;
  }
}

/* No-shadow pass */
*,
*::before,
*::after {
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none;
}

.brand-strip img {
  filter: grayscale(1) saturate(0) contrast(0.96);
}

.brand-strip img:hover,
.brand-strip img:focus-visible {
  filter: grayscale(0) saturate(1) contrast(1);
}

/* Compact operating-loop redesign */
.loop-section {
  padding-top: 96px;
}

.loop-intro {
  margin-bottom: 36px;
  text-align: center;
}

.loop-visual {
  --loop-size: min(420px, 46vw);
  max-width: 1040px;
  min-height: 560px;
  margin: 0 auto;
  position: relative;
  display: block;
  overflow: visible;
}

.loop-stage {
  width: var(--loop-size);
  aspect-ratio: 1;
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
}

.loop-stage::before,
.loop-stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.loop-stage::before {
  inset: -34px;
  background: repeating-conic-gradient(
    from -90deg,
    rgba(108, 184, 237, 0.22) 0deg 1deg,
    transparent 1deg 18deg
  );
  -webkit-mask: radial-gradient(circle, transparent 0 67%, #000 68% 69%, transparent 70% 100%);
  mask: radial-gradient(circle, transparent 0 67%, #000 68% 69%, transparent 70% 100%);
}

.loop-stage::after {
  inset: 30%;
  border: 1px solid rgba(228, 237, 246, 0.9);
}

.loop-orbit {
  border: 0;
  background: conic-gradient(
    from -90deg,
    var(--accent-blue) 0deg 54deg,
    transparent 54deg 72deg,
    #78ae88 72deg 126deg,
    transparent 126deg 144deg,
    var(--accent-orange) 144deg 198deg,
    transparent 198deg 216deg,
    #dc8d81 216deg 270deg,
    transparent 270deg 288deg,
    var(--accent-purple) 288deg 342deg,
    transparent 342deg 360deg
  );
  -webkit-mask: radial-gradient(circle, transparent 0 59%, #000 60% 70%, transparent 71% 100%);
  mask: radial-gradient(circle, transparent 0 59%, #000 60% 70%, transparent 71% 100%);
  animation: chakra-spin 30s linear infinite;
}

.loop-orbit::before {
  inset: 17%;
  background: conic-gradient(
    from -90deg,
    rgba(108, 184, 237, 0.34) 0deg 7deg,
    transparent 7deg 72deg,
    rgba(120, 174, 136, 0.34) 72deg 79deg,
    transparent 79deg 144deg,
    rgba(245, 162, 58, 0.34) 144deg 151deg,
    transparent 151deg 216deg,
    rgba(220, 141, 129, 0.34) 216deg 223deg,
    transparent 223deg 288deg,
    rgba(170, 120, 162, 0.34) 288deg 295deg,
    transparent 295deg 360deg
  );
  -webkit-mask: radial-gradient(circle, transparent 0 64%, #000 65% 66%, transparent 67% 100%);
  mask: radial-gradient(circle, transparent 0 64%, #000 65% 66%, transparent 67% 100%);
  animation: chakra-spin 48s linear infinite reverse;
}

.loop-orbit::after {
  inset: 50%;
  border: 0;
  background: none;
  animation: none;
}

.loop-center {
  width: 132px;
  aspect-ratio: 1;
  background: #ffffff;
  border: 1px solid rgba(228, 237, 246, 0.95);
  color: var(--ink);
}

.loop-center strong {
  font-family: var(--sans);
  font-size: 38px;
  line-height: 1;
  font-style: normal;
  font-weight: 760;
}

.loop-step,
.loop-step-1,
.loop-step-2,
.loop-step-3,
.loop-step-4,
.loop-step-5 {
  width: 236px;
  min-height: 112px;
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: start;
  gap: 6px 14px;
  padding: 18px;
  border: 0;
  border-radius: var(--radius);
  background: var(--loop-tint);
  color: var(--ink);
  text-align: left;
}

.loop-number {
  width: 38px;
  height: 38px;
  grid-column: 1;
  grid-row: 1 / span 2;
  margin: 0;
  border-radius: 50%;
  background: var(--loop-accent);
  color: #ffffff;
  font-family: var(--sans);
  font-size: 15px;
  font-style: normal;
  font-weight: 760;
  line-height: 1;
}

.loop-number::before {
  content: none;
}

.loop-step h3 {
  grid-column: 2;
  margin: 1px 0 0;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 760;
}

.loop-step p {
  grid-column: 2;
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.35;
  font-weight: 500;
}

.loop-step-1 {
  --loop-accent: var(--accent-blue);
  --loop-tint: #eaf6ff;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.loop-step-2 {
  --loop-accent: #6fa97f;
  --loop-tint: #eaf4ed;
  right: 0;
  top: 132px;
}

.loop-step-3 {
  --loop-accent: var(--accent-orange);
  --loop-tint: #fff1dc;
  right: 118px;
  bottom: 0;
}

.loop-step-4 {
  --loop-accent: #d8877a;
  --loop-tint: #f8e2de;
  left: 118px;
  bottom: 0;
}

.loop-step-5 {
  --loop-accent: var(--accent-purple);
  --loop-tint: #efe6f1;
  left: 0;
  top: 132px;
}

@media (max-width: 980px) {
  .loop-visual {
    --loop-size: min(360px, 72vw);
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .loop-stage {
    grid-column: 1 / -1;
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0 auto 10px;
  }

  .loop-step,
  .loop-step-1,
  .loop-step-2,
  .loop-step-3,
  .loop-step-4,
  .loop-step-5 {
    width: auto;
    min-height: 112px;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
  }
}

@media (max-width: 640px) {
  .loop-section {
    padding-top: 72px;
  }

  .loop-intro {
    margin-bottom: 28px;
    text-align: left;
  }

  .loop-visual {
    grid-template-columns: 1fr;
  }

  .loop-stage {
    width: min(300px, 82vw);
  }

  .loop-center {
    width: 106px;
  }

  .loop-center strong {
    font-size: 31px;
  }
}

/* Founder profile readability pass */
.founder-grid {
  gap: clamp(34px, 4.6vw, 72px);
  align-items: start;
}

.founder-card {
  cursor: pointer;
  transform: none;
}

.founder-card:hover,
.founder-card:focus,
.founder-card:focus-within,
.founder-card.is-open {
  transform: translateY(-2px);
}

.founder-photo {
  height: clamp(320px, 30vw, 410px);
  margin-bottom: 22px;
}

.founder-copy {
  display: grid;
  gap: 11px;
  padding: 0 4px;
  text-align: left;
}

.founder-topline {
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
}

.founder-topline::before {
  content: "";
  width: 56px;
  height: 4px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 999px;
  background: var(--founder-accent, var(--accent-blue));
}

.founder-card:nth-child(1) {
  --founder-accent: var(--accent-blue);
}

.founder-card:nth-child(2) {
  --founder-accent: var(--accent-orange);
}

.founder-card:nth-child(3) {
  --founder-accent: var(--accent-purple);
}

.founder-topline h3 {
  font-size: clamp(22px, 1.7vw, 28px);
  line-height: 1.08;
  text-transform: none;
}

.founder-linkedin {
  width: 36px;
  height: 36px;
  position: static;
  left: auto;
  top: auto;
  flex: 0 0 auto;
  border: 0;
  background: var(--surface);
  color: var(--ink);
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.founder-card:hover .founder-linkedin,
.founder-card:focus .founder-linkedin,
.founder-card:focus-within .founder-linkedin,
.founder-card.is-open .founder-linkedin,
.founder-linkedin:hover {
  background: var(--founder-accent, var(--accent-blue));
  color: #ffffff;
  transform: none;
}

.founder-copy .founder-brief,
.founder-copy .founder-bio {
  width: auto;
  position: static;
  left: auto;
  top: auto;
  z-index: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  text-align: left;
  pointer-events: auto;
  transform: none;
}

.founder-copy .founder-brief {
  max-width: 34rem;
  margin: 0;
  padding: 0;
  opacity: 1;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 520;
}

.founder-toggle {
  width: max-content;
  min-height: 38px;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--founder-accent, var(--accent-blue)) 15%, #ffffff);
  color: #07145d;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
  padding: 0 16px;
}

.founder-toggle::after {
  content: "+";
  margin-left: 10px;
  font-size: 17px;
  line-height: 1;
}

.founder-card.is-open .founder-toggle::after {
  content: "-";
}

.founder-toggle:hover,
.founder-toggle:focus-visible {
  background: var(--founder-accent, var(--accent-blue));
  color: #ffffff;
  outline: none;
}

.founder-copy .founder-bio {
  max-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 15px;
  line-height: 1.56;
  transition: max-height 220ms ease, opacity 160ms ease, padding-top 220ms ease;
}

.founder-card:hover .founder-copy .founder-bio,
.founder-card:focus .founder-copy .founder-bio,
.founder-card:focus-within .founder-copy .founder-bio,
.founder-card.is-open .founder-copy .founder-bio {
  pointer-events: auto;
  transform: none;
}

.founder-card.is-open .founder-copy .founder-bio {
  max-height: 640px;
  padding-top: 8px;
  opacity: 1;
}

.founder-card:hover .founder-copy .founder-brief,
.founder-card:focus .founder-copy .founder-brief,
.founder-card:focus-within .founder-copy .founder-brief,
.founder-card.is-open .founder-copy .founder-brief {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .founder-grid {
    gap: 58px;
  }

  .founder-card {
    width: min(620px, 100%);
  }

  .founder-photo {
    height: min(430px, 76vw);
  }
}

@media (max-width: 640px) {
  .founder-copy {
    padding: 0;
  }

  .founder-topline {
    align-items: flex-start;
  }

  .founder-copy .founder-brief {
    font-size: 15.5px;
  }
}

/* Founder cards aligned to ATP visual language */
.founder-grid {
  gap: clamp(42px, 5vw, 86px);
}

.founder-card {
  cursor: default;
}

.founder-card:hover,
.founder-card:focus,
.founder-card:focus-within,
.founder-card.is-open {
  transform: none;
}

.founder-photo {
  height: clamp(330px, 31vw, 430px);
  margin-bottom: 18px;
}

.founder-mark {
  width: 94%;
  height: 94%;
  left: 3%;
  top: 1%;
}

.founder-portrait {
  width: 70%;
  height: 70%;
  object-position: center 16%;
}

.founder-copy {
  display: grid;
  gap: 10px;
  padding: 0;
  text-align: center;
}

.founder-topline {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding-top: 0;
}

.founder-topline::before {
  content: none;
}

.founder-topline h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 1.45vw, 24px);
  line-height: 1.1;
  font-weight: 790;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
}

.founder-linkedin {
  width: 34px;
  height: 34px;
  border: 1px solid color-mix(in srgb, var(--founder-accent, var(--accent-blue)) 34%, transparent);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
}

.founder-card:hover .founder-linkedin,
.founder-card:focus .founder-linkedin,
.founder-card:focus-within .founder-linkedin,
.founder-card.is-open .founder-linkedin,
.founder-linkedin:hover {
  background: var(--founder-accent, var(--accent-blue));
  color: #ffffff;
  transform: none;
}

.founder-copy .founder-brief {
  max-width: 25rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(14.5px, 1vw, 16px);
  line-height: 1.5;
  font-weight: 500;
  text-align: left;
}

.founder-toggle {
  width: max-content;
  min-height: auto;
  margin-top: 4px;
  border-radius: 0;
  background: transparent;
  color: #07145d;
  font-size: 14px;
  font-weight: 780;
  padding: 0 0 4px;
  border-bottom: 2px solid color-mix(in srgb, var(--founder-accent, var(--accent-blue)) 58%, transparent);
}

.founder-toggle::after {
  content: "->";
  margin-left: 9px;
  font-size: 14px;
}

.founder-card.is-open .founder-toggle::after {
  content: "-";
}

.founder-toggle:hover,
.founder-toggle:focus-visible {
  background: transparent;
  color: var(--ink);
  border-bottom-color: var(--founder-accent, var(--accent-blue));
}

.founder-copy .founder-bio {
  margin-top: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
  text-align: left;
}

.founder-card.is-open .founder-copy .founder-bio {
  max-height: 620px;
  padding-top: 10px;
  opacity: 1;
}

@media (max-width: 980px) {
  .founder-card {
    width: min(520px, 100%);
  }

  .founder-copy {
    width: min(420px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .founder-photo {
    height: min(350px, 86vw);
  }

  .founder-topline h3,
  .founder-copy .founder-brief,
  .founder-copy .founder-bio {
    text-align: left;
  }
}

/* Founder structure reset: portrait first, calm text hierarchy */
.founder-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(38px, 4.5vw, 72px);
}

.founder-card {
  display: grid;
  align-content: start;
  gap: 16px;
  cursor: default;
}

.founder-photo {
  width: min(310px, 100%);
  height: 310px;
  margin: 0 auto;
  position: relative;
}

.founder-mark {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: contain;
}

.founder-portrait {
  width: 68%;
  height: 68%;
  left: 50%;
  top: 47%;
  object-fit: cover;
  object-position: center 16%;
  transform: translate(-50%, -50%);
}

.founder-portrait-kshitij {
  object-position: center 9%;
}

.founder-linkedin {
  width: 34px;
  height: 34px;
  position: absolute;
  right: 38px;
  bottom: 30px;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 820;
}

.founder-card:hover .founder-linkedin,
.founder-card:focus .founder-linkedin,
.founder-card:focus-within .founder-linkedin,
.founder-card.is-open .founder-linkedin,
.founder-linkedin:hover {
  background: var(--founder-accent, var(--accent-blue));
  color: #ffffff;
}

.founder-copy {
  width: min(320px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 9px;
  padding: 0;
  text-align: center;
}

.founder-topline {
  display: block;
  padding: 0;
  margin: 0;
}

.founder-topline::before {
  content: none;
}

.founder-topline h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 21px;
  line-height: 1.12;
  font-weight: 720;
  text-align: center;
  text-transform: none;
}

.founder-copy .founder-brief {
  max-width: 30ch;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.45;
  font-weight: 480;
  text-align: center;
}

.founder-toggle {
  width: max-content;
  min-height: auto;
  margin: 3px auto 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #07145d;
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.1;
  font-weight: 740;
  padding: 0 0 3px;
  border-bottom: 1px solid var(--founder-accent, var(--accent-blue));
}

.founder-toggle::after {
  content: "";
  margin: 0;
}

.founder-toggle:hover,
.founder-toggle:focus-visible {
  background: transparent;
  color: var(--ink);
  outline: none;
}

.founder-copy .founder-bio {
  max-width: 34ch;
  margin: 0 auto;
  color: var(--muted);
  font-size: 13.75px;
  line-height: 1.52;
  font-weight: 470;
  text-align: left;
}

.founder-card.is-open .founder-copy .founder-bio {
  max-height: 680px;
  padding-top: 10px;
  opacity: 1;
}

@media (max-width: 980px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .founder-card {
    width: min(430px, 100%);
    margin: 0 auto;
  }

  .founder-photo {
    width: min(330px, 82vw);
    height: min(330px, 82vw);
  }
}

@media (max-width: 640px) {
  .founder-copy,
  .founder-topline h3,
  .founder-copy .founder-brief {
    text-align: center;
  }
}

/* ATP Reflect page */
.reflect-page main {
  overflow: hidden;
}

.reflect-hero {
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  gap: clamp(44px, 7vw, 104px);
  align-items: center;
  padding-top: clamp(54px, 7vw, 96px);
}

.reflect-hero-copy {
  max-width: 620px;
}

.reflect-kicker {
  width: max-content;
  min-height: 34px;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  padding: 0 14px 0 12px;
}

.reflect-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #80d99b;
}

.reflect-kicker img {
  width: 104px;
  height: auto;
}

.reflect-hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif-fancy);
  font-size: clamp(58px, 6.2vw, 92px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: 0;
}

.reflect-hero h1 em {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-family: var(--serif-fancy);
  font-style: italic;
  font-weight: 400;
}

.reflect-hero p {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.48;
  font-weight: 480;
}

.reflect-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.reflect-hero-visual {
  position: relative;
  border-radius: 28px;
  background:
    radial-gradient(circle at 16% 18%, rgba(229, 244, 231, 0.95), transparent 34%),
    radial-gradient(circle at 92% 0%, rgba(216, 233, 248, 0.9), transparent 36%),
    #f7fbff;
  padding: 12px;
}

.reflect-hero-visual::before {
  content: "";
  width: 58%;
  aspect-ratio: 1;
  position: absolute;
  right: -18%;
  top: -18%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(229, 244, 231, 0.68);
}

.reflect-hero-visual img {
  width: 100%;
  height: min(520px, 54vw);
  min-height: 390px;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
}

.reflect-float {
  position: absolute;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 16px 20px;
}

.reflect-float span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dcf8e5;
}

.reflect-float span::before {
  content: "";
  width: 12px;
  height: 7px;
  border-left: 2px solid #19a960;
  border-bottom: 2px solid #19a960;
  transform: rotate(-45deg);
}

.reflect-float strong {
  display: block;
  font-size: 15px;
  line-height: 1.15;
}

.reflect-float small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.reflect-float-top {
  right: -24px;
  top: 18%;
  grid-template-columns: 10px minmax(0, 1fr);
}

.reflect-float-top span {
  width: 8px;
  height: 8px;
  background: #4d88f5;
}

.reflect-float-top span::before {
  content: none;
}

.reflect-float-bottom {
  left: -48px;
  bottom: 9%;
}

.reflect-break {
  padding-top: clamp(72px, 8vw, 118px);
}

.reflect-break-heading {
  max-width: 900px;
  margin: 0 auto 36px;
  text-align: center;
}

.reflect-break-heading h2,
.reflect-movement-heading h2,
.reflect-proof-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif-fancy);
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: 0;
}

.reflect-break-heading h2 em {
  color: var(--accent-orange);
  font-style: italic;
}

.reflect-fix-board {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  border-radius: 18px;
  background: #ffffff;
  padding: 28px;
}

.reflect-broken,
.reflect-fixed {
  min-height: 560px;
  border-radius: 14px;
  padding: clamp(28px, 4vw, 48px);
}

.reflect-broken {
  background: linear-gradient(135deg, #fff7f3 0%, #ffffff 100%);
}

.reflect-fixed {
  background: var(--dark);
  color: #ffffff;
}

.reflect-broken h3,
.reflect-fixed h3 {
  margin: 0 0 28px;
  font-family: var(--serif-fancy);
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 1;
  font-weight: 400;
}

.reflect-broken ol,
.reflect-fixed ol {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  list-style: none;
}

.reflect-broken li,
.reflect-fixed li {
  min-height: 92px;
  display: grid;
  grid-template-columns: 56px 42px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid rgba(127, 135, 146, 0.18);
}

.reflect-fixed li {
  grid-template-columns: 58px minmax(0, 1fr);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.reflect-broken li > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  grid-column: 2;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 760;
}

.reflect-broken li::before,
.reflect-fixed li span {
  content: "";
  width: 56px;
  height: 56px;
  display: block;
  grid-column: 1;
  border-radius: 10px;
  background:
    linear-gradient(var(--problem-color, #dc8d81) 0 0) 50% 50% / 26px 3px no-repeat,
    color-mix(in srgb, var(--problem-color, #dc8d81) 18%, #ffffff);
}

.reflect-broken li:nth-child(2)::before {
  --problem-color: var(--accent-orange);
}

.reflect-broken li:nth-child(3)::before {
  --problem-color: var(--accent-purple);
}

.reflect-broken li:nth-child(4)::before {
  --problem-color: #6fa97f;
}

.reflect-fixed li span {
  background:
    radial-gradient(circle, transparent 0 34%, #ff6838 35% 42%, transparent 43%),
    color-mix(in srgb, #ff6838 18%, var(--dark));
}

.reflect-broken strong,
.reflect-fixed strong {
  display: block;
  font-size: 17px;
  line-height: 1.18;
}

.reflect-broken p,
.reflect-fixed p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.32;
}

.reflect-fixed p {
  color: rgba(255, 255, 255, 0.74);
}

.reflect-core-badge {
  width: 140px;
  height: 140px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  align-content: center;
  border: 10px solid #ffffff;
  border-radius: 50%;
  background: #ff4a25;
  color: #ffffff;
  text-align: center;
  transform: translate(-50%, -50%);
}

.reflect-core-badge strong {
  display: block;
  font-family: var(--serif-fancy);
  font-size: 32px;
  line-height: 1;
  font-weight: 400;
}

.reflect-core-badge span {
  display: block;
  max-width: 90px;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.12;
}

.reflect-proof-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 24px 0 0;
}

.reflect-proof-row p {
  margin: 0;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.16;
  font-weight: 730;
}

.reflect-proof-row p:nth-child(2) {
  color: #ff4a25;
}

.reflect-sector-section {
  padding-top: 0;
}

.reflect-sector-top {
  border-radius: 14px 14px 0 0;
  background: var(--dark);
  color: #ffffff;
  padding: clamp(44px, 6vw, 72px) 34px;
  text-align: center;
}

.reflect-sector-top h2 {
  max-width: 780px;
  margin: 0 auto 28px;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.08;
  font-weight: 700;
}

.reflect-sector-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.reflect-sector-tab {
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 720;
  padding: 0 18px;
}

.reflect-sector-tab.is-active {
  background: var(--cream);
  color: var(--ink);
}

.reflect-sector-panels {
  border-radius: 0 0 14px 14px;
  background: #f4f0e5;
  padding: clamp(32px, 5vw, 64px);
}

.reflect-sector-panel {
  display: none;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(44px, 7vw, 88px);
  align-items: center;
}

.reflect-sector-panel.is-active {
  display: grid;
}

.reflect-sector-panel img {
  width: 100%;
  height: 390px;
  border-radius: 8px;
  object-fit: cover;
}

.reflect-sector-panel span {
  color: var(--accent-orange);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 820;
  text-transform: uppercase;
}

.reflect-sector-panel h3 {
  max-width: 600px;
  margin: 12px 0 22px;
  font-size: clamp(34px, 3.1vw, 48px);
  line-height: 1.08;
  font-weight: 650;
}

.reflect-sector-panel ul,
.reflect-insight-copy ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.reflect-sector-panel li,
.reflect-insight-copy li {
  position: relative;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
  padding-left: 28px;
}

.reflect-sector-panel li::before,
.reflect-insight-copy li::before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 0.45em;
  border-radius: 50%;
  background: #98e5ad;
}

.reflect-insight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 108px) clamp(44px, 7vw, 96px);
  align-items: center;
}

.reflect-dashboard-card,
.reflect-action-image {
  position: relative;
}

.reflect-dashboard-card > img,
.reflect-action-image > img {
  width: 100%;
  min-height: 360px;
  border-radius: 24px;
  object-fit: cover;
}

.reflect-dashboard-card > img {
  background: var(--dark);
  object-fit: contain;
  padding: 24px;
}

.reflect-message-card {
  width: min(340px, 78%);
  position: absolute;
  right: -34px;
  bottom: -28px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  padding: 18px;
}

.reflect-message-card span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--dark);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.reflect-message-card strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
}

.reflect-message-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.reflect-insight-copy h2,
.reflect-action-copy h2 {
  margin: 0;
  font-family: var(--serif-fancy);
  font-size: clamp(42px, 4.4vw, 64px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: 0;
}

.reflect-insight-copy p,
.reflect-action-copy p,
.reflect-movement-heading p,
.reflect-proof-copy p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.48;
  font-weight: 480;
}

.reflect-insight-copy ul {
  margin-top: 28px;
}

.reflect-completion {
  width: min(300px, 72%);
  position: absolute;
  right: -28px;
  bottom: 34px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  padding: 18px;
}

.reflect-completion span {
  display: block;
  color: var(--ink);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.reflect-completion strong {
  width: max-content;
  margin-top: 8px;
  display: block;
  border-radius: 999px;
  background: #dcf8e5;
  color: #168248;
  font-size: 12px;
  padding: 4px 10px;
}

.reflect-completion div {
  height: 8px;
  margin: 14px 0 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--dark) 0 72%, #eef1f4 72% 100%);
}

.reflect-completion a {
  min-height: 42px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #f4f6f8;
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
}

.reflect-proof-section {
  background: #f8f8fb;
  width: 100%;
  max-width: none;
  padding-left: max(64px, calc((100vw - var(--container)) / 2));
  padding-right: max(64px, calc((100vw - var(--container)) / 2));
}

.reflect-quote-cloud {
  max-width: 1120px;
  margin: 0 auto 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 24px;
}

.reflect-quote-cloud span {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 650;
  padding: 0 28px;
}

.reflect-proof-copy,
.reflect-movement-heading {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.reflect-proof-copy p,
.reflect-movement-heading p {
  margin-left: auto;
  margin-right: auto;
}

.reflect-movement-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(44px, 6vw, 96px);
}

.reflect-movement-grid article {
  text-align: center;
}

.reflect-movement-grid article > span {
  width: 84px;
  height: 84px;
  margin: 0 auto 28px;
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(var(--ink) 0 0) 50% 34% / 34px 3px no-repeat,
    linear-gradient(var(--ink) 0 0) 50% 50% / 42px 3px no-repeat,
    linear-gradient(var(--ink) 0 0) 50% 66% / 28px 3px no-repeat,
    #ffffff;
}

.reflect-movement-grid article:nth-child(2) > span {
  background:
    linear-gradient(var(--ink) 0 0) 50% 26% / 3px 36px no-repeat,
    linear-gradient(var(--ink) 0 0) 36% 64% / 3px 22px no-repeat,
    linear-gradient(var(--ink) 0 0) 64% 64% / 3px 22px no-repeat,
    linear-gradient(var(--ink) 0 0) 50% 76% / 40px 3px no-repeat,
    #ffffff;
}

.reflect-movement-grid article:nth-child(3) > span {
  background:
    linear-gradient(var(--ink) 0 0) 50% 34% / 44px 3px no-repeat,
    linear-gradient(var(--ink) 0 0) 34% 54% / 3px 30px no-repeat,
    linear-gradient(var(--ink) 0 0) 50% 54% / 3px 30px no-repeat,
    linear-gradient(var(--ink) 0 0) 66% 54% / 3px 30px no-repeat,
    linear-gradient(var(--ink) 0 0) 50% 72% / 54px 3px no-repeat,
    #ffffff;
}

.reflect-movement-grid h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 760;
}

.reflect-movement-grid p {
  max-width: 330px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.45;
}

.reflect-cta {
  margin-top: 24px;
}

@media (max-width: 1040px) {
  .reflect-hero,
  .reflect-sector-panel,
  .reflect-insight-grid {
    grid-template-columns: 1fr;
  }

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

  .reflect-fix-board {
    grid-template-columns: 1fr;
  }

  .reflect-core-badge {
    position: relative;
    left: auto;
    top: auto;
    margin: -8px auto;
    transform: none;
  }

  .reflect-proof-row {
    grid-template-columns: 1fr;
  }

  .reflect-movement-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
}

@media (max-width: 720px) {
  .reflect-hero {
    min-height: auto;
    padding-top: 52px;
  }

  .reflect-hero h1,
  .reflect-break-heading h2,
  .reflect-insight-copy h2,
  .reflect-action-copy h2,
  .reflect-movement-heading h2,
  .reflect-proof-copy h2 {
    font-size: 42px;
    line-height: 1.02;
  }

  .reflect-actions {
    flex-direction: column;
  }

  .reflect-hero-visual img,
  .reflect-sector-panel img,
  .reflect-dashboard-card > img,
  .reflect-action-image > img {
    min-height: 280px;
    height: auto;
  }

  .reflect-float,
  .reflect-message-card,
  .reflect-completion {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }

  .reflect-broken,
  .reflect-fixed {
    min-height: auto;
    padding: 24px;
  }

  .reflect-broken li {
    grid-template-columns: 42px 34px minmax(0, 1fr);
    gap: 12px;
  }

  .reflect-broken li::before,
  .reflect-fixed li span {
    width: 42px;
    height: 42px;
  }

  .reflect-sector-panels,
  .reflect-fix-board {
    padding: 18px;
  }

  .reflect-proof-section {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* Reflect brand correction pass */
.reflect-page {
  --reflect-ink: #221f1d;
  --reflect-blue: #6cb8ed;
  --reflect-navy: #07145d;
  --reflect-mint: #e5f4e7;
  --reflect-cream: #fff1c9;
  --reflect-lavender: #e3ddee;
  --reflect-rose: #ead2dd;
  --reflect-line: #e6eef6;
}

.reflect-page .site-header {
  margin-bottom: 10px;
}

.reflect-hero {
  min-height: auto;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.98fr);
  gap: clamp(44px, 6vw, 86px);
  padding-top: clamp(58px, 7vw, 94px);
  padding-bottom: clamp(78px, 8vw, 120px);
}

.reflect-kicker {
  margin-bottom: 24px;
  border: 0;
  background: var(--reflect-mint);
  padding: 0 14px 0 12px;
}

.reflect-kicker img {
  width: 112px;
}

.reflect-hero h1 {
  max-width: 690px;
  font-family: var(--sans);
  font-size: clamp(52px, 5vw, 72px);
  line-height: 1.02;
  font-weight: 720;
}

.reflect-hero h1 em {
  max-width: 620px;
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--serif-fancy);
  font-size: 0.8em;
  line-height: 1.04;
  font-weight: 400;
}

.reflect-hero p {
  max-width: 610px;
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 480;
}

.reflect-actions {
  margin-top: 30px;
}

.reflect-hero-visual {
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(229, 244, 231, 0.9), rgba(216, 233, 248, 0.74)),
    #ffffff;
  padding: 18px;
}

.reflect-hero-visual::before {
  width: 52%;
  right: -12%;
  top: -12%;
  background: rgba(216, 233, 248, 0.46);
}

.reflect-hero-visual img {
  height: min(470px, 48vw);
  min-height: 360px;
  border-radius: 8px;
  object-position: center;
}

.reflect-float {
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  padding: 14px 16px;
}

.reflect-float-top {
  right: -12px;
  top: 18%;
}

.reflect-float-bottom {
  left: -22px;
  bottom: 10%;
}

.reflect-break {
  padding-top: clamp(70px, 8vw, 108px);
}

.reflect-break-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.reflect-break-heading h2,
.reflect-movement-heading h2,
.reflect-proof-copy h2,
.reflect-insight-copy h2,
.reflect-action-copy h2 {
  font-family: var(--sans);
  font-size: clamp(40px, 4.1vw, 58px);
  line-height: 1.06;
  font-weight: 710;
}

.reflect-break-heading h2 em {
  color: var(--accent-purple);
  font-family: var(--serif-fancy);
  font-weight: 400;
}

.reflect-fix-board {
  gap: 18px;
  border-radius: 12px;
  background: #f7fbff;
  padding: 18px;
}

.reflect-broken,
.reflect-fixed {
  min-height: 500px;
  border-radius: 8px;
  padding: clamp(26px, 3.6vw, 42px);
}

.reflect-broken {
  background: #fff8f2;
}

.reflect-fixed {
  background: #17202b;
}

.reflect-broken h3,
.reflect-fixed h3 {
  font-family: var(--sans);
  font-size: clamp(28px, 2.3vw, 36px);
  line-height: 1.08;
  font-weight: 710;
}

.reflect-broken li,
.reflect-fixed li {
  min-height: 86px;
}

.reflect-broken li::before,
.reflect-fixed li span {
  border-radius: 8px;
  background:
    linear-gradient(var(--problem-color, #dc8d81) 0 0) 50% 50% / 24px 3px no-repeat,
    color-mix(in srgb, var(--problem-color, #dc8d81) 16%, #ffffff);
}

.reflect-fixed li span {
  background:
    radial-gradient(circle, transparent 0 34%, var(--reflect-blue) 35% 42%, transparent 43%),
    rgba(108, 184, 237, 0.12);
}

.reflect-core-badge {
  width: 128px;
  height: 128px;
  border-width: 8px;
  background: var(--reflect-navy);
}

.reflect-core-badge strong {
  font-family: var(--sans);
  font-size: 25px;
  font-weight: 720;
}

.reflect-core-badge span {
  font-size: 12px;
}

.reflect-proof-row {
  grid-template-columns: 1fr 1fr auto;
  padding-top: 22px;
}

.reflect-proof-row p {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.24;
}

.reflect-proof-row p:nth-child(2) {
  color: var(--reflect-navy);
}

.reflect-sector-section {
  padding-top: clamp(72px, 8vw, 108px);
}

.reflect-sector-top {
  border-radius: 12px 12px 0 0;
  background: #17202b;
  padding: clamp(36px, 5vw, 58px) 28px;
}

.reflect-sector-top h2 {
  max-width: 700px;
  font-size: clamp(30px, 2.6vw, 40px);
  font-weight: 690;
}

.reflect-sector-tab {
  min-height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  font-size: 14px;
  padding: 0 16px;
}

.reflect-sector-tab.is-active {
  background: var(--reflect-cream);
}

.reflect-sector-panels {
  border-radius: 0 0 12px 12px;
  background: #f8f5ec;
  padding: clamp(26px, 4vw, 52px);
}

.reflect-sector-panel {
  gap: clamp(34px, 5vw, 72px);
}

.reflect-sector-panel img {
  height: 340px;
  border-radius: 8px;
}

.reflect-sector-panel span {
  color: var(--reflect-navy);
  font-size: 12px;
  letter-spacing: 0;
}

.reflect-sector-panel h3 {
  max-width: 640px;
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 1.12;
  font-weight: 650;
}

.reflect-sector-panel li,
.reflect-insight-copy li {
  color: var(--muted);
  font-size: 16px;
}

.reflect-sector-panel li::before,
.reflect-insight-copy li::before {
  background: var(--reflect-blue);
}

.reflect-insight-section {
  padding-top: clamp(84px, 9vw, 132px);
}

.reflect-insight-grid {
  gap: clamp(46px, 7vw, 86px);
}

.reflect-dashboard-card > img,
.reflect-action-image > img {
  min-height: 320px;
  border-radius: 12px;
}

.reflect-dashboard-card > img {
  background: #17202b;
  padding: 18px;
}

.reflect-message-card,
.reflect-completion {
  border: 0;
  border-radius: 8px;
}

.reflect-message-card span {
  border-radius: 8px;
  background: var(--reflect-navy);
}

.reflect-insight-copy p,
.reflect-action-copy p,
.reflect-movement-heading p,
.reflect-proof-copy p {
  font-size: 18px;
  line-height: 1.5;
}

.reflect-proof-section {
  background: #f7fbff;
}

.reflect-quote-cloud {
  margin-bottom: 64px;
  gap: 14px 18px;
}

.reflect-quote-cloud span {
  min-height: 50px;
  border: 0;
  background: #ffffff;
  font-size: 15px;
  font-weight: 610;
  padding: 0 22px;
}

.reflect-proof-copy {
  max-width: 900px;
}

.reflect-movement {
  padding-top: clamp(84px, 9vw, 128px);
}

.reflect-movement-heading {
  max-width: 930px;
}

.reflect-movement-grid {
  margin-top: 58px;
  gap: clamp(36px, 5vw, 72px);
}

.reflect-movement-grid article > span {
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  border: 0;
  background:
    linear-gradient(var(--ink) 0 0) 50% 34% / 30px 3px no-repeat,
    linear-gradient(var(--ink) 0 0) 50% 50% / 38px 3px no-repeat,
    linear-gradient(var(--ink) 0 0) 50% 66% / 24px 3px no-repeat,
    var(--reflect-mint);
}

.reflect-movement-grid article:nth-child(2) > span {
  background:
    linear-gradient(var(--ink) 0 0) 50% 26% / 3px 32px no-repeat,
    linear-gradient(var(--ink) 0 0) 36% 64% / 3px 20px no-repeat,
    linear-gradient(var(--ink) 0 0) 64% 64% / 3px 20px no-repeat,
    linear-gradient(var(--ink) 0 0) 50% 76% / 36px 3px no-repeat,
    var(--blue);
}

.reflect-movement-grid article:nth-child(3) > span {
  background:
    linear-gradient(var(--ink) 0 0) 50% 34% / 40px 3px no-repeat,
    linear-gradient(var(--ink) 0 0) 34% 54% / 3px 28px no-repeat,
    linear-gradient(var(--ink) 0 0) 50% 54% / 3px 28px no-repeat,
    linear-gradient(var(--ink) 0 0) 66% 54% / 3px 28px no-repeat,
    linear-gradient(var(--ink) 0 0) 50% 72% / 50px 3px no-repeat,
    var(--lavender);
}

.reflect-movement-grid h3 {
  font-size: 21px;
}

.reflect-movement-grid p {
  font-size: 15.5px;
}

.reflect-cta {
  margin-top: 0;
}

@media (max-width: 1040px) {
  .reflect-hero {
    grid-template-columns: 1fr;
  }

  .reflect-proof-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .reflect-hero h1,
  .reflect-break-heading h2,
  .reflect-insight-copy h2,
  .reflect-action-copy h2,
  .reflect-movement-heading h2,
  .reflect-proof-copy h2 {
    font-size: 36px;
    line-height: 1.08;
  }

  .reflect-hero h1 em {
    font-size: 0.9em;
  }

  .reflect-hero p,
  .reflect-insight-copy p,
  .reflect-action-copy p,
  .reflect-movement-heading p,
  .reflect-proof-copy p {
    font-size: 16.5px;
  }
}

/* Reflect centered hero and pastel system */
.reflect-page {
  background:
    radial-gradient(circle at 50% 155px, rgba(229, 244, 231, 0.72), transparent 0 340px),
    radial-gradient(circle at 12% 760px, rgba(216, 233, 248, 0.42), transparent 0 420px),
    radial-gradient(circle at 88% 1080px, rgba(227, 221, 238, 0.42), transparent 0 440px),
    var(--paper);
}

.reflect-page main {
  background: transparent;
}

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

.reflect-page .button-dark:hover {
  background: #101c69;
  border-color: #101c69;
}

.reflect-page .button-outline {
  border-color: #d9e5ef;
  background: rgba(255, 255, 255, 0.78);
  color: var(--reflect-navy);
}

.reflect-page .button-outline:hover {
  border-color: var(--reflect-blue);
  background: #ffffff;
}

.reflect-hero {
  width: min(calc(100% - 128px), 1120px);
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 0;
  padding-top: clamp(44px, 5.6vw, 76px);
  padding-bottom: clamp(104px, 9vw, 146px);
  text-align: center;
  overflow: visible;
}

.reflect-hero-copy {
  max-width: 860px;
  display: grid;
  justify-items: center;
}

.reflect-kicker {
  margin-bottom: 24px;
  border: 1px solid rgba(108, 184, 237, 0.22);
  background: #ffffff;
}

.reflect-hero h1 {
  max-width: 860px;
  font-family: var(--serif-fancy);
  font-size: clamp(52px, 5.6vw, 78px);
  line-height: 0.96;
  font-weight: 400;
  color: var(--ink);
}

.reflect-hero h1 em {
  display: block;
  max-width: 790px;
  margin-top: 8px;
  color: #61666a;
  font-family: var(--serif-fancy);
  font-size: 0.72em;
  font-style: italic;
  line-height: 1.04;
  font-weight: 400;
}

.reflect-hero p {
  max-width: 700px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.48;
  font-weight: 480;
}

.reflect-actions {
  justify-content: center;
  margin-top: 32px;
}

.reflect-hero-visual {
  width: min(640px, 92vw);
  min-height: 510px;
  margin-top: clamp(28px, 4vw, 50px);
  position: relative;
  display: grid;
  justify-items: center;
  align-items: end;
  border-radius: 0;
  background: transparent;
  padding: 0;
  isolation: isolate;
}

.reflect-hero-visual::before {
  content: "";
  width: min(520px, 78vw);
  height: min(360px, 54vw);
  position: absolute;
  left: 50%;
  bottom: 62px;
  z-index: 0;
  border-radius: 46% 54% 42% 58%;
  background:
    radial-gradient(circle at 28% 32%, rgba(255, 241, 201, 0.82), transparent 0 120px),
    radial-gradient(circle at 76% 54%, rgba(216, 233, 248, 0.92), transparent 0 170px),
    rgba(229, 244, 231, 0.82);
  transform: translateX(-50%) rotate(-4deg);
}

.reflect-hero-visual::after {
  content: "";
  width: min(430px, 68vw);
  height: 28px;
  position: absolute;
  left: 50%;
  bottom: 76px;
  z-index: 1;
  border-radius: 50%;
  background: rgba(108, 184, 237, 0.2);
  transform: translateX(-50%);
}

.reflect-hero-visual img {
  width: min(342px, 62vw);
  height: auto;
  min-height: 0;
  position: relative;
  z-index: 2;
  border-radius: 0;
  mix-blend-mode: multiply;
  object-fit: contain;
  object-position: center;
}

.reflect-float {
  z-index: 3;
  border: 1px solid rgba(216, 229, 239, 0.95);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
}

.reflect-float-top {
  right: 28px;
  top: 42%;
}

.reflect-float-bottom {
  width: min(520px, 94vw);
  left: 50%;
  bottom: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  text-align: left;
  padding: 18px 20px;
  transform: translateX(-50%);
}

.reflect-float-bottom small {
  grid-column: 2;
}

.reflect-break,
.reflect-sector-section,
.reflect-insight-section,
.reflect-movement {
  padding-top: clamp(84px, 9vw, 124px);
}

.reflect-break-heading h2,
.reflect-movement-heading h2,
.reflect-proof-copy h2,
.reflect-insight-copy h2,
.reflect-action-copy h2 {
  color: var(--ink);
  font-family: var(--serif-fancy);
  font-size: clamp(42px, 4.4vw, 64px);
  line-height: 1;
  font-weight: 400;
}

.reflect-break-heading h2 em {
  color: var(--accent-purple);
  font-family: var(--serif-fancy);
}

.reflect-fix-board {
  background: #ffffff;
}

.reflect-broken {
  background:
    linear-gradient(135deg, rgba(234, 210, 221, 0.42), rgba(255, 255, 255, 0.92)),
    #fff8fb;
}

.reflect-fixed {
  background:
    linear-gradient(135deg, rgba(216, 233, 248, 0.72), rgba(229, 244, 231, 0.72)),
    #f7fbff;
  color: var(--ink);
}

.reflect-broken h3,
.reflect-fixed h3 {
  color: var(--ink);
  font-family: var(--serif-fancy);
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 1;
  font-weight: 400;
}

.reflect-fixed li {
  border-bottom-color: rgba(34, 31, 29, 0.1);
}

.reflect-fixed p {
  color: var(--muted);
}

.reflect-fixed li span {
  background:
    radial-gradient(circle, transparent 0 34%, var(--reflect-blue) 35% 42%, transparent 43%),
    rgba(108, 184, 237, 0.18);
}

.reflect-core-badge {
  background: #ffffff;
  border-color: var(--reflect-mint);
  color: var(--reflect-navy);
}

.reflect-core-badge strong {
  font-family: var(--serif-fancy);
  font-size: 30px;
  font-weight: 400;
}

.reflect-proof-row {
  grid-template-columns: minmax(0, 1fr) auto;
  border-top-color: #edf2f6;
}

.reflect-proof-row p {
  max-width: 820px;
}

.reflect-proof-row p:nth-child(2) {
  color: var(--accent-purple);
}

.reflect-sector-top {
  border-radius: 8px 8px 0 0;
  background:
    linear-gradient(135deg, rgba(229, 244, 231, 0.88), rgba(216, 233, 248, 0.82)),
    #f7fbff;
  color: var(--ink);
}

.reflect-sector-top h2 {
  font-family: var(--serif-fancy);
  font-weight: 400;
}

.reflect-sector-tab {
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
}

.reflect-sector-tab.is-active {
  background: var(--reflect-navy);
  color: #ffffff;
}

.reflect-sector-panels {
  background:
    linear-gradient(135deg, rgba(255, 241, 201, 0.46), rgba(255, 255, 255, 0.84)),
    #fffdf7;
}

.reflect-sector-panel span {
  color: var(--accent-purple);
}

.reflect-dashboard-card > img {
  background:
    linear-gradient(135deg, rgba(216, 233, 248, 0.72), rgba(227, 221, 238, 0.5)),
    #ffffff;
}

.reflect-message-card span {
  background: var(--reflect-navy);
}

.reflect-proof-section {
  background:
    linear-gradient(180deg, rgba(247, 251, 255, 0.92), rgba(255, 255, 255, 0.98)),
    #ffffff;
}

.reflect-quote-cloud span {
  border: 1px solid rgba(216, 229, 239, 0.95);
  background: #ffffff;
}

.reflect-movement-grid article > span {
  border: 1px solid rgba(216, 229, 239, 0.95);
}

.dark-cta.reflect-cta {
  background:
    linear-gradient(135deg, rgba(227, 221, 238, 0.74), rgba(216, 233, 248, 0.84)),
    #f7fbff;
  color: var(--ink);
}

.reflect-cta .dark-pattern {
  display: none;
}

.reflect-cta .dark-cta-copy h2,
.reflect-cta .dark-cta-copy p {
  color: var(--ink);
}

.reflect-cta .button-light {
  background: var(--reflect-navy);
  border-color: var(--reflect-navy);
  color: #ffffff;
}

.reflect-cta .button-dark-outline {
  border-color: rgba(7, 20, 93, 0.18);
  background: #ffffff;
  color: var(--reflect-navy);
}

@media (max-width: 1040px) {
  .reflect-hero {
    width: min(calc(100% - 48px), 1120px);
  }

  .reflect-hero-visual {
    min-height: 490px;
  }
}

@media (max-width: 720px) {
  .reflect-hero {
    width: min(calc(100% - 28px), 1120px);
    padding-top: 44px;
    padding-bottom: 104px;
  }

  .reflect-hero h1 {
    font-size: clamp(43px, 13vw, 56px);
    line-height: 0.98;
  }

  .reflect-hero h1 em {
    font-size: 0.76em;
  }

  .reflect-actions {
    width: 100%;
  }

  .reflect-actions .button {
    width: 100%;
  }

  .reflect-hero-visual {
    width: 100%;
    min-height: 430px;
    margin-top: 30px;
  }

  .reflect-hero-visual img {
    width: min(286px, 72vw);
  }

  .reflect-float-top,
  .reflect-float-bottom {
    position: absolute;
  }

  .reflect-float-top {
    right: 0;
    top: 34%;
  }

  .reflect-float-bottom {
    width: 100%;
    bottom: 0;
  }
}

/* Reflect sector block - ATP pastel refinement */
.reflect-sector-section {
  width: min(calc(100% - 128px), 1240px);
  padding-top: clamp(90px, 9vw, 132px);
  overflow: visible;
}

.reflect-sector-section::before {
  content: "";
  width: 100vw;
  height: 72%;
  position: absolute;
  left: 50%;
  top: 18%;
  z-index: -1;
  background:
    linear-gradient(8deg, transparent 0 22%, rgba(216, 233, 248, 0.24) 22% 55%, transparent 55% 100%),
    radial-gradient(circle at 22% 34%, rgba(229, 244, 231, 0.52), transparent 0 280px),
    radial-gradient(circle at 84% 72%, rgba(227, 221, 238, 0.32), transparent 0 310px);
  transform: translateX(-50%);
}

.reflect-sector-top {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  border-radius: 0;
  border-bottom: 1px solid rgba(216, 229, 239, 0.9);
  background: transparent;
  color: var(--ink);
  padding: 0 0 clamp(24px, 3vw, 34px);
  text-align: left;
}

.reflect-sector-top h2 {
  max-width: 620px;
  margin: 0;
  font-family: var(--serif-fancy);
  font-size: clamp(44px, 4.4vw, 66px);
  line-height: 0.98;
  font-weight: 400;
}

.reflect-sector-tabs {
  width: max-content;
  max-width: 100%;
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-radius: 999px;
  background: rgba(247, 251, 255, 0.92);
  padding: 8px;
}

.reflect-sector-tab {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #5f6973;
  font-size: 14px;
  font-weight: 760;
  padding: 0 17px;
}

.reflect-sector-tab:hover {
  background: #ffffff;
  color: var(--reflect-navy);
}

.reflect-sector-tab.is-active {
  background: var(--blue);
  color: var(--reflect-navy);
}

.reflect-sector-panels {
  margin-top: clamp(24px, 3vw, 34px);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(216, 233, 248, 0.72), rgba(229, 244, 231, 0.62) 54%, rgba(255, 241, 201, 0.42)),
    #f7fbff;
  padding: clamp(24px, 4vw, 48px);
}

.reflect-sector-panel {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: stretch;
}

.reflect-sector-panel img {
  height: 430px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  background: #ffffff;
}

.reflect-sector-panel > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
  padding: clamp(28px, 4vw, 48px);
}

.reflect-sector-panel span {
  width: max-content;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  background: var(--lavender);
  color: var(--reflect-navy);
  font-size: 12px;
  font-weight: 820;
  padding: 0 12px;
  text-transform: uppercase;
}

.reflect-sector-panel h3 {
  max-width: 660px;
  margin: 18px 0 26px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
  font-weight: 690;
}

.reflect-sector-panel ul {
  gap: 10px;
}

.reflect-sector-panel li {
  min-height: 46px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.35;
  padding: 12px 16px 12px 42px;
}

.reflect-sector-panel li::before {
  width: 10px;
  height: 10px;
  left: 18px;
  top: 50%;
  background: var(--accent-blue);
  transform: translateY(-50%);
}

.reflect-sector-panel li:nth-child(2)::before {
  background: #85bf94;
}

.reflect-sector-panel li:nth-child(3)::before {
  background: var(--accent-purple);
}

@media (max-width: 1040px) {
  .reflect-sector-section {
    width: min(calc(100% - 48px), 1240px);
  }

  .reflect-sector-top {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .reflect-sector-tabs {
    justify-self: start;
    width: 100%;
    border-radius: 14px;
  }

  .reflect-sector-panel {
    grid-template-columns: 1fr;
  }

  .reflect-sector-panel img {
    height: 340px;
  }
}

@media (max-width: 720px) {
  .reflect-sector-section {
    width: min(calc(100% - 28px), 1240px);
  }

  .reflect-sector-top h2 {
    font-size: 38px;
    line-height: 1.04;
  }

  .reflect-sector-tabs {
    border-radius: 12px;
  }

  .reflect-sector-tab {
    flex: 1 1 auto;
  }

  .reflect-sector-panels {
    padding: 16px;
  }

  .reflect-sector-panel > div {
    padding: 22px;
  }

  .reflect-sector-panel h3 {
    font-size: 28px;
  }
}

/* Reflect insight/action mosaic */
.reflect-insight-section {
  width: min(calc(100% - 128px), 1240px);
  padding-top: clamp(90px, 9vw, 132px);
}

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

.reflect-dashboard-card,
.reflect-action-image,
.reflect-insight-copy,
.reflect-action-copy {
  min-height: clamp(430px, 38vw, 540px);
  border-radius: 10px;
  overflow: hidden;
}

.reflect-dashboard-card,
.reflect-action-image {
  background:
    linear-gradient(135deg, rgba(216, 233, 248, 0.62), rgba(229, 244, 231, 0.52)),
    #f7fbff;
}

.reflect-dashboard-card > img,
.reflect-action-image > img {
  width: 100%;
  height: 100%;
  min-height: clamp(430px, 38vw, 540px);
  border-radius: 10px;
}

.reflect-dashboard-card > img {
  object-fit: contain;
  background: transparent;
  padding: clamp(28px, 4vw, 54px);
}

.reflect-action-image > img {
  object-fit: cover;
  object-position: center;
}

.reflect-insight-copy,
.reflect-action-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 255, 0.92)),
    #ffffff;
  padding: clamp(34px, 5vw, 70px);
  text-align: center;
}

.reflect-insight-copy {
  align-items: center;
}

.reflect-action-copy {
  align-items: flex-start;
  text-align: left;
  background:
    linear-gradient(135deg, rgba(229, 244, 231, 0.78), rgba(255, 255, 255, 0.9)),
    #f8fcf9;
}

.reflect-message-card,
.reflect-completion {
  position: static;
  width: min(430px, 100%);
  border: 1px solid rgba(216, 229, 239, 0.92);
  border-radius: 10px;
  background: #ffffff;
}

.reflect-message-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  margin: 0 auto clamp(42px, 5vw, 76px);
  padding: 18px;
  text-align: left;
}

.reflect-message-card span {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--reflect-navy);
}

.reflect-message-card p {
  max-width: none;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.42;
}

.reflect-insight-copy h2,
.reflect-action-copy h2 {
  max-width: 570px;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif-fancy);
  font-size: clamp(38px, 3.5vw, 54px);
  line-height: 1.02;
  font-weight: 400;
}

.reflect-insight-copy > p,
.reflect-action-copy > p {
  max-width: 580px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.5;
}

.reflect-insight-copy ul {
  width: min(520px, 100%);
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.reflect-insight-copy li {
  min-height: 42px;
  display: flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(229, 244, 231, 0.82);
  color: var(--ink);
  font-size: 15.5px;
  padding: 9px 18px 9px 42px;
}

.reflect-insight-copy li::before {
  left: 18px;
  top: 50%;
  background: var(--accent-blue);
  transform: translateY(-50%);
}

.reflect-insight-copy li:nth-child(2) {
  background: rgba(216, 233, 248, 0.82);
}

.reflect-insight-copy li:nth-child(3) {
  background: rgba(227, 221, 238, 0.78);
}

.reflect-completion {
  margin: 0 0 clamp(42px, 5vw, 76px);
  padding: 18px;
}

.reflect-completion span {
  color: var(--reflect-navy);
}

.reflect-completion div {
  background: linear-gradient(90deg, var(--reflect-navy) 0 72%, #e9eff5 72% 100%);
}

.reflect-completion a {
  background: #ffffff;
  color: var(--reflect-navy);
}

.reflect-proof-section {
  margin-top: clamp(70px, 8vw, 112px);
}

@media (max-width: 1040px) {
  .reflect-insight-section {
    width: min(calc(100% - 48px), 1240px);
  }

  .reflect-insight-grid {
    grid-template-columns: 1fr;
  }

  .reflect-dashboard-card,
  .reflect-action-image,
  .reflect-insight-copy,
  .reflect-action-copy {
    min-height: auto;
  }

  .reflect-dashboard-card > img,
  .reflect-action-image > img {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .reflect-insight-section {
    width: min(calc(100% - 28px), 1240px);
  }

  .reflect-dashboard-card > img,
  .reflect-action-image > img {
    min-height: 280px;
  }

  .reflect-insight-copy,
  .reflect-action-copy {
    padding: 24px;
  }

  .reflect-insight-copy h2,
  .reflect-action-copy h2 {
    font-size: 34px;
    line-height: 1.04;
  }
}

/* Reflect mosaic typography cleanup */
.reflect-insight-copy h2,
.reflect-action-copy h2 {
  font-family: var(--sans);
  font-size: clamp(30px, 2.5vw, 40px);
  line-height: 1.1;
  font-style: normal;
  font-weight: 680;
}

.reflect-action-copy h2 {
  max-width: 620px;
}

.reflect-insight-copy > p,
.reflect-action-copy > p {
  font-size: clamp(16.5px, 1.15vw, 19px);
}

.reflect-completion {
  width: min(440px, 100%);
  margin-bottom: clamp(34px, 4vw, 58px);
}

.reflect-proof-section {
  margin-top: clamp(44px, 5vw, 70px);
  padding-top: clamp(58px, 7vw, 88px);
}

.reflect-proof-copy h2 {
  font-family: var(--sans);
  font-size: clamp(38px, 3.7vw, 52px);
  line-height: 1.08;
  font-style: normal;
  font-weight: 670;
}

/* Reflect proof quote stream */
.reflect-proof-section {
  width: 100%;
  max-width: none;
  margin-top: clamp(48px, 5vw, 76px);
  padding: clamp(78px, 8vw, 118px) 0 clamp(88px, 9vw, 130px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 251, 255, 0.95), rgba(255, 255, 255, 0.98)),
    #ffffff;
}

.reflect-quote-cloud {
  width: 100vw;
  max-width: none;
  position: relative;
  left: 50%;
  margin: 0 0 clamp(70px, 7vw, 106px);
  display: grid;
  gap: 24px;
  transform: translateX(-50%);
}

.reflect-quote-cloud::before,
.reflect-quote-cloud::after {
  content: "";
  width: clamp(120px, 16vw, 260px);
  position: absolute;
  top: -8px;
  bottom: -8px;
  z-index: 2;
  pointer-events: none;
}

.reflect-quote-cloud::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
}

.reflect-quote-cloud::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, rgba(255, 255, 255, 0));
}

.reflect-quote-row {
  width: max-content;
  display: flex;
  gap: clamp(18px, 2vw, 30px);
}

.reflect-quote-row-primary {
  transform: translateX(max(-140px, -7vw));
}

.reflect-quote-row-secondary {
  transform: translateX(max(-260px, -14vw));
}

.reflect-quote-row span {
  min-height: clamp(64px, 5.5vw, 78px);
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border: 0;
  border-radius: 999px;
  background: rgba(244, 242, 239, 0.86);
  color: #5d5d5b;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 560;
  white-space: nowrap;
  padding: 8px clamp(28px, 3vw, 42px) 8px 10px;
}

.reflect-quote-row span::before {
  content: "";
  width: clamp(46px, 4vw, 58px);
  height: clamp(46px, 4vw, 58px);
  flex: 0 0 auto;
  border-radius: 50%;
  background-color: var(--blue);
  background-position: center;
  background-size: cover;
  opacity: 0.68;
}

.reflect-quote-row-primary span:nth-child(1)::before,
.reflect-quote-row-secondary span:nth-child(2)::before {
  background-image: url("assets/founders/anish-singh.png");
}

.reflect-quote-row-primary span:nth-child(2)::before,
.reflect-quote-row-secondary span:nth-child(3)::before {
  background-image: url("assets/founders/kshitij-jain.png");
}

.reflect-quote-row-primary span:nth-child(3)::before,
.reflect-quote-row-secondary span:nth-child(1)::before {
  background-image: url("assets/founders/shashank-shekhar.png");
}

.reflect-proof-copy {
  width: min(calc(100% - 128px), 920px);
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.reflect-proof-copy h2 {
  max-width: 850px;
  margin-inline: auto;
  color: var(--ink);
}

.reflect-proof-copy p {
  max-width: 740px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.5;
}

@media (max-width: 720px) {
  .reflect-proof-section {
    padding-top: 64px;
  }

  .reflect-quote-cloud {
    gap: 14px;
    margin-bottom: 58px;
  }

  .reflect-quote-row {
    gap: 14px;
  }

  .reflect-quote-row span {
    font-size: 18px;
  }

  .reflect-proof-copy {
    width: min(calc(100% - 28px), 920px);
  }

  .reflect-proof-copy h2 {
    font-size: 34px;
  }
}

/* Reflect movement four-up */
.reflect-movement-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
}

.reflect-movement-grid article:nth-child(4) > span {
  background:
    linear-gradient(var(--ink) 0 0) 50% 36% / 34px 3px no-repeat,
    linear-gradient(var(--ink) 0 0) 37% 56% / 3px 24px no-repeat,
    linear-gradient(var(--ink) 0 0) 50% 56% / 3px 32px no-repeat,
    linear-gradient(var(--ink) 0 0) 63% 56% / 3px 18px no-repeat,
    linear-gradient(var(--ink) 0 0) 50% 74% / 46px 3px no-repeat,
    var(--cream);
}

.reflect-movement-grid h3 {
  font-size: clamp(19px, 1.45vw, 22px);
}

.reflect-movement-grid p {
  max-width: 285px;
}

@media (max-width: 1040px) {
  .reflect-movement-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 46px 34px;
  }
}

@media (max-width: 640px) {
  .reflect-movement-grid {
    grid-template-columns: 1fr;
  }
}

/* Reflect business challenge selector */
.reflect-challenge-section {
  width: min(calc(100% - 128px), 1240px);
  padding-top: clamp(88px, 9vw, 132px);
  padding-bottom: clamp(48px, 6vw, 84px);
}

.reflect-challenge-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.12fr);
  gap: clamp(28px, 4vw, 46px);
  align-items: stretch;
}

.reflect-challenge-panel {
  min-height: 760px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 8%, transparent 0 162px, rgba(255, 255, 255, 0.13) 164px 165px, transparent 167px),
    linear-gradient(180deg, #1f1e1b, #25231f);
  padding: clamp(40px, 5vw, 64px);
  color: #ffffff;
}

.reflect-challenge-panel h2 {
  max-width: 520px;
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(44px, 4.4vw, 68px);
  line-height: 1.05;
  font-weight: 780;
}

.reflect-challenge-panel p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.45;
  font-weight: 520;
}

.reflect-challenge-list {
  display: grid;
  gap: 16px;
}

.reflect-challenge-card {
  min-height: 126px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 36px;
  gap: clamp(20px, 2.5vw, 28px);
  align-items: center;
  border-radius: 8px;
  background: var(--reflect-card-bg, var(--mint));
  color: var(--ink);
  padding: clamp(18px, 2vw, 26px) clamp(18px, 2.5vw, 30px);
  transition: background-color 180ms ease, transform 180ms ease;
}

.reflect-challenge-card:nth-child(1) {
  --reflect-card-bg: linear-gradient(90deg, rgba(229, 244, 231, 0.94), rgba(247, 251, 255, 0.95));
}

.reflect-challenge-card:nth-child(2) {
  --reflect-card-bg: linear-gradient(90deg, rgba(227, 221, 238, 0.94), rgba(247, 251, 255, 0.95));
}

.reflect-challenge-card:nth-child(3) {
  --reflect-card-bg: linear-gradient(90deg, rgba(216, 233, 248, 0.94), rgba(247, 251, 255, 0.95));
}

.reflect-challenge-card:nth-child(4) {
  --reflect-card-bg: linear-gradient(90deg, rgba(255, 241, 201, 0.94), rgba(255, 252, 242, 0.95));
}

.reflect-challenge-card:nth-child(5) {
  --reflect-card-bg: linear-gradient(90deg, rgba(234, 210, 221, 0.94), rgba(255, 247, 250, 0.95));
}

.reflect-challenge-card:nth-child(6) {
  --reflect-card-bg: linear-gradient(90deg, rgba(237, 192, 182, 0.78), rgba(255, 246, 243, 0.95));
}

.reflect-challenge-card:hover {
  transform: translateX(5px);
}

.reflect-challenge-icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.reflect-challenge-card strong {
  display: block;
  color: var(--ink);
  font-size: clamp(22px, 1.9vw, 30px);
  line-height: 1.12;
  font-weight: 780;
}

.reflect-challenge-card small {
  display: block;
  margin-top: 10px;
  color: #4f5964;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.34;
  font-weight: 470;
}

.reflect-challenge-arrow {
  color: rgba(34, 31, 29, 0.34);
  font-size: 38px;
  font-weight: 760;
  line-height: 1;
}

.reflect-challenge-card:hover .reflect-challenge-arrow {
  color: var(--reflect-navy);
}

@media (max-width: 1040px) {
  .reflect-challenge-section {
    width: min(calc(100% - 48px), 1240px);
  }

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

  .reflect-challenge-panel {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .reflect-challenge-section {
    width: min(calc(100% - 28px), 1240px);
  }

  .reflect-challenge-panel {
    min-height: 320px;
    padding: 30px;
  }

  .reflect-challenge-panel h2 {
    font-size: 38px;
  }

  .reflect-challenge-card {
    grid-template-columns: 46px minmax(0, 1fr) 24px;
    gap: 14px;
    min-height: 116px;
  }

  .reflect-challenge-icon {
    width: 42px;
    height: 42px;
  }

  .reflect-challenge-card strong {
    font-size: 20px;
  }

  .reflect-challenge-card small {
    font-size: 15.5px;
  }

  .reflect-challenge-arrow {
    font-size: 28px;
  }
}

/* Reflect driver taxonomy */
.reflect-taxonomy-section {
  width: min(calc(100% - 128px), 1240px);
}

.reflect-taxonomy-section::before {
  display: none;
}

.reflect-taxonomy-section .reflect-sector-top {
  grid-template-columns: minmax(0, 0.86fr) auto;
  align-items: end;
  border-bottom: 0;
  padding-bottom: clamp(18px, 2vw, 26px);
}

.reflect-taxonomy-section .reflect-sector-top h2 {
  max-width: 720px;
}

.reflect-taxonomy-section .reflect-sector-tabs {
  width: auto;
  background: #f7fbff;
}

.reflect-taxonomy-section .reflect-sector-tab {
  min-width: 128px;
}

.reflect-taxonomy-section .reflect-sector-tab.is-active {
  background: var(--reflect-navy);
}

.reflect-taxonomy-section .reflect-sector-panels {
  margin-top: clamp(10px, 1.5vw, 18px);
  background: transparent;
  padding: 0;
}

.reflect-taxonomy-section .reflect-sector-panel {
  grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 34px);
  align-items: start;
}

.reflect-taxonomy-section .reflect-driver-panel {
  min-height: 0;
}

.reflect-taxonomy-section .reflect-driver-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.62fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: end;
  justify-content: stretch;
  border-radius: 0;
  background: transparent;
  padding: 0 0 clamp(14px, 2vw, 24px);
}

.reflect-taxonomy-section .reflect-driver-heading span {
  width: max-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--blue);
  color: var(--reflect-navy);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
  padding: 0 13px;
}

.reflect-taxonomy-section .reflect-driver-panel[data-sector-panel="culture"] .reflect-driver-heading span {
  background: var(--mint);
}

.reflect-taxonomy-section .reflect-driver-panel[data-sector-panel="capability"] .reflect-driver-heading span {
  background: var(--blue);
}

.reflect-taxonomy-section .reflect-driver-panel[data-sector-panel="commitment"] .reflect-driver-heading span {
  background: var(--rose);
}

.reflect-taxonomy-section .reflect-driver-heading p {
  max-width: 480px;
  margin: 0;
  justify-self: end;
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.45;
  text-align: right;
}

.reflect-taxonomy-section .reflect-driver-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  justify-content: stretch;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.reflect-taxonomy-section .reflect-driver-card {
  min-height: 184px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.1)),
    var(--driver-bg, var(--mint));
  padding: clamp(18px, 1.8vw, 24px);
}

.reflect-taxonomy-section .reflect-driver-card:nth-child(4n + 1) {
  --driver-bg: rgba(229, 244, 231, 0.82);
}

.reflect-taxonomy-section .reflect-driver-card:nth-child(4n + 2) {
  --driver-bg: rgba(216, 233, 248, 0.84);
}

.reflect-taxonomy-section .reflect-driver-card:nth-child(4n + 3) {
  --driver-bg: rgba(227, 221, 238, 0.76);
}

.reflect-taxonomy-section .reflect-driver-card:nth-child(4n + 4) {
  --driver-bg: rgba(255, 241, 201, 0.82);
}

.reflect-taxonomy-section .reflect-driver-card h3 {
  max-width: none;
  margin: 18px 0 10px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(19px, 1.35vw, 23px);
  line-height: 1.16;
  font-weight: 760;
}

.reflect-taxonomy-section .reflect-driver-card p {
  margin: 0;
  color: #4f5964;
  font-size: 15px;
  line-height: 1.42;
}

@media (max-width: 1040px) {
  .reflect-taxonomy-section {
    width: min(calc(100% - 48px), 1240px);
  }

  .reflect-taxonomy-section .reflect-sector-top {
    grid-template-columns: 1fr;
  }

  .reflect-taxonomy-section .reflect-driver-heading {
    grid-template-columns: 1fr;
  }

  .reflect-taxonomy-section .reflect-driver-heading p {
    justify-self: start;
    text-align: left;
  }

  .reflect-taxonomy-section .reflect-driver-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .reflect-taxonomy-section {
    width: min(calc(100% - 28px), 1240px);
  }

  .reflect-taxonomy-section .reflect-sector-tabs {
    width: 100%;
  }

  .reflect-taxonomy-section .reflect-sector-tab {
    min-width: 0;
  }

  .reflect-taxonomy-section .reflect-driver-grid {
    grid-template-columns: 1fr;
  }

  .reflect-taxonomy-section .reflect-driver-card {
    min-height: auto;
  }
}

/* Reflect flat visual pass */
.reflect-page {
  background: #ffffff;
}

.reflect-page main {
  background: #ffffff;
}

.reflect-hero-visual::before {
  background: rgba(229, 244, 231, 0.64);
}

.reflect-hero-visual::after {
  background: rgba(108, 184, 237, 0.12);
}

.reflect-broken {
  background: #fff8fb;
}

.reflect-fixed {
  background: #f7fbff;
}

.reflect-sector-top,
.reflect-sector-panels,
.reflect-taxonomy-section .reflect-sector-panels,
.reflect-proof-section {
  background: transparent;
}

.reflect-dashboard-card,
.reflect-action-image {
  background: #ffffff;
}

.reflect-dashboard-card > img,
.reflect-action-image > img {
  background: #ffffff;
}

.reflect-insight-copy,
.reflect-action-copy {
  min-height: clamp(350px, 32vw, 460px);
  justify-content: center;
  align-items: flex-start;
  background: #f7fbff;
  text-align: left;
}

.reflect-action-copy {
  background: #f7fcf7;
}

.reflect-insight-copy ul {
  width: min(520px, 100%);
}

.reflect-insight-copy li,
.reflect-insight-copy li:nth-child(2),
.reflect-insight-copy li:nth-child(3) {
  background: rgba(255, 255, 255, 0.72);
}

.reflect-challenge-card:nth-child(1) {
  --reflect-card-bg: rgba(229, 244, 231, 0.94);
}

.reflect-challenge-card:nth-child(2) {
  --reflect-card-bg: rgba(227, 221, 238, 0.88);
}

.reflect-challenge-card:nth-child(3) {
  --reflect-card-bg: rgba(216, 233, 248, 0.92);
}

.reflect-challenge-card:nth-child(4) {
  --reflect-card-bg: rgba(255, 241, 201, 0.9);
}

.reflect-challenge-card:nth-child(5) {
  --reflect-card-bg: rgba(234, 210, 221, 0.88);
}

.reflect-challenge-card:nth-child(6) {
  --reflect-card-bg: rgba(237, 192, 182, 0.76);
}

.reflect-taxonomy-section .reflect-driver-card {
  background: var(--driver-bg, var(--mint));
}

.reflect-challenge-panel {
  background: #1f1e1b;
}

/* ATP Embark page */
.embark-page {
  border-top-color: var(--accent-orange);
  background: #ffffff;
}

.embark-page main {
  background: #ffffff;
}

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

.embark-page .button-dark:hover {
  background: #101c69;
  border-color: #101c69;
}

.embark-page .button-outline {
  border-color: rgba(13, 31, 103, 0.18);
  background: #ffffff;
  color: var(--reflect-navy);
}

.embark-hero {
  width: min(calc(100% - 128px), 1240px);
  min-height: calc(100vh - 128px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.8fr);
  gap: clamp(44px, 6vw, 92px);
  align-items: center;
  padding-top: clamp(42px, 5vw, 70px);
  padding-bottom: clamp(68px, 8vw, 112px);
}

.embark-hero-copy {
  max-width: 710px;
}

.embark-kicker {
  width: max-content;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: var(--cream);
  padding: 7px 14px;
}

.embark-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-orange);
}

.embark-kicker img {
  width: 138px;
  height: auto;
}

.embark-hero h1 {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--ink);
  font-family: var(--serif-fancy);
  font-size: clamp(58px, 6.7vw, 104px);
  line-height: 0.92;
  font-weight: 400;
}

.embark-hero h1 em {
  display: block;
  color: #5b6168;
  font-style: italic;
}

.embark-hero p {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.5;
  font-weight: 470;
}

.embark-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.embark-hero-visual {
  min-height: 570px;
  position: relative;
  display: grid;
  align-items: end;
  justify-items: center;
  border-radius: 16px;
  background: var(--cream);
  overflow: hidden;
  padding: clamp(26px, 4vw, 48px);
}

.embark-hero-visual::before {
  content: "";
  width: 76%;
  aspect-ratio: 1;
  position: absolute;
  right: -18%;
  top: -22%;
  border-radius: 50%;
  background: rgba(237, 192, 182, 0.68);
}

.embark-hero-visual::after {
  content: "";
  width: 52%;
  aspect-ratio: 1;
  position: absolute;
  left: -18%;
  bottom: -18%;
  border-radius: 50%;
  background: rgba(229, 244, 231, 0.76);
}

.embark-hero-visual img {
  width: min(390px, 80%);
  position: relative;
  z-index: 1;
  border-radius: 10px;
  object-fit: cover;
}

.embark-status-card {
  width: min(310px, 78%);
  position: absolute;
  z-index: 2;
  border-radius: 10px;
  background: #ffffff;
  padding: 18px 20px;
}

.embark-status-card span {
  display: block;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.embark-status-card strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.15;
}

.embark-status-top {
  right: 30px;
  top: 58px;
}

.embark-status-bottom {
  left: 28px;
  bottom: 54px;
}

.embark-trusted {
  padding-top: 0;
  padding-bottom: clamp(64px, 7vw, 96px);
}

.embark-problem {
  width: min(calc(100% - 128px), 1240px);
}

.embark-problem-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.64fr);
  gap: clamp(34px, 5vw, 70px);
  border-radius: 12px;
  background: var(--dark);
  color: #ffffff;
  padding: clamp(38px, 6vw, 76px);
}

.embark-problem h2,
.embark-solution h2,
.embark-heading h2,
.embark-architecture h2,
.embark-action h2 {
  margin: 0;
  color: inherit;
  font-family: var(--serif-fancy);
  font-size: clamp(42px, 4.7vw, 72px);
  line-height: 0.98;
  font-weight: 400;
}

.embark-problem p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.5;
}

.embark-solution,
.embark-journey,
.embark-pillars,
.embark-architecture,
.embark-action,
.embark-proof,
.embark-use-cases {
  width: min(calc(100% - 128px), 1240px);
  padding-top: clamp(84px, 9vw, 126px);
}

.embark-section-label {
  width: max-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--cream);
  color: var(--reflect-navy);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
  padding: 0 13px;
}

.embark-solution-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.62fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: end;
}

.embark-solution-grid p,
.embark-heading p,
.embark-architecture-copy p,
.embark-action p,
.embark-effort p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.48;
}

.embark-heading {
  max-width: 920px;
}

.embark-heading p {
  max-width: 760px;
  margin-top: 20px;
}

.embark-journey-track {
  margin-top: clamp(34px, 4vw, 54px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(260px, auto);
  align-items: stretch;
  gap: 8px;
  --journey-arrow-depth: clamp(24px, 2.4vw, 34px);
}

.embark-journey-track article,
.embark-pillar-grid article,
.embark-outcome-grid article,
.embark-use-grid article {
  border-radius: 8px;
  background: var(--blue);
  color: var(--ink);
  padding: clamp(22px, 2.6vw, 34px);
}

.embark-journey-track article {
  height: 260px;
  min-height: 260px;
  display: block;
  box-sizing: border-box;
  position: relative;
  --journey-stage-bg: var(--blue);
  padding-right: calc(clamp(22px, 2.6vw, 34px) + var(--journey-arrow-depth));
  border-radius: 0;
  background: var(--journey-stage-bg) !important;
  clip-path: polygon(
    0 0,
    calc(100% - var(--journey-arrow-depth)) 0,
    100% 50%,
    calc(100% - var(--journey-arrow-depth)) 100%,
    0 100%
  );
}

.embark-journey-track article:not(:first-child) {
  padding-left: calc(clamp(22px, 2.6vw, 34px) + var(--journey-arrow-depth));
  clip-path: polygon(
    0 0,
    calc(100% - var(--journey-arrow-depth)) 0,
    100% 50%,
    calc(100% - var(--journey-arrow-depth)) 100%,
    0 100%,
    var(--journey-arrow-depth) 50%
  );
}

.embark-journey-track article:nth-child(2),
.embark-pillar-grid article:nth-child(2),
.embark-outcome-grid article:nth-child(2),
.embark-use-grid article:nth-child(2) {
  background: var(--mint);
}

.embark-journey-track article:nth-child(3),
.embark-pillar-grid article:nth-child(3),
.embark-outcome-grid article:nth-child(3),
.embark-use-grid article:nth-child(3) {
  background: var(--lavender);
}

.embark-journey-track article:nth-child(4),
.embark-outcome-grid article:nth-child(4) {
  background: var(--cream);
}

.embark-journey-track article:nth-child(2) {
  --journey-stage-bg: var(--mint);
}

.embark-journey-track article:nth-child(3) {
  --journey-stage-bg: var(--lavender);
}

.embark-journey-track article:nth-child(4) {
  --journey-stage-bg: var(--cream);
}

.embark-journey-track span,
.embark-architecture-list span,
.embark-stakeholder-card span,
.embark-action-panel > span,
.embark-outcome-grid span {
  display: block;
  color: var(--reflect-navy);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.embark-journey-track h3,
.embark-pillar-grid h3,
.embark-architecture-list h3,
.embark-use-grid h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.08;
  font-weight: 760;
}

.embark-journey-track p,
.embark-pillar-grid p,
.embark-architecture-list p,
.embark-use-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.42;
}

.embark-pillar-grid {
  margin-top: clamp(34px, 4vw, 54px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.embark-pillar-grid span {
  width: 56px;
  height: 56px;
  display: block;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.embark-architecture {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(560px, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.embark-architecture-copy {
  position: sticky;
  top: 92px;
}

.embark-architecture-copy p {
  margin-top: 22px;
}

.embark-architecture-grid {
  display: grid;
  gap: 14px;
}

.embark-architecture-list {
  display: grid;
  gap: 12px;
}

.embark-architecture-list article {
  min-height: 140px;
  border-radius: 8px;
  background: #f7fbff;
  padding: 22px;
}

.embark-architecture-list article:nth-child(2) {
  background: #fff8fb;
}

.embark-architecture-list article:nth-child(3) {
  background: #fffdf0;
}

.embark-architecture-list strong,
.embark-stakeholder-card strong {
  width: max-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--reflect-navy);
  font-size: 12px;
  font-weight: 820;
  padding: 0 10px;
  text-transform: uppercase;
}

.embark-stakeholder-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.72fr);
  border-radius: 8px;
  background: var(--mint);
  overflow: hidden;
}

.embark-stakeholder-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.embark-stakeholder-card > div {
  padding: 24px;
}

.embark-stakeholder-card p {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
}

.embark-action-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.56fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.embark-action-grid > div:first-child p {
  margin-top: 22px;
}

.embark-action-panel {
  border-radius: 12px;
  background: var(--blue);
  padding: clamp(28px, 4vw, 46px);
}

.embark-action-panel h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.05;
}

.embark-action-panel p {
  margin-top: 14px;
}

.embark-readiness {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-top: 30px;
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
}

.embark-readiness span {
  color: var(--ink);
  font-size: 15px;
  font-weight: 760;
}

.embark-readiness strong {
  border-radius: 999px;
  background: var(--mint);
  color: var(--reflect-navy);
  font-size: 12px;
  padding: 6px 10px;
  text-transform: uppercase;
}

.embark-action-panel a {
  width: max-content;
  display: inline-flex;
  gap: 10px;
  margin-top: 22px;
  color: var(--reflect-navy);
  font-weight: 780;
}

.embark-effort {
  margin-top: clamp(54px, 7vw, 92px);
  border-radius: 12px;
  background: var(--cream);
  padding: clamp(32px, 5vw, 64px);
}

.embark-effort h2 {
  max-width: 780px;
}

.embark-effort p {
  max-width: 780px;
  margin-top: 18px;
}

.embark-proof {
  text-align: center;
}

.embark-quote-cloud {
  margin-bottom: clamp(62px, 7vw, 96px);
}

.embark-quote-cloud::before,
.embark-quote-cloud::after {
  content: none;
}

.embark-quote-cloud .reflect-quote-row span {
  background: #f7fbff;
}

.embark-quote-cloud .reflect-quote-row-primary span:nth-child(2),
.embark-quote-cloud .reflect-quote-row-secondary span:nth-child(1) {
  background: var(--mint);
}

.embark-quote-cloud .reflect-quote-row-primary span:nth-child(3),
.embark-quote-cloud .reflect-quote-row-secondary span:nth-child(2) {
  background: var(--cream);
}

.embark-quote-cloud .reflect-quote-row-secondary span:nth-child(3) {
  background: var(--lavender);
}

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

.embark-proof-heading p {
  margin-inline: auto;
}

.embark-outcome-grid {
  margin-top: clamp(34px, 4vw, 54px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  text-align: left;
}

.embark-outcome-grid h3 {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1.06;
  font-weight: 760;
}

.embark-use-grid {
  margin-top: clamp(34px, 4vw, 54px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.embark-use-grid article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.embark-faq {
  padding-top: clamp(84px, 9vw, 126px);
}

.embark-cta {
  margin-top: clamp(80px, 9vw, 124px);
}

@media (max-width: 1040px) {
  .embark-hero,
  .embark-problem,
  .embark-solution,
  .embark-journey,
  .embark-pillars,
  .embark-architecture,
  .embark-action,
  .embark-proof,
  .embark-use-cases {
    width: min(calc(100% - 48px), 1240px);
  }

  .embark-hero,
  .embark-problem-copy,
  .embark-solution-grid,
  .embark-architecture,
  .embark-action-grid {
    grid-template-columns: 1fr;
  }

  .embark-hero {
    min-height: auto;
  }

  .embark-hero-visual {
    min-height: 520px;
  }

  .embark-architecture-copy {
    position: static;
  }

  .embark-journey-track,
  .embark-outcome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .embark-hero,
  .embark-problem,
  .embark-solution,
  .embark-journey,
  .embark-pillars,
  .embark-architecture,
  .embark-action,
  .embark-proof,
  .embark-use-cases {
    width: min(calc(100% - 28px), 1240px);
  }

  .embark-hero h1,
  .embark-problem h2,
  .embark-solution h2,
  .embark-heading h2,
  .embark-architecture h2,
  .embark-action h2 {
    font-size: 38px;
    line-height: 1.03;
  }

  .embark-hero-visual {
    min-height: 430px;
    padding: 22px;
  }

  .embark-status-card {
    width: min(260px, 82%);
  }

  .embark-status-top {
    right: 14px;
    top: 22px;
  }

  .embark-status-bottom {
    left: 14px;
    bottom: 22px;
  }

  .embark-journey-track,
  .embark-pillar-grid,
  .embark-stakeholder-card,
  .embark-outcome-grid,
  .embark-use-grid {
    grid-template-columns: 1fr;
  }

  .embark-stakeholder-card img {
    min-height: 260px;
  }
}

/* Reflect taxonomy information card pass */
.reflect-taxonomy-section .reflect-driver-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.reflect-taxonomy-section .reflect-driver-card {
  min-height: 72px;
  display: flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  border-radius: 8px;
  background: var(--driver-bg, var(--mint));
  padding: 16px 18px;
}

.reflect-taxonomy-section .reflect-driver-card::before {
  content: none;
}

.reflect-taxonomy-section .reflect-driver-card > div {
  min-width: 0;
}

.reflect-taxonomy-section .reflect-driver-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(16px, 1.12vw, 19px);
  line-height: 1.16;
  font-weight: 780;
}

.reflect-taxonomy-section .reflect-driver-card p {
  display: none;
}

@media (max-width: 1040px) {
  .reflect-taxonomy-section .reflect-driver-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .reflect-taxonomy-section .reflect-driver-card {
    min-height: auto;
    padding: 15px 16px;
  }

}

/* Reflect clarity pass: stronger product story, same content */
.reflect-page {
  background: #ffffff;
}

.reflect-page main {
  background: #ffffff;
}

.reflect-hero,
.reflect-break,
.reflect-taxonomy-section,
.reflect-insight-section,
.reflect-movement,
.reflect-challenge-section {
  width: min(calc(100% - 128px), 1180px);
}

.reflect-hero {
  min-height: auto;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.86fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  justify-items: stretch;
  margin-top: 22px;
  border-radius: 10px;
  background: var(--mint);
  padding: clamp(38px, 5vw, 66px);
  text-align: left;
}

.reflect-hero-copy {
  max-width: 660px;
  justify-items: start;
}

.reflect-kicker {
  margin-bottom: 20px;
  border: 0;
  background: rgba(255, 255, 255, 0.78);
}

.reflect-hero h1 {
  max-width: 660px;
  color: var(--ink);
  font-family: var(--serif-fancy);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.98;
  font-weight: 400;
}

.reflect-hero h1 em {
  max-width: 620px;
  margin-top: 10px;
  color: #5f6872;
  font-family: var(--serif-fancy);
  font-size: 0.76em;
  font-style: italic;
  line-height: 1.05;
}

.reflect-hero p {
  max-width: 610px;
  margin-top: 24px;
  color: #3f4852;
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.48;
}

.reflect-actions {
  justify-content: flex-start;
  margin-top: 28px;
}

.reflect-hero-visual {
  width: 100%;
  min-height: 440px;
  margin-top: 0;
  border-radius: 10px;
  background: var(--blue);
  padding: clamp(16px, 2vw, 24px);
}

.reflect-hero-visual::before,
.reflect-hero-visual::after {
  content: none;
}

.reflect-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border-radius: 8px;
  background: #ffffff;
  mix-blend-mode: normal;
  object-fit: contain;
  padding: clamp(18px, 2vw, 28px);
}

.reflect-float {
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  padding: 13px 16px;
}

.reflect-float-top {
  right: 18px;
  top: 24px;
}

.reflect-float-bottom {
  width: min(360px, calc(100% - 36px));
  left: 18px;
  bottom: 18px;
  transform: none;
}

.reflect-break {
  padding-top: clamp(82px, 8vw, 118px);
}

.reflect-break-heading {
  max-width: 980px;
  margin: 0 0 32px;
  text-align: left;
}

.reflect-break-heading h2,
.reflect-movement-heading h2,
.reflect-proof-copy h2,
.reflect-insight-copy h2,
.reflect-action-copy h2 {
  font-family: var(--serif-fancy);
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1;
  font-weight: 400;
}

.reflect-break-heading h2 em {
  color: var(--accent-purple);
}

.reflect-fix-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.reflect-broken,
.reflect-fixed {
  min-height: 0;
  border-radius: 8px;
  padding: clamp(24px, 3vw, 38px);
}

.reflect-broken {
  background: var(--rose);
}

.reflect-fixed {
  background: #18212b;
  color: #ffffff;
}

.reflect-broken h3,
.reflect-fixed h3 {
  margin-bottom: 22px;
  font-family: var(--sans);
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.1;
  font-weight: 760;
}

.reflect-broken li,
.reflect-fixed li {
  min-height: 78px;
}

.reflect-broken strong,
.reflect-fixed strong {
  font-size: 16px;
}

.reflect-broken p,
.reflect-fixed p {
  font-size: 14.5px;
}

.reflect-fixed p {
  color: rgba(255, 255, 255, 0.72);
}

.reflect-core-badge {
  width: max-content;
  height: auto;
  top: -18px;
  border: 0;
  border-radius: 999px;
  background: var(--cream);
  color: var(--reflect-navy);
  padding: 10px 16px;
}

.reflect-core-badge strong {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 800;
}

.reflect-core-badge span {
  max-width: none;
  margin-top: 2px;
  color: #5f6872;
  font-size: 11px;
}

.reflect-proof-row {
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 20px;
  border-top: 0;
  border-radius: 8px;
  background: var(--blue);
  padding: 20px;
}

.reflect-proof-row p {
  max-width: 860px;
  font-size: clamp(18px, 1.35vw, 22px);
}

.reflect-sector-section {
  padding-top: clamp(82px, 8vw, 118px);
}

.reflect-taxonomy-section .reflect-sector-top {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) auto;
  gap: 22px;
  align-items: end;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
}

.reflect-taxonomy-section .reflect-sector-top h2 {
  max-width: 660px;
  margin: 0;
  font-family: var(--serif-fancy);
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1;
  font-weight: 400;
}

.reflect-taxonomy-section .reflect-sector-tabs {
  justify-self: end;
  border-radius: 999px;
  background: #f4f8fb;
  padding: 7px;
}

.reflect-taxonomy-section .reflect-sector-tab {
  min-width: 112px;
  min-height: 38px;
  border-radius: 999px;
  font-size: 13.5px;
}

.reflect-taxonomy-section .reflect-sector-panels {
  margin-top: 22px;
  border-radius: 10px;
  background: #f7fbff;
  padding: clamp(20px, 3vw, 34px);
}

.reflect-taxonomy-section .reflect-driver-heading {
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding-bottom: 20px;
}

.reflect-taxonomy-section .reflect-driver-heading p {
  max-width: 620px;
  justify-self: start;
  text-align: left;
  font-size: 16px;
}

.reflect-taxonomy-section .reflect-driver-grid {
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 10px;
}

.reflect-taxonomy-section .reflect-driver-card {
  min-height: 64px;
  border-radius: 8px;
  padding: 14px 16px;
}

.reflect-taxonomy-section .reflect-driver-card h3 {
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.18;
  font-weight: 760;
}

.reflect-insight-section {
  padding-top: clamp(86px, 9vw, 126px);
}

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

.reflect-dashboard-card,
.reflect-action-image,
.reflect-insight-copy,
.reflect-action-copy {
  min-height: clamp(360px, 32vw, 470px);
  border-radius: 8px;
  overflow: hidden;
}

.reflect-dashboard-card {
  background: var(--blue);
}

.reflect-action-image {
  background: var(--mint);
}

.reflect-dashboard-card > img,
.reflect-action-image > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border-radius: 0;
  object-fit: contain;
  padding: clamp(22px, 3vw, 38px);
}

.reflect-action-image > img {
  object-fit: cover;
  padding: 0;
}

.reflect-insight-copy,
.reflect-action-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
  padding: clamp(28px, 4vw, 48px);
}

.reflect-action-copy {
  background: var(--lavender);
}

.reflect-insight-copy > p,
.reflect-action-copy > p {
  max-width: 560px;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.48;
}

.reflect-insight-copy ul {
  margin-top: 22px;
  gap: 8px;
}

.reflect-insight-copy li {
  min-height: 40px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  padding: 10px 14px 10px 34px;
}

.reflect-proof-section {
  margin-top: clamp(82px, 8vw, 118px);
  background: #f7fbff;
  padding-top: clamp(58px, 6vw, 82px);
  padding-bottom: clamp(58px, 6vw, 82px);
}

.reflect-quote-cloud {
  margin-bottom: 50px;
}

.reflect-quote-row span {
  min-height: 52px;
  border: 0;
  background: #ffffff;
  font-size: clamp(16px, 1.25vw, 20px);
}

.reflect-proof-copy {
  width: min(calc(100% - 128px), 900px);
}

.reflect-movement {
  padding-top: clamp(84px, 8vw, 118px);
}

.reflect-movement-heading {
  max-width: 960px;
  margin: 0;
  text-align: left;
}

.reflect-movement-heading p {
  margin-left: 0;
}

.reflect-movement-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.reflect-movement-grid article {
  min-height: 230px;
  border-radius: 8px;
  background: var(--mint);
  padding: 24px;
  text-align: left;
}

.reflect-movement-grid article:nth-child(2) {
  background: var(--blue);
}

.reflect-movement-grid article:nth-child(3) {
  background: var(--lavender);
}

.reflect-movement-grid article:nth-child(4) {
  background: var(--cream);
}

.reflect-movement-grid article > span {
  width: 46px;
  height: 46px;
  margin: 0 0 24px;
  border: 0;
  background: rgba(255, 255, 255, 0.68);
}

.reflect-movement-grid h3 {
  font-size: 20px;
}

.reflect-movement-grid p {
  margin: 12px 0 0;
  font-size: 15.5px;
}

.reflect-challenge-section {
  padding-top: clamp(84px, 8vw, 118px);
}

.reflect-challenge-panel {
  min-height: 620px;
  border-radius: 8px;
}

.reflect-challenge-card {
  min-height: 108px;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 20px;
  border-radius: 8px;
  padding: 22px 24px;
}

.reflect-challenge-icon {
  display: none;
}

.reflect-challenge-card strong {
  font-size: clamp(20px, 1.55vw, 24px);
}

.reflect-challenge-card small {
  font-size: clamp(15.5px, 1.1vw, 17px);
}

@media (max-width: 1040px) {
  .reflect-hero,
  .reflect-break,
  .reflect-taxonomy-section,
  .reflect-insight-section,
  .reflect-movement,
  .reflect-challenge-section {
    width: min(calc(100% - 48px), 1180px);
  }

  .reflect-hero,
  .reflect-fix-board,
  .reflect-insight-grid,
  .reflect-challenge-layout {
    grid-template-columns: 1fr;
  }

  .reflect-taxonomy-section .reflect-sector-top,
  .reflect-taxonomy-section .reflect-driver-heading {
    grid-template-columns: 1fr;
  }

  .reflect-taxonomy-section .reflect-sector-tabs {
    justify-self: start;
  }

  .reflect-core-badge {
    position: static;
    transform: none;
    margin: 0 auto;
  }

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

@media (max-width: 720px) {
  .reflect-hero,
  .reflect-break,
  .reflect-taxonomy-section,
  .reflect-insight-section,
  .reflect-movement,
  .reflect-challenge-section {
    width: min(calc(100% - 28px), 1180px);
  }

  .reflect-hero {
    padding: 28px 18px;
  }

  .reflect-hero h1,
  .reflect-break-heading h2,
  .reflect-movement-heading h2,
  .reflect-proof-copy h2,
  .reflect-insight-copy h2,
  .reflect-action-copy h2 {
    font-size: 36px;
    line-height: 1.06;
  }

  .reflect-hero-visual {
    min-height: 340px;
  }

  .reflect-hero-visual img {
    min-height: 300px;
  }

  .reflect-float-top,
  .reflect-float-bottom {
    position: static;
    width: 100%;
    margin-top: 10px;
    transform: none;
  }

  .reflect-proof-row,
  .reflect-movement-grid {
    grid-template-columns: 1fr;
  }

  .reflect-taxonomy-section .reflect-sector-tabs {
    width: 100%;
    border-radius: 12px;
  }

  .reflect-taxonomy-section .reflect-sector-tab {
    min-width: 0;
    flex: 1 1 auto;
  }
}

/* ATP Consult page */
.consult-page {
  border-top-color: var(--accent-blue);
  background: var(--paper);
}

.reflect-page .main-nav a::after,
.embark-page .main-nav a::after,
.consult-page .main-nav a::after {
  content: none;
}

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

.consult-page .button-dark:hover {
  background: #101c69;
  border-color: #101c69;
}

.consult-page .button-outline {
  border-color: #d9e5ef;
  background: #ffffff;
  color: var(--reflect-navy);
}

.consult-page .button-outline:hover {
  border-color: var(--reflect-blue);
  background: #f7fbff;
}

.consult-hero,
.consult-reality,
.consult-enablers,
.consult-solutions,
.consult-model,
.consult-use,
.consult-proof {
  width: min(calc(100% - 150px), 1160px);
}

.consult-hero {
  min-height: clamp(420px, 50vh, 520px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  margin-top: 8px;
  border-radius: 12px;
  background: var(--mint);
  overflow: hidden;
  padding: 0;
  isolation: isolate;
}

.consult-hero::before {
  content: "";
  position: absolute;
  inset: 0 50% 0 0;
  z-index: 0;
  background: var(--blue);
}

.consult-hero::after {
  content: "";
  width: min(280px, 26vw);
  height: min(150px, 15vw);
  position: absolute;
  right: -7%;
  bottom: 7%;
  z-index: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  transform: rotate(-8deg);
}

.consult-hero-copy,
.consult-hero-visual {
  position: relative;
  z-index: 1;
}

.consult-kicker {
  width: max-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--rose);
  padding: 0 14px 0 12px;
}

.consult-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-purple);
}

.consult-kicker img {
  width: 96px;
  height: auto;
}

.consult-hero h1 {
  max-width: 460px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(36px, 3.6vw, 54px);
  line-height: 1.02;
  font-weight: 640;
}

.consult-hero h1 em {
  display: block;
  margin-top: 10px;
  color: #606872;
  font-style: italic;
}

.consult-hero p {
  max-width: 440px;
  margin-top: 18px;
  color: #303640;
  font-size: clamp(15.5px, 1.08vw, 17px);
  line-height: 1.48;
}

.consult-actions,
.consult-cta .dark-cta-copy div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.consult-hero-visual {
  min-height: 100%;
  position: relative;
  display: grid;
  align-items: end;
  justify-items: center;
  border-radius: 0;
  background: transparent;
  padding: clamp(20px, 3.4vw, 36px) clamp(16px, 2.8vw, 36px) 0;
}

.consult-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4.4vw, 48px) clamp(30px, 4.4vw, 58px);
}

.consult-hero-visual::before {
  content: "";
  width: min(360px, 28vw);
  height: min(360px, 28vw);
  position: absolute;
  left: -12%;
  top: -18%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}

.consult-hero-visual::after {
  content: "";
  width: min(210px, 18vw);
  height: min(210px, 18vw);
  position: absolute;
  right: 2%;
  top: 13%;
  z-index: -1;
  border-radius: 46% 54% 42% 58%;
  background: rgba(229, 244, 231, 0.58);
}

.consult-hero-visual img {
  width: min(500px, 94%);
  height: auto;
  min-height: 0;
  align-self: end;
  object-fit: contain;
}

.consult-roadmap-card {
  width: min(196px, 62%);
  position: absolute;
  left: clamp(18px, 3vw, 46px);
  bottom: clamp(16px, 2.8vw, 30px);
  border-radius: 8px;
  background: #ffffff;
  padding: 10px 12px;
}

.consult-roadmap-card span,
.consult-label,
.consult-model-grid span {
  display: block;
  color: var(--reflect-navy);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.consult-roadmap-card strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.12;
}

.consult-roadmap-card-secondary {
  left: auto;
  right: clamp(18px, 3vw, 42px);
  top: clamp(24px, 4vw, 56px);
  bottom: auto;
  background: var(--cream);
}

.consult-trusted {
  margin-top: 0;
}

.consult-reality {
  padding-top: clamp(82px, 8vw, 118px);
}

.consult-label {
  width: max-content;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--cream);
  padding: 9px 13px;
}

.consult-reality-grid,
.consult-solution-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.58fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: end;
}

.consult-reality h2,
.consult-heading h2,
.consult-solutions-panel h2,
.consult-proof-copy h2 {
  color: var(--ink);
  font-family: var(--serif-fancy);
  font-size: clamp(42px, 4.4vw, 64px);
  line-height: 1;
  font-weight: 400;
}

.consult-reality p,
.consult-heading p,
.consult-solutions-panel p,
.consult-proof-copy p {
  color: var(--muted);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.5;
}

.consult-enablers,
.consult-model,
.consult-use,
.consult-proof {
  padding-top: clamp(82px, 8vw, 124px);
}

.consult-heading {
  max-width: 920px;
}

.consult-heading p {
  max-width: 780px;
  margin-top: 20px;
}

.consult-enabler-grid,
.consult-model-grid {
  margin-top: clamp(34px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.consult-enabler-grid article,
.consult-model-grid article {
  min-height: 260px;
  border-radius: 8px;
  background: var(--mint);
  padding: clamp(22px, 2.4vw, 32px);
}

.consult-enabler-grid article:nth-child(2),
.consult-model-grid article:nth-child(2) {
  background: var(--blue);
}

.consult-enabler-grid article:nth-child(3),
.consult-model-grid article:nth-child(3) {
  background: var(--lavender);
}

.consult-enabler-grid article:nth-child(4),
.consult-model-grid article:nth-child(4) {
  background: var(--cream);
}

.consult-enabler-grid article > span {
  width: 56px;
  height: 56px;
  display: block;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
}

.consult-enabler-grid h3,
.consult-model-grid h3,
.consult-use-grid h3,
.consult-solution-list h3 {
  margin: 20px 0 0;
  color: var(--ink);
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.08;
  font-weight: 760;
}

.consult-enabler-grid p,
.consult-model-grid p,
.consult-use-grid p,
.consult-solution-list p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.42;
}

.consult-solutions {
  display: grid;
  grid-template-columns: minmax(380px, 0.62fr) minmax(0, 1fr);
  gap: clamp(28px, 4.6vw, 64px);
  align-items: start;
  padding-top: clamp(82px, 8vw, 124px);
}

.consult-solutions-panel {
  position: sticky;
  top: 92px;
  border-radius: 12px;
  background: var(--dark);
  color: #ffffff;
  padding: clamp(30px, 4vw, 48px);
}

.consult-solutions-panel h2 {
  color: #ffffff;
}

.consult-solutions-panel p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.consult-solutions-panel .button {
  margin-top: 28px;
}

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

.consult-solution-list a {
  min-height: 142px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 18px;
  align-items: center;
  border-radius: 8px;
  background: var(--blue);
  padding: clamp(22px, 2.6vw, 32px);
  text-decoration: none;
}

.consult-solution-list a:nth-child(2) {
  background: var(--mint);
}

.consult-solution-list a:nth-child(3) {
  background: var(--lavender);
}

.consult-solution-list a:nth-child(4) {
  background: var(--cream);
}

.consult-solution-list a:nth-child(5) {
  background: var(--rose);
}

.consult-solution-list a > span {
  justify-self: end;
  color: rgba(30, 34, 38, 0.48);
  font-size: 28px;
}

.consult-solution-list a:hover {
  transform: translateX(4px);
}

.consult-solution-list a:hover > span {
  color: var(--reflect-navy);
}

.consult-model-grid article {
  min-height: 220px;
}

.consult-model-grid span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  font-size: 16px;
}

.consult-use-grid {
  margin-top: clamp(34px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.consult-use-grid article {
  border-radius: 8px;
  background: #f7fbff;
  overflow: hidden;
}

.consult-use-grid article:nth-child(2) {
  background: var(--mint);
}

.consult-use-grid article:nth-child(3) {
  background: var(--cream);
}

.consult-use-grid img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
}

.consult-use-grid article > div {
  padding: clamp(22px, 2.6vw, 32px);
}

.consult-proof {
  text-align: center;
}

.consult-quote-cloud {
  margin-bottom: clamp(62px, 7vw, 92px);
}

.consult-quote-cloud::before,
.consult-quote-cloud::after {
  content: none;
}

.consult-quote-cloud .reflect-quote-row span {
  background: #f7fbff;
}

.consult-quote-cloud .reflect-quote-row-primary span:nth-child(2),
.consult-quote-cloud .reflect-quote-row-secondary span:nth-child(1) {
  background: var(--mint);
}

.consult-quote-cloud .reflect-quote-row-primary span:nth-child(3),
.consult-quote-cloud .reflect-quote-row-secondary span:nth-child(2) {
  background: var(--cream);
}

.consult-quote-cloud .reflect-quote-row-secondary span:nth-child(3) {
  background: var(--lavender);
}

.consult-proof-copy {
  max-width: 920px;
  margin-inline: auto;
}

.consult-proof-copy p {
  max-width: 760px;
  margin: 22px auto 0;
}

.consult-faq {
  padding-top: clamp(84px, 9vw, 126px);
}

.consult-cta {
  margin-top: clamp(80px, 9vw, 124px);
}

@media (max-width: 1040px) {
  .consult-hero,
  .consult-reality,
  .consult-enablers,
  .consult-solutions,
  .consult-model,
  .consult-use,
  .consult-proof {
    width: min(calc(100% - 48px), 1240px);
  }

  .consult-hero,
  .consult-reality-grid,
  .consult-solutions {
    grid-template-columns: 1fr;
  }

  .consult-hero {
    min-height: auto;
  }

  .consult-hero::before {
    inset: 0 0 48% 0;
  }

  .consult-hero-copy {
    padding: clamp(28px, 5vw, 48px);
  }

  .consult-hero-visual {
    min-height: 420px;
  }

  .consult-solutions-panel {
    position: static;
  }

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

@media (max-width: 720px) {
  .consult-hero,
  .consult-reality,
  .consult-enablers,
  .consult-solutions,
  .consult-model,
  .consult-use,
  .consult-proof {
    width: min(calc(100% - 28px), 1240px);
  }

  .consult-hero h1,
  .consult-reality h2,
  .consult-heading h2,
  .consult-solutions-panel h2,
  .consult-proof-copy h2 {
    font-size: 38px;
    line-height: 1.04;
  }

  .consult-hero-visual {
    min-height: 340px;
    padding: 18px 14px 0;
  }

  .consult-hero-visual img {
    width: min(340px, 92%);
    min-height: 0;
  }

  .consult-roadmap-card {
    left: 14px;
    bottom: 18px;
  }

  .consult-roadmap-card-secondary {
    right: 14px;
    top: 18px;
  }

  .consult-enabler-grid,
  .consult-model-grid,
  .consult-use-grid {
    grid-template-columns: 1fr;
  }

  .consult-solution-list a {
    grid-template-columns: minmax(0, 1fr) 24px;
  }
}

/* Consult cleanup pass: image-led, low-noise, no coded decoration */
.consult-page {
  background: #ffffff;
}

.consult-page main {
  background: #ffffff;
}

.consult-hero,
.consult-reality,
.consult-enablers,
.consult-solutions,
.consult-model,
.consult-use,
.consult-proof {
  width: min(calc(100% - 128px), 1180px);
}

.consult-hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.9fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  margin-top: clamp(24px, 4vw, 46px);
  border-radius: 0;
  background: transparent;
  overflow: visible;
  padding: 0;
}

.consult-hero::before,
.consult-hero::after,
.consult-hero-visual::before,
.consult-hero-visual::after {
  content: none;
}

.consult-hero-copy {
  padding: 0;
}

.consult-kicker {
  min-height: 32px;
  margin-bottom: 20px;
  background: var(--blue);
}

.consult-kicker img {
  width: 106px;
}

.consult-hero h1 {
  max-width: 610px;
  font-family: var(--serif-fancy);
  font-size: clamp(50px, 5vw, 76px);
  line-height: 0.98;
  font-weight: 400;
}

.consult-hero h1 em {
  max-width: 560px;
  margin-top: 10px;
  color: #5f6872;
  font-family: var(--serif-fancy);
  font-size: 0.72em;
  line-height: 1.04;
}

.consult-hero p {
  max-width: 560px;
  margin-top: 24px;
  color: #3f4852;
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.5;
}

.consult-actions,
.consult-cta .dark-cta-copy div {
  margin-top: 30px;
}

.consult-hero-visual {
  --consult-visual-pad: clamp(22px, 3vw, 38px);
  min-height: 500px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: end;
  border-radius: 8px;
  background: var(--blue);
  padding: var(--consult-visual-pad) var(--consult-visual-pad) 0;
}

.consult-hero-visual img {
  width: min(560px, 100%);
  justify-self: center;
  align-self: end;
}

.consult-hero-notes {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8px;
  margin: 0 calc(0px - var(--consult-visual-pad));
  background: rgba(255, 255, 255, 0.82);
  padding: 12px;
}

.consult-hero-notes div {
  min-height: 74px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 8px;
  background: #ffffff;
  padding: 12px 14px;
}

.consult-hero-notes span {
  color: var(--reflect-navy);
  font-size: 11px;
  line-height: 1.15;
  font-weight: 820;
  text-transform: uppercase;
}

.consult-hero-notes strong {
  margin-top: 6px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.15;
}

.consult-roadmap-card {
  display: none;
}

.consult-reality {
  padding-top: clamp(86px, 8vw, 120px);
}

.consult-label {
  margin-bottom: 24px;
  background: var(--cream);
}

.consult-reality-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.consult-reality h2,
.consult-heading h2,
.consult-solutions-panel h2,
.consult-proof-copy h2 {
  font-family: var(--serif-fancy);
  font-size: clamp(40px, 4.3vw, 64px);
  line-height: 1;
  font-weight: 400;
}

.consult-reality p,
.consult-heading p,
.consult-solutions-panel p,
.consult-proof-copy p {
  color: #59636f;
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.5;
}

.consult-reality-image {
  grid-column: 1 / -1;
  margin-top: 4px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--mint);
}

.consult-reality-image img {
  width: 100%;
  height: clamp(260px, 32vw, 420px);
  display: block;
  object-fit: cover;
}

.consult-enablers,
.consult-model,
.consult-use,
.consult-proof {
  padding-top: clamp(86px, 8vw, 124px);
}

.consult-heading {
  max-width: 900px;
}

.consult-enabler-grid,
.consult-model-grid {
  gap: 10px;
}

.consult-enabler-grid article,
.consult-model-grid article {
  min-height: 190px;
  border-radius: 8px;
  padding: clamp(22px, 2.5vw, 34px);
}

.consult-enabler-grid article > span {
  display: none;
}

.consult-enabler-grid h3,
.consult-model-grid h3,
.consult-use-grid h3,
.consult-solution-list h3 {
  margin-top: 0;
  font-size: clamp(21px, 1.7vw, 28px);
  line-height: 1.1;
}

.consult-enabler-grid p,
.consult-model-grid p,
.consult-use-grid p,
.consult-solution-list p {
  font-size: 15.5px;
}

.consult-solutions {
  grid-template-columns: minmax(330px, 0.48fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  padding-top: clamp(86px, 8vw, 124px);
}

.consult-solutions-panel {
  border-radius: 8px;
  background: #17202b;
  padding: clamp(28px, 4vw, 46px);
}

.consult-solutions-panel .button-light {
  background: #ffffff;
  color: var(--reflect-navy);
}

.consult-solution-list {
  gap: 10px;
}

.consult-solution-list a {
  min-height: 112px;
  border-radius: 8px;
  padding: clamp(20px, 2.4vw, 30px);
}

.consult-solution-list a:hover {
  transform: none;
}

.consult-model-grid article {
  min-height: 170px;
}

.consult-model-grid span {
  width: max-content;
  height: auto;
  display: inline-flex;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 7px 11px;
}

.consult-use-grid {
  gap: 12px;
}

.consult-use-grid article {
  border-radius: 8px;
  background: #f7fbff;
}

.consult-use-grid img {
  aspect-ratio: 1.38;
}

.consult-proof {
  text-align: left;
}

.consult-quote-cloud {
  margin-bottom: clamp(46px, 6vw, 72px);
}

.consult-quote-cloud .reflect-quote-row {
  justify-content: flex-start;
}

.consult-quote-cloud .reflect-quote-row span {
  background: #f7fbff;
}

.consult-proof-copy {
  margin-inline: 0;
  text-align: left;
}

.consult-proof-copy p {
  margin-left: 0;
}

.consult-faq {
  padding-top: clamp(86px, 8vw, 124px);
}

.dark-cta.consult-cta {
  background: #17202b;
}

.consult-cta .dark-pattern {
  display: none;
}

@media (max-width: 1040px) {
  .consult-hero,
  .consult-reality,
  .consult-enablers,
  .consult-solutions,
  .consult-model,
  .consult-use,
  .consult-proof {
    width: min(calc(100% - 48px), 1180px);
  }

  .consult-hero,
  .consult-reality-grid,
  .consult-solutions {
    grid-template-columns: 1fr;
  }

  .consult-hero-visual {
    min-height: 440px;
  }

  .consult-solutions-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .consult-hero,
  .consult-reality,
  .consult-enablers,
  .consult-solutions,
  .consult-model,
  .consult-use,
  .consult-proof {
    width: min(calc(100% - 28px), 1180px);
  }

  .consult-hero h1,
  .consult-reality h2,
  .consult-heading h2,
  .consult-solutions-panel h2,
  .consult-proof-copy h2 {
    font-size: 36px;
    line-height: 1.05;
  }

  .consult-hero-visual {
    min-height: 360px;
    padding: 18px 18px 0;
  }

  .consult-hero-notes {
    grid-template-columns: 1fr;
    margin-inline: -18px;
  }

  .consult-enabler-grid,
  .consult-model-grid,
  .consult-use-grid {
    grid-template-columns: 1fr;
  }
}

/* Consult agency visual pass: same copy, stronger image-led system */
body.consult-page {
  border-top-color: var(--accent-blue);
  background: #ffffff;
}

.consult-page * {
  box-shadow: none !important;
}

.consult-hero,
.consult-reality,
.consult-enablers,
.consult-solutions,
.consult-model,
.consult-use,
.consult-proof {
  width: min(calc(100% - 96px), 1240px);
}

.consult-hero {
  grid-template-columns: minmax(500px, 1.02fr) minmax(0, 0.88fr);
  gap: clamp(44px, 6vw, 88px);
  align-items: stretch;
}

.consult-hero-copy {
  align-self: center;
}

.consult-hero h1 {
  max-width: 680px;
  font-family: var(--sans);
  font-size: clamp(54px, 5.2vw, 82px);
  line-height: 0.94;
  font-weight: 820;
}

.consult-hero h1 em {
  max-width: 590px;
  color: #5d6670;
  font-family: var(--serif-fancy);
  font-size: 0.58em;
  line-height: 1.05;
  font-weight: 400;
}

.consult-hero p {
  max-width: 600px;
}

.consult-hero-visual {
  order: -1;
  min-height: 626px;
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--blue);
  padding: 0;
}

.consult-hero-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
}

.consult-hero-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.consult-hero-photo-primary {
  left: 2%;
  bottom: 0;
  z-index: 3;
  width: 68%;
  height: 72%;
  border-radius: 0;
  background: transparent;
}

.consult-hero-photo-primary img {
  object-fit: contain;
  object-position: center bottom;
}

.consult-hero-photo-secondary {
  top: clamp(22px, 3vw, 36px);
  right: clamp(22px, 3vw, 36px);
  z-index: 1;
  width: 48%;
  height: 38%;
}

.consult-hero-photo-tertiary {
  right: clamp(22px, 3vw, 36px);
  bottom: 126px;
  z-index: 2;
  width: 50%;
  height: 28%;
}

.consult-hero-notes {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 4;
  margin: 0;
  background: transparent;
  padding: 0;
}

.consult-hero-notes div {
  min-height: 78px;
}

.consult-reality-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  align-items: stretch;
}

.consult-reality-image {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin-top: 0;
}

.consult-reality-image img {
  height: 100%;
  min-height: 420px;
}

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

.consult-enabler-grid article {
  min-height: 0;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  padding: 0;
}

.consult-card-image {
  width: 100%;
  height: 184px;
  display: block;
  object-fit: cover;
}

.consult-enabler-grid h3 {
  margin: 0;
  padding: 24px 24px 0;
}

.consult-enabler-grid p {
  margin: 0;
  padding: 12px 24px 28px;
}

.consult-solutions {
  grid-template-columns: minmax(360px, 0.48fr) minmax(0, 1fr);
}

.consult-solutions-panel {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.consult-solution-list {
  gap: 14px;
}

.consult-solution-list a {
  min-height: 132px;
  grid-template-columns: 132px minmax(0, 1fr) 28px;
  gap: 22px;
  padding: 14px 24px 14px 14px;
}

.consult-solution-thumb {
  width: 132px;
  height: 104px;
  display: block;
  justify-self: auto;
  overflow: hidden;
  border-radius: 8px;
  color: inherit;
  font-size: inherit;
}

.consult-solution-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.consult-solution-list a > span:not(.consult-solution-thumb) {
  justify-self: end;
  color: rgba(30, 34, 38, 0.48);
  font-size: 28px;
}

.consult-solution-list a:hover > span:not(.consult-solution-thumb) {
  color: var(--reflect-navy);
}

.consult-model-grid article {
  min-height: 238px;
  position: relative;
  overflow: hidden;
  padding-bottom: 112px;
}

.consult-model-grid article::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 86px;
  background-position: center;
  background-size: cover;
  opacity: 0.62;
}

.consult-model-grid article:nth-child(1)::after {
  background-image: url("assets/workshop-wide.jpg");
}

.consult-model-grid article:nth-child(2)::after {
  background-image: url("assets/office-win.jpg");
}

.consult-model-grid article:nth-child(3)::after {
  background-image: url("assets/sticky-workshop.png");
}

.consult-model-grid article:nth-child(4)::after {
  background-image: url("assets/news-team.png");
}

.consult-proof {
  display: grid;
  grid-template-columns: minmax(420px, 0.7fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: center;
}

.consult-proof-media {
  grid-row: 1 / span 2;
  min-height: 420px;
  display: flex;
  align-items: end;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
}

.consult-proof-media img {
  width: min(94%, 520px);
  margin-top: 28px;
}

.consult-quote-cloud {
  margin-bottom: clamp(28px, 4vw, 48px);
}

.consult-proof-copy {
  max-width: 680px;
}

.dark-cta.consult-cta {
  width: min(calc(100% - 96px), 1240px);
}

@media (max-width: 1100px) {
  .consult-hero,
  .consult-reality-grid,
  .consult-solutions,
  .consult-proof {
    grid-template-columns: 1fr;
  }

  .consult-hero-visual {
    order: 0;
  }

  .consult-reality-image,
  .consult-proof-media {
    grid-column: auto;
    grid-row: auto;
  }

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

@media (max-width: 760px) {
  .consult-hero,
  .consult-reality,
  .consult-enablers,
  .consult-solutions,
  .consult-model,
  .consult-use,
  .consult-proof,
  .dark-cta.consult-cta {
    width: min(calc(100% - 28px), 1240px);
  }

  .consult-hero h1 {
    font-size: 42px;
    line-height: 0.98;
  }

  .consult-hero-visual {
    min-height: 520px;
  }

  .consult-hero-photo-primary {
    width: 84%;
    height: 58%;
  }

  .consult-hero-photo-secondary {
    width: calc(100% - 32px);
    height: 30%;
    right: 16px;
    left: 16px;
  }

  .consult-hero-photo-tertiary {
    display: none;
  }

  .consult-hero-notes {
    grid-template-columns: 1fr;
  }

  .consult-enabler-grid,
  .consult-model-grid {
    grid-template-columns: 1fr;
  }

  .consult-solution-list a {
    grid-template-columns: 1fr 24px;
  }

  .consult-solution-thumb {
    width: 100%;
    height: 164px;
    grid-column: 1 / -1;
  }
}

/* Reflect agency visual pass: same copy, image-led and human */
body.reflect-page {
  border-top-color: var(--accent-blue);
  background: #ffffff;
}

.reflect-page * {
  box-shadow: none !important;
}

.reflect-hero,
.reflect-break,
.reflect-taxonomy-section,
.reflect-insight-section,
.reflect-movement,
.reflect-challenge-section {
  width: min(calc(100% - 96px), 1240px);
}

.reflect-hero {
  grid-template-columns: minmax(500px, 0.94fr) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 86px);
  align-items: stretch;
  border-radius: 8px;
  background: #ffffff;
  padding: clamp(18px, 3vw, 34px) 0 clamp(42px, 5vw, 68px);
}

.reflect-hero h1 {
  max-width: 700px;
  font-family: var(--sans);
  font-size: clamp(54px, 5.2vw, 84px);
  line-height: 0.94;
  font-weight: 820;
}

.reflect-hero h1 em {
  max-width: 620px;
  color: #5d6670;
  font-family: var(--serif-fancy);
  font-size: 0.58em;
  line-height: 1.05;
  font-weight: 400;
}

.reflect-hero p {
  max-width: 620px;
}

.reflect-hero-visual {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mint);
  padding: 0;
}

.reflect-hero-photo,
.reflect-hero-dashboard {
  position: absolute;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
}

.reflect-hero-photo img,
.reflect-hero-dashboard img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 0;
  object-fit: cover;
  padding: 0;
}

.reflect-hero-photo-main {
  top: 28px;
  right: 28px;
  left: 28px;
  height: 54%;
}

.reflect-hero-photo-secondary {
  right: 28px;
  bottom: 28px;
  width: 48%;
  height: 28%;
}

.reflect-hero-dashboard {
  left: 28px;
  bottom: 28px;
  z-index: 2;
  width: 46%;
  height: 30%;
}

.reflect-hero-dashboard img {
  object-fit: contain;
  background: #ffffff;
  padding: 22px;
}

.reflect-float {
  z-index: 4;
}

.reflect-float-top {
  top: 34px;
  right: 34px;
}

.reflect-float-bottom {
  left: 34px;
  bottom: 34px;
}

.reflect-break {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  padding-top: clamp(92px, 9vw, 132px);
}

.reflect-break-heading {
  margin: 0;
}

.reflect-problem-image {
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--blue);
}

.reflect-problem-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
}

.reflect-fix-board,
.reflect-proof-row {
  grid-column: 1 / -1;
}

.reflect-fix-board {
  margin-top: 8px;
}

.reflect-broken,
.reflect-fixed {
  padding: clamp(26px, 3vw, 42px);
}

.reflect-core-badge {
  top: 50%;
  transform: translate(-50%, -50%);
}

.reflect-taxonomy-section {
  padding-top: clamp(92px, 9vw, 132px);
}

.reflect-taxonomy-section .reflect-sector-top {
  grid-template-columns: minmax(0, 0.88fr) auto;
}

.reflect-taxonomy-section .reflect-sector-panels {
  background: transparent;
  padding: 0;
}

.reflect-taxonomy-section .reflect-driver-panel.is-active {
  display: grid;
  grid-template-columns: minmax(340px, 0.54fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: stretch;
  border-radius: 8px;
  background: var(--surface);
  padding: clamp(20px, 3vw, 34px);
}

.reflect-taxonomy-section .reflect-driver-heading {
  display: block;
  padding: 0;
}

.reflect-taxonomy-section .reflect-driver-heading span {
  display: block;
  margin-bottom: 16px;
  color: var(--reflect-navy);
  font-size: 13px;
  font-weight: 860;
  text-transform: uppercase;
}

.reflect-taxonomy-section .reflect-driver-heading p {
  max-width: 360px;
  font-size: 17px;
  line-height: 1.45;
}

.reflect-driver-visual {
  min-height: 280px;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
}

.reflect-driver-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: block;
  object-fit: cover;
}

.reflect-taxonomy-section .reflect-driver-grid {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: stretch;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.reflect-taxonomy-section .reflect-driver-card {
  min-height: 86px;
  display: flex;
  align-items: end;
  background: #ffffff;
  padding: 18px;
}

.reflect-taxonomy-section .reflect-driver-card h3 {
  font-size: clamp(16px, 1.05vw, 18px);
}

.reflect-insight-section {
  width: min(calc(100% - 96px), 1240px);
  padding-top: clamp(92px, 9vw, 132px);
}

.reflect-insight-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: 16px;
}

.reflect-dashboard-card,
.reflect-action-image,
.reflect-insight-copy,
.reflect-action-copy {
  min-height: clamp(380px, 34vw, 500px);
}

.reflect-dashboard-card {
  background: var(--blue);
}

.reflect-dashboard-card > img {
  object-fit: contain;
  padding: clamp(26px, 4vw, 54px);
}

.reflect-action-image > img {
  object-fit: cover;
}

.reflect-insight-copy,
.reflect-action-copy {
  background: #ffffff;
  border: 0;
  outline: 0;
}

.reflect-insight-copy {
  background: var(--cream);
}

.reflect-action-copy {
  background: var(--lavender);
}

.reflect-proof-section {
  width: min(calc(100% - 96px), 1240px);
  display: grid;
  grid-template-columns: minmax(380px, 0.62fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 74px);
  align-items: center;
  background: #ffffff;
  padding-top: clamp(92px, 9vw, 132px);
  padding-bottom: 0;
}

.reflect-proof-media {
  grid-row: 1 / span 2;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mint);
}

.reflect-proof-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}

.reflect-quote-cloud {
  margin-bottom: 26px;
}

.reflect-quote-row {
  justify-content: flex-start;
}

.reflect-quote-row span {
  background: var(--surface);
}

.reflect-proof-copy {
  width: auto;
  max-width: 720px;
  margin: 0;
  text-align: left;
}

.reflect-movement-grid article {
  overflow: hidden;
  padding: 0;
}

.reflect-movement-image {
  width: 100%;
  height: 156px;
  display: block;
  object-fit: cover;
}

.reflect-movement-grid article > span {
  display: none;
}

.reflect-movement-grid h3 {
  margin: 24px 24px 0;
}

.reflect-movement-grid p {
  margin: 12px 24px 28px;
}

.reflect-challenge-layout {
  grid-template-columns: minmax(360px, 0.46fr) minmax(0, 1fr);
}

.reflect-challenge-panel {
  min-height: 660px;
}

.reflect-challenge-card {
  min-height: 126px;
  background: var(--mint);
}

.reflect-challenge-card:nth-child(2) {
  background: var(--lavender);
}

.reflect-challenge-card:nth-child(3) {
  background: var(--blue);
}

.reflect-challenge-card:nth-child(4) {
  background: var(--cream);
}

.reflect-challenge-card:nth-child(5) {
  background: var(--rose);
}

.reflect-challenge-card:nth-child(6) {
  background: var(--coral);
}

.reflect-cta .dark-pattern {
  display: none;
}

@media (max-width: 1100px) {
  .reflect-hero,
  .reflect-break,
  .reflect-taxonomy-section .reflect-driver-panel.is-active,
  .reflect-insight-grid,
  .reflect-proof-section,
  .reflect-challenge-layout {
    grid-template-columns: 1fr;
  }

  .reflect-taxonomy-section .reflect-driver-grid {
    grid-column: auto;
    grid-row: auto;
  }

  .reflect-proof-media {
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .reflect-hero,
  .reflect-break,
  .reflect-taxonomy-section,
  .reflect-insight-section,
  .reflect-movement,
  .reflect-challenge-section,
  .reflect-proof-section {
    width: min(calc(100% - 28px), 1240px);
  }

  .reflect-hero {
    padding-top: 12px;
  }

  .reflect-hero h1 {
    font-size: 42px;
    line-height: 0.98;
  }

  .reflect-hero-visual {
    min-height: 520px;
  }

  .reflect-hero-photo-main {
    right: 18px;
    left: 18px;
  }

  .reflect-hero-photo-secondary,
  .reflect-hero-dashboard {
    right: 18px;
    left: 18px;
    width: auto;
  }

  .reflect-hero-photo-secondary {
    display: none;
  }

  .reflect-hero-dashboard {
    height: 32%;
  }

  .reflect-core-badge {
    position: static;
    transform: none;
  }

  .reflect-proof-row {
    grid-template-columns: 1fr;
  }

  .reflect-movement-grid {
    grid-template-columns: 1fr;
  }
}

/* Embark agency visual pass: same copy, image-led and less coded */
body.embark-page {
  border-top-color: var(--accent-blue);
  background: #ffffff;
}

.embark-page * {
  box-shadow: none !important;
}

.embark-hero,
.embark-problem,
.embark-solution,
.embark-journey,
.embark-pillars,
.embark-architecture,
.embark-action,
.embark-proof,
.embark-use-cases {
  width: min(calc(100% - 96px), 1240px);
}

.embark-hero {
  min-height: auto;
  grid-template-columns: minmax(500px, 0.94fr) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 88px);
  align-items: stretch;
  padding-top: clamp(30px, 4vw, 52px);
  padding-bottom: clamp(72px, 8vw, 116px);
}

.embark-hero h1 {
  max-width: 710px;
  font-family: var(--sans);
  font-size: clamp(54px, 5.2vw, 84px);
  line-height: 0.94;
  font-weight: 820;
}

.embark-hero h1 em {
  color: #5d6670;
  font-family: var(--serif-fancy);
  font-size: 0.66em;
  line-height: 1.05;
  font-weight: 400;
}

.embark-hero-visual {
  min-height: 620px;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
  padding: 0;
}

.embark-hero-visual::before,
.embark-hero-visual::after {
  content: none;
}

.embark-hero-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
}

.embark-hero-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.embark-hero-photo-main {
  top: 28px;
  right: 28px;
  left: 28px;
  height: 52%;
}

.embark-hero-photo-secondary {
  left: 28px;
  bottom: 28px;
  width: 46%;
  height: 31%;
}

.embark-hero-photo-tertiary {
  right: 28px;
  bottom: 28px;
  width: 48%;
  height: 31%;
}

.embark-status-card {
  z-index: 4;
}

.embark-status-top {
  top: 42px;
  right: 42px;
}

.embark-status-bottom {
  left: 42px;
  bottom: 42px;
}

.embark-problem-copy {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.72fr);
  align-items: stretch;
  background: #1f1e1b;
}

.embark-problem-image {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
}

.embark-problem-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
}

.embark-solution-grid {
  grid-template-columns: minmax(0, 0.72fr) minmax(380px, 0.82fr);
  align-items: stretch;
}

.embark-solution-image {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mint);
}

.embark-solution-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
}

.embark-journey-image {
  margin-top: clamp(30px, 4vw, 52px);
  overflow: hidden;
  border-radius: 8px;
  background: var(--blue);
}

.embark-journey-image img {
  width: 100%;
  height: clamp(280px, 32vw, 430px);
  display: block;
  object-fit: cover;
  object-position: center;
}

.embark-journey-track {
  margin-top: 12px;
}

.embark-pillar-grid article {
  overflow: hidden;
  padding: 0;
}

.embark-pillar-image {
  width: 100%;
  height: 210px;
  display: block;
  object-fit: cover;
}

.embark-pillar-grid article:nth-child(3) .embark-pillar-image {
  object-fit: contain;
  background: #ffffff;
  padding: 28px;
}

.embark-pillar-grid span {
  display: none;
}

.embark-pillar-grid h3 {
  margin: 26px 26px 0;
}

.embark-pillar-grid p {
  margin: 12px 26px 30px;
}

.embark-architecture {
  grid-template-columns: minmax(360px, 0.5fr) minmax(0, 1fr);
}

.embark-stakeholder-card {
  grid-template-columns: minmax(0, 0.78fr) minmax(230px, 0.62fr);
}

.embark-action-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.58fr);
  grid-template-areas:
    "copy image"
    "panel image";
  align-items: stretch;
}

.embark-action-grid > div:first-child {
  grid-area: copy;
}

.embark-action-panel {
  grid-area: panel;
  border-radius: 8px;
}

.embark-action-image {
  grid-area: image;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mint);
}

.embark-action-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
}

.embark-effort {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  border-radius: 8px;
}

.embark-proof {
  display: grid;
  grid-template-columns: minmax(380px, 0.62fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 74px);
  align-items: center;
  text-align: left;
}

.embark-proof-media {
  grid-row: 1 / span 3;
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--blue);
}

.embark-proof-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
}

.embark-quote-cloud {
  margin-bottom: 0;
}

.embark-quote-cloud .reflect-quote-row {
  justify-content: flex-start;
}

.embark-proof-heading {
  margin-inline: 0;
  text-align: left;
}

.embark-proof-heading p {
  margin-inline: 0;
}

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

.embark-use-grid article {
  min-height: 0;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
}

.embark-use-image {
  width: 100%;
  height: 240px;
  display: block;
  object-fit: cover;
}

.embark-use-grid h3 {
  margin: 26px 26px 0;
}

.embark-use-grid p {
  margin: 12px 26px 30px;
}

.embark-cta .dark-pattern {
  display: none;
}

@media (max-width: 1100px) {
  .embark-hero,
  .embark-problem-copy,
  .embark-solution-grid,
  .embark-architecture,
  .embark-action-grid,
  .embark-effort,
  .embark-proof {
    grid-template-columns: 1fr;
  }

  .embark-problem-image,
  .embark-solution-image,
  .embark-proof-media {
    grid-column: auto;
    grid-row: auto;
  }

  .embark-action-grid {
    grid-template-areas:
      "copy"
      "image"
      "panel";
  }

  .embark-action-image,
  .embark-action-image img,
  .embark-proof-media,
  .embark-proof-media img {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .embark-hero,
  .embark-problem,
  .embark-solution,
  .embark-journey,
  .embark-pillars,
  .embark-architecture,
  .embark-action,
  .embark-proof,
  .embark-use-cases {
    width: min(calc(100% - 28px), 1240px);
  }

  .embark-hero h1 {
    font-size: 42px;
    line-height: 0.98;
  }

  .embark-hero-visual {
    min-height: 520px;
  }

  .embark-hero-photo-main {
    right: 18px;
    left: 18px;
  }

  .embark-hero-photo-secondary {
    display: none;
  }

  .embark-hero-photo-tertiary {
    right: 18px;
    left: 18px;
    width: auto;
    height: 30%;
  }

  .embark-status-top {
    right: 18px;
    top: 26px;
  }

  .embark-status-bottom {
    left: 18px;
    bottom: 26px;
  }

  .embark-pillar-grid,
  .embark-journey-track,
  .embark-outcome-grid,
  .embark-use-grid {
    grid-template-columns: 1fr;
  }
}

/* Reflect premium photo-led pass */
body.reflect-page {
  background: #ffffff;
}

.reflect-page main {
  overflow: visible;
}

.reflect-page .site-header,
.reflect-hero,
.reflect-break,
.reflect-taxonomy-section,
.reflect-insight-section,
.reflect-proof-section,
.reflect-movement,
.reflect-challenge-section,
.reflect-page .dark-cta,
.reflect-page .site-footer {
  width: min(calc(100% - 112px), 1320px);
}

.reflect-page .button {
  min-height: 50px;
  border-radius: 8px;
  padding-inline: 22px;
  font-size: 15px;
  font-weight: 780;
}

.reflect-hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(430px, 0.82fr) minmax(560px, 1fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
  padding: clamp(56px, 7vw, 96px) 0 clamp(54px, 6vw, 86px);
  background: transparent;
}

.reflect-hero-copy {
  padding: 0;
}

.reflect-kicker {
  width: fit-content;
  border: 0;
  background: var(--mint);
}

.reflect-hero h1 {
  max-width: 680px;
  margin: 18px 0 24px;
  font-family: var(--sans);
  font-size: clamp(54px, 5.8vw, 88px);
  line-height: 0.94;
  font-weight: 780;
}

.reflect-hero h1 em {
  display: block;
  max-width: 590px;
  margin-top: 10px;
  color: #65717e;
  font-family: var(--serif-fancy);
  font-size: 0.58em;
  line-height: 1.05;
  font-weight: 400;
}

.reflect-hero p {
  max-width: 620px;
  color: #4e5965;
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.48;
}

.reflect-actions {
  margin-top: 32px;
}

.reflect-hero-visual {
  min-height: clamp(560px, 52vw, 710px);
  border-radius: 8px;
  overflow: hidden;
  background: var(--blue);
  isolation: isolate;
}

.reflect-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(7, 20, 93, 0.02), rgba(7, 20, 93, 0.22));
  pointer-events: none;
}

.reflect-hero-visual::after {
  content: "";
  position: absolute;
  right: -13%;
  bottom: -20%;
  z-index: 3;
  width: 54%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(216, 233, 248, 0.72);
  mix-blend-mode: screen;
  pointer-events: none;
}

.reflect-hero-photo-main {
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 8px;
}

.reflect-hero-photo-main img {
  object-fit: cover;
  object-position: center;
}

.reflect-hero-photo-secondary,
.reflect-hero-dashboard {
  display: none;
}

.reflect-float {
  z-index: 5;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  color: var(--ink);
}

.reflect-float-top {
  top: 34px;
  right: 34px;
}

.reflect-float-bottom {
  left: 34px;
  bottom: 34px;
}

.reflect-break {
  display: block;
  padding-top: clamp(76px, 8vw, 116px);
  background: transparent;
}

.reflect-break-heading {
  max-width: 1060px;
  margin: 0 auto 36px;
  text-align: center;
}

.reflect-break-heading h2 {
  font-family: var(--sans);
  font-size: clamp(44px, 4.8vw, 76px);
  font-style: normal;
  font-weight: 780;
  line-height: 0.98;
}

.reflect-break-heading h2 em {
  color: #f15d3b;
  font-family: var(--serif-fancy);
  font-style: italic;
  font-weight: 400;
}

.reflect-problem-image {
  height: clamp(320px, 34vw, 480px);
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--cream);
}

.reflect-problem-image img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 44%;
}

.reflect-fix-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 0;
  padding: 0;
  background: transparent;
}

.reflect-broken,
.reflect-fixed {
  min-height: 540px;
  border-radius: 8px;
  padding: clamp(32px, 4vw, 56px);
}

.reflect-broken {
  background: var(--cream);
}

.reflect-fixed {
  background: #1f1e1b;
  color: #ffffff;
}

.reflect-broken h3,
.reflect-fixed h3 {
  font-family: var(--serif);
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 500;
}

.reflect-fixed h3 {
  color: #ffffff;
}

.reflect-fixed strong,
.reflect-fixed p {
  color: #ffffff;
}

.reflect-broken li,
.reflect-fixed li {
  min-height: 86px;
}

.reflect-core-badge {
  width: 132px;
  height: 132px;
  background: #ffffff;
  color: var(--reflect-navy);
}

.reflect-proof-row {
  margin-top: 18px;
  border-radius: 8px;
  background: #f7fbff;
  padding: clamp(22px, 3vw, 32px);
}

.reflect-proof-row p {
  font-family: var(--sans);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.14;
  font-weight: 760;
}

.reflect-taxonomy-section {
  padding-top: clamp(82px, 8vw, 124px);
  background: transparent;
}

.reflect-taxonomy-section::before {
  content: none;
}

.reflect-taxonomy-section .reflect-sector-top {
  grid-template-columns: minmax(0, 0.9fr) auto;
  align-items: end;
  margin-bottom: 30px;
}

.reflect-taxonomy-section .reflect-sector-top h2 {
  max-width: 760px;
  font-size: clamp(46px, 4.8vw, 74px);
  line-height: 0.98;
}

.reflect-taxonomy-section .reflect-sector-tab {
  border: 0;
  border-radius: 999px;
  background: #f7fbff;
}

.reflect-taxonomy-section .reflect-sector-tab.is-active {
  background: var(--reflect-navy);
  color: #ffffff;
}

.reflect-taxonomy-section .reflect-driver-panel.is-active {
  grid-template-columns: minmax(320px, 0.44fr) minmax(0, 1fr);
  grid-template-areas:
    "intro grid"
    "image grid";
  gap: 18px;
  padding: 0;
  background: transparent;
}

.reflect-taxonomy-section .reflect-driver-heading {
  grid-area: intro;
  min-height: 216px;
  border-radius: 8px;
  background: var(--mint);
  padding: clamp(26px, 3vw, 36px);
}

.reflect-taxonomy-section [data-sector-panel="capability"] .reflect-driver-heading {
  background: var(--blue);
}

.reflect-taxonomy-section [data-sector-panel="commitment"] .reflect-driver-heading {
  background: var(--rose);
}

.reflect-taxonomy-section .reflect-driver-heading span {
  color: var(--reflect-navy);
}

.reflect-taxonomy-section .reflect-driver-heading p {
  max-width: 420px;
  color: #4e5965;
  font-size: 20px;
}

.reflect-driver-visual {
  grid-area: image;
  min-height: 306px;
  border-radius: 8px;
}

.reflect-driver-visual img {
  min-height: 306px;
  object-fit: cover;
}

.reflect-taxonomy-section .reflect-driver-grid {
  grid-area: grid;
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  align-items: flex-start;
  gap: 10px;
}

.reflect-taxonomy-section .reflect-driver-card {
  min-height: 0;
  width: fit-content;
  max-width: 260px;
  border: 0;
  border-radius: 999px;
  background: #f7fbff;
  padding: 10px 15px;
  align-items: center;
}

.reflect-taxonomy-section .reflect-driver-card:nth-child(4n + 1) {
  background: var(--mint);
}

.reflect-taxonomy-section .reflect-driver-card:nth-child(4n + 2) {
  background: var(--lavender);
}

.reflect-taxonomy-section .reflect-driver-card:nth-child(4n + 3) {
  background: var(--blue);
}

.reflect-taxonomy-section .reflect-driver-card:nth-child(4n + 4) {
  background: var(--cream);
}

.reflect-taxonomy-section .reflect-driver-card h3 {
  white-space: normal;
  font-size: 14px;
  line-height: 1.05;
  font-weight: 760;
}

.reflect-insight-section {
  padding-top: clamp(82px, 8vw, 124px);
}

.reflect-insight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.reflect-dashboard-card,
.reflect-action-image,
.reflect-insight-copy,
.reflect-action-copy {
  min-height: clamp(390px, 36vw, 560px);
  border: 0;
  border-radius: 8px;
}

.reflect-dashboard-card {
  background: var(--blue);
}

.reflect-dashboard-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
}

.reflect-action-image {
  background: var(--mint);
}

.reflect-action-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.reflect-insight-copy,
.reflect-action-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 66px);
}

.reflect-insight-copy {
  background: var(--mint);
}

.reflect-action-copy {
  background: var(--lavender);
}

.reflect-insight-copy h2,
.reflect-action-copy h2 {
  max-width: 600px;
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 64px);
  line-height: 0.98;
  font-weight: 500;
}

.reflect-insight-copy > p,
.reflect-action-copy > p {
  max-width: 650px;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.5;
}

.reflect-insight-copy ul {
  margin-top: 28px;
}

.reflect-insight-copy li {
  background: rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  padding: 12px 18px 12px 38px;
}

.reflect-insight-copy li::before {
  top: 16px;
  left: 18px;
}

.reflect-proof-section {
  grid-template-columns: minmax(390px, 0.58fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(82px, 8vw, 124px);
}

.reflect-proof-media {
  min-height: clamp(430px, 42vw, 620px);
  border-radius: 8px;
  background: var(--mint);
}

.reflect-proof-media img {
  min-height: clamp(430px, 42vw, 620px);
  object-fit: cover;
}

.reflect-quote-cloud {
  max-width: none;
  margin: 0 0 34px;
  overflow: hidden;
}

.reflect-quote-row {
  flex-wrap: nowrap;
  justify-content: flex-start;
  width: max-content;
}

.reflect-quote-row-primary {
  transform: translateX(0);
}

.reflect-quote-row-secondary {
  transform: translateX(-64px);
}

.reflect-quote-row span {
  border: 0;
  background: #f7fbff;
  white-space: nowrap;
}

.reflect-proof-copy h2 {
  max-width: 760px;
  font-size: clamp(44px, 4.6vw, 72px);
}

.reflect-proof-copy p {
  max-width: 700px;
  font-size: clamp(18px, 1.45vw, 22px);
}

.reflect-movement {
  padding-top: clamp(82px, 8vw, 124px);
}

.reflect-movement-heading {
  max-width: 960px;
  margin-bottom: 38px;
  text-align: left;
}

.reflect-movement-heading h2 {
  max-width: 850px;
  font-size: clamp(46px, 5vw, 76px);
}

.reflect-movement-heading p {
  max-width: 900px;
  margin-inline: 0;
}

.reflect-movement-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.reflect-movement-grid article {
  min-height: 430px;
  border: 0;
  border-radius: 8px;
  background: #f7fbff;
}

.reflect-movement-grid article:nth-child(1) {
  background: var(--mint);
}

.reflect-movement-grid article:nth-child(2) {
  background: var(--blue);
}

.reflect-movement-grid article:nth-child(3) {
  background: var(--cream);
}

.reflect-movement-grid article:nth-child(4) {
  background: var(--rose);
}

.reflect-movement-image {
  height: 190px;
}

.reflect-movement-grid h3 {
  margin: 24px 22px 0;
  font-size: clamp(22px, 1.65vw, 28px);
}

.reflect-movement-grid p {
  margin: 12px 22px 28px;
  font-size: 17px;
}

.reflect-challenge-section {
  padding-top: clamp(82px, 8vw, 124px);
}

.reflect-challenge-panel {
  min-height: 720px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(31, 30, 27, 0.88), rgba(31, 30, 27, 0.9)),
    url("assets/workshop-wide.jpg") center / cover;
}

.reflect-challenge-card {
  border: 0;
  border-radius: 8px;
}

@media (max-width: 1120px) {
  .reflect-page .site-header,
  .reflect-hero,
  .reflect-break,
  .reflect-taxonomy-section,
  .reflect-insight-section,
  .reflect-proof-section,
  .reflect-movement,
  .reflect-challenge-section,
  .reflect-page .dark-cta,
  .reflect-page .site-footer {
    width: min(calc(100% - 56px), 1320px);
  }

  .reflect-hero,
  .reflect-fix-board,
  .reflect-taxonomy-section .reflect-driver-panel.is-active,
  .reflect-insight-grid,
  .reflect-proof-section,
  .reflect-challenge-layout {
    grid-template-columns: 1fr;
  }

  .reflect-taxonomy-section .reflect-driver-panel.is-active {
    grid-template-areas:
      "intro"
      "image"
      "grid";
  }

  .reflect-core-badge {
    position: static;
    transform: none;
    width: auto;
    height: auto;
    border-radius: 8px;
    margin: 0;
    padding: 20px;
  }

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

  .reflect-challenge-panel {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .reflect-page .site-header,
  .reflect-hero,
  .reflect-break,
  .reflect-taxonomy-section,
  .reflect-insight-section,
  .reflect-proof-section,
  .reflect-movement,
  .reflect-challenge-section,
  .reflect-page .dark-cta,
  .reflect-page .site-footer {
    width: min(calc(100% - 28px), 1320px);
  }

  .reflect-hero {
    padding-top: 32px;
  }

  .reflect-hero h1 {
    font-size: 44px;
  }

  .reflect-hero-visual {
    min-height: 480px;
  }

  .reflect-float {
    max-width: calc(100% - 36px);
  }

  .reflect-float-top {
    top: 18px;
    right: 18px;
  }

  .reflect-float-bottom {
    left: 18px;
    bottom: 18px;
  }

  .reflect-break-heading {
    text-align: left;
  }

  .reflect-break-heading h2,
  .reflect-taxonomy-section .reflect-sector-top h2,
  .reflect-insight-copy h2,
  .reflect-action-copy h2,
  .reflect-proof-copy h2,
  .reflect-movement-heading h2 {
    font-size: 38px;
  }

  .reflect-broken,
  .reflect-fixed {
    min-height: 0;
  }

  .reflect-taxonomy-section .reflect-sector-top {
    grid-template-columns: 1fr;
  }

  .reflect-taxonomy-section .reflect-sector-tabs {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .reflect-taxonomy-section .reflect-driver-grid,
  .reflect-movement-grid {
    grid-template-columns: 1fr;
  }

  .reflect-dashboard-card,
  .reflect-action-image,
  .reflect-insight-copy,
  .reflect-action-copy {
    min-height: 330px;
  }
}

/* Reflect type correction: Happy Times is decorative, not automatically italic */
.reflect-page h1 em,
.reflect-page h2 em {
  font-style: normal;
}

.reflect-challenge-panel {
  min-height: clamp(430px, 42vw, 560px);
  padding: clamp(36px, 4.6vw, 64px);
}

.reflect-challenge-panel h2 {
  max-width: 500px;
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(34px, 3.1vw, 48px);
  line-height: 1.05;
  font-weight: 780;
}

.reflect-challenge-panel p {
  max-width: 460px;
  margin: auto 0 0;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.45;
  font-weight: 500;
}

@media (max-width: 760px) {
  .reflect-challenge-panel {
    min-height: 340px;
    padding: 28px;
  }

  .reflect-challenge-panel h2 {
    font-size: 30px;
  }

  .reflect-challenge-panel p {
    font-size: 16px;
  }
}

/* Reflect driver map redesign */
.reflect-taxonomy-section {
  padding-top: clamp(82px, 8vw, 118px);
}

.reflect-taxonomy-section .reflect-sector-top {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) auto;
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  margin-bottom: 24px;
}

.reflect-taxonomy-section .reflect-sector-top h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(42px, 4.2vw, 66px);
  line-height: 1;
  font-weight: 780;
}

.reflect-taxonomy-section .reflect-sector-tabs {
  display: inline-flex;
  gap: 6px;
  justify-self: end;
  padding: 6px;
  border: 0;
  border-radius: 999px;
  background: #f3f8fc;
}

.reflect-taxonomy-section .reflect-sector-tab {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: transparent;
  color: #4f5964;
  font-size: 14px;
  font-weight: 760;
}

.reflect-taxonomy-section .reflect-sector-tab.is-active {
  background: var(--reflect-navy);
  color: #ffffff;
}

.reflect-taxonomy-section .reflect-sector-panels {
  padding: 0;
  background: transparent;
}

.reflect-taxonomy-section .reflect-driver-panel.is-active {
  display: grid;
  grid-template-columns: minmax(300px, 0.36fr) minmax(0, 1fr);
  grid-template-areas:
    "intro grid"
    "image grid";
  gap: 14px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.reflect-taxonomy-section .reflect-driver-heading {
  grid-area: intro;
  min-height: 0;
  border-radius: 8px;
  background: #1f1e1b;
  padding: clamp(26px, 3vw, 38px);
}

.reflect-taxonomy-section [data-sector-panel="capability"] .reflect-driver-heading,
.reflect-taxonomy-section [data-sector-panel="commitment"] .reflect-driver-heading {
  background: #1f1e1b;
}

.reflect-taxonomy-section .reflect-driver-heading span {
  display: none;
}

.reflect-taxonomy-section .reflect-driver-heading p {
  max-width: 390px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(21px, 1.7vw, 27px);
  line-height: 1.28;
  font-weight: 650;
}

.reflect-driver-visual {
  grid-area: image;
  min-height: 260px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--blue);
}

.reflect-driver-visual img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.reflect-taxonomy-section .reflect-driver-grid {
  grid-area: grid;
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  align-items: flex-start;
  gap: 10px;
  min-height: 100%;
  border-radius: 8px;
  background: #f7fbff;
  padding: clamp(22px, 3vw, 34px);
}

.reflect-taxonomy-section .reflect-driver-card {
  width: auto;
  max-width: none;
  min-height: 0;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: #ffffff;
}

.reflect-taxonomy-section .reflect-driver-card:nth-child(4n + 1) {
  background: var(--mint);
}

.reflect-taxonomy-section .reflect-driver-card:nth-child(4n + 2) {
  background: var(--lavender);
}

.reflect-taxonomy-section .reflect-driver-card:nth-child(4n + 3) {
  background: var(--blue);
}

.reflect-taxonomy-section .reflect-driver-card:nth-child(4n + 4) {
  background: var(--cream);
}

.reflect-taxonomy-section .reflect-driver-card h3 {
  margin: 0;
  white-space: nowrap;
  color: var(--ink);
  font-size: clamp(13.5px, 0.95vw, 15px);
  line-height: 1;
  font-weight: 760;
}

@media (max-width: 1040px) {
  .reflect-taxonomy-section .reflect-sector-top,
  .reflect-taxonomy-section .reflect-driver-panel.is-active {
    grid-template-columns: 1fr;
  }

  .reflect-taxonomy-section .reflect-sector-tabs {
    justify-self: start;
  }

  .reflect-taxonomy-section .reflect-driver-panel.is-active {
    grid-template-areas:
      "intro"
      "image"
      "grid";
  }
}

@media (max-width: 760px) {
  .reflect-taxonomy-section .reflect-sector-top h2 {
    font-size: 34px;
  }

  .reflect-taxonomy-section .reflect-sector-tabs {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .reflect-taxonomy-section .reflect-sector-tab {
    flex: 0 0 auto;
  }

  .reflect-taxonomy-section .reflect-driver-heading p {
    font-size: 20px;
  }

  .reflect-taxonomy-section .reflect-driver-card h3 {
    white-space: normal;
  }
}

/* Reflect proof wall redesign */
.reflect-proof-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.72fr);
  grid-template-areas:
    "media copy"
    "quotes copy";
  gap: 16px;
  align-items: stretch;
  padding-top: clamp(82px, 8vw, 124px);
  padding-bottom: 0;
  background: transparent;
}

.reflect-proof-media {
  grid-area: media;
  min-height: clamp(360px, 33vw, 500px);
  border-radius: 8px;
  overflow: hidden;
  background: var(--blue);
}

.reflect-proof-media img {
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 33vw, 500px);
  object-fit: cover;
  object-position: center;
}

.reflect-proof-copy {
  grid-area: copy;
  width: auto;
  max-width: none;
  min-height: 100%;
  margin: 0;
  border-radius: 8px;
  background: #1f1e1b;
  padding: clamp(34px, 5vw, 66px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}

.reflect-proof-copy h2 {
  max-width: 620px;
  margin: 0;
  color: #ffffff;
  font-family: var(--sans);
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.02;
  font-weight: 780;
}

.reflect-proof-copy p {
  max-width: 580px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.5;
}

.reflect-quote-cloud {
  grid-area: quotes;
  max-width: none;
  margin: 0;
  display: grid;
  gap: 12px;
  overflow: visible;
}

.reflect-quote-cloud::before,
.reflect-quote-cloud::after {
  content: none;
}

.reflect-quote-row,
.reflect-quote-row-primary,
.reflect-quote-row-secondary {
  width: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  transform: none;
}

.reflect-quote-row span {
  min-height: 112px;
  border: 0;
  border-radius: 8px;
  background: var(--mint);
  padding: 22px;
  display: flex;
  align-items: flex-end;
  color: var(--ink);
  white-space: normal;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.12;
  font-weight: 760;
}

.reflect-quote-row-primary span:nth-child(2),
.reflect-quote-row-secondary span:nth-child(1) {
  background: var(--blue);
}

.reflect-quote-row-primary span:nth-child(3),
.reflect-quote-row-secondary span:nth-child(2) {
  background: var(--lavender);
}

.reflect-quote-row-secondary span:nth-child(3) {
  background: var(--cream);
}

@media (max-width: 1040px) {
  .reflect-proof-section {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media"
      "quotes";
  }

  .reflect-proof-copy {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .reflect-quote-row,
  .reflect-quote-row-primary,
  .reflect-quote-row-secondary {
    grid-template-columns: 1fr;
  }

  .reflect-quote-row span {
    min-height: 86px;
    font-size: 18px;
  }
}

/* Reflect business movement redesign */
.reflect-movement {
  padding-top: clamp(82px, 8vw, 124px);
}

.reflect-movement-heading {
  max-width: none;
  margin: 0 0 18px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: end;
  text-align: left;
}

.reflect-movement-heading h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(42px, 4.5vw, 72px);
  line-height: 1;
  font-weight: 780;
}

.reflect-movement-heading p {
  max-width: 560px;
  margin: 0;
  color: #4f5964;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.5;
}

.reflect-movement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-auto-rows: minmax(300px, auto);
  gap: 16px;
}

.reflect-movement-grid article {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(210px, 0.56fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--mint);
  padding: 0;
}

.reflect-movement-grid article:nth-child(2) {
  background: var(--blue);
}

.reflect-movement-grid article:nth-child(3) {
  background: var(--cream);
}

.reflect-movement-grid article:nth-child(4) {
  background: var(--lavender);
}

.reflect-movement-image {
  grid-row: 1 / span 3;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.reflect-movement-grid article:nth-child(2) .reflect-movement-image,
.reflect-movement-grid article:nth-child(4) .reflect-movement-image {
  order: 2;
}

.reflect-movement-grid article > span {
  display: block;
  width: fit-content;
  height: auto;
  margin: 28px 28px 0;
  background: transparent;
  color: rgba(7, 20, 93, 0.34);
}

.reflect-movement-grid article > span::before {
  content: "01";
  display: block;
  font-family: var(--serif);
  font-size: 54px;
  line-height: 0.9;
  font-weight: 500;
}

.reflect-movement-grid article:nth-child(2) > span::before {
  content: "02";
}

.reflect-movement-grid article:nth-child(3) > span::before {
  content: "03";
}

.reflect-movement-grid article:nth-child(4) > span::before {
  content: "04";
}

.reflect-movement-grid h3 {
  margin: 22px 28px 0;
  color: var(--ink);
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1.05;
  font-weight: 790;
}

.reflect-movement-grid p {
  margin: 12px 28px 28px;
  color: #4f5964;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.44;
}

@media (max-width: 1120px) {
  .reflect-movement-heading,
  .reflect-movement-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .reflect-movement-heading h2 {
    font-size: 34px;
  }

  .reflect-movement-grid article {
    grid-template-columns: 1fr;
  }

  .reflect-movement-image {
    grid-row: auto;
    min-height: 220px;
  }

  .reflect-movement-grid article:nth-child(2) .reflect-movement-image,
  .reflect-movement-grid article:nth-child(4) .reflect-movement-image {
    order: 0;
  }
}

/* Reflect driver map compact pass */
.reflect-taxonomy-section {
  padding-top: clamp(34px, 4vw, 58px);
  padding-bottom: clamp(34px, 4vw, 58px);
}

.reflect-taxonomy-section .reflect-sector-top {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 10px;
}

.reflect-taxonomy-section .reflect-sector-top h2 {
  max-width: 460px;
  font-size: clamp(24px, 2.35vw, 34px);
  line-height: 1.05;
}

.reflect-taxonomy-section .reflect-sector-tabs {
  gap: 4px;
  padding: 4px;
}

.reflect-taxonomy-section .reflect-sector-tab {
  min-height: 30px;
  padding: 0 11px;
  font-size: 12px;
}

.reflect-taxonomy-section .reflect-driver-panel.is-active {
  display: grid;
  grid-template-columns: minmax(210px, 0.25fr) minmax(0, 1fr);
  grid-template-areas: "intro grid";
  gap: 8px;
  align-items: stretch;
}

.reflect-taxonomy-section .reflect-driver-heading {
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--mint);
}

.reflect-taxonomy-section [data-sector-panel="capability"] .reflect-driver-heading {
  background: var(--blue);
}

.reflect-taxonomy-section [data-sector-panel="commitment"] .reflect-driver-heading {
  background: var(--rose);
}

.reflect-taxonomy-section .reflect-driver-heading p {
  max-width: 250px;
  color: #30343a;
  font-size: 14px;
  line-height: 1.32;
  font-weight: 620;
}

.reflect-taxonomy-section .reflect-driver-panel.is-active .reflect-driver-visual {
  display: none !important;
}

.reflect-taxonomy-section .reflect-driver-grid {
  min-height: 0;
  padding: 12px;
  gap: 7px;
  background: #f7fbff;
}

.reflect-taxonomy-section .reflect-driver-card {
  padding: 7px 10px;
}

.reflect-taxonomy-section .reflect-driver-card h3 {
  font-size: 12px;
  line-height: 1;
  font-weight: 760;
}

@media (max-width: 900px) {
  .reflect-taxonomy-section .reflect-sector-top,
  .reflect-taxonomy-section .reflect-driver-panel.is-active {
    grid-template-columns: 1fr;
  }

  .reflect-taxonomy-section .reflect-sector-tabs {
    justify-self: start;
  }

  .reflect-taxonomy-section .reflect-driver-panel.is-active {
    grid-template-areas:
      "intro"
      "grid";
  }

  .reflect-taxonomy-section .reflect-driver-heading p {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .reflect-taxonomy-section .reflect-sector-top h2 {
    font-size: 28px;
  }
}

/* Homepage platform intro: image-led, colorful system tiles */
.platform-intro {
  padding-top: clamp(54px, 6vw, 92px);
}

.platform-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: stretch;
  margin-bottom: 22px;
}

.platform-showcase .platform-copy {
  max-width: none;
  margin: 0;
  border-radius: 8px;
  background: #1f1e1b;
  padding: clamp(34px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}

.platform-showcase .platform-copy h2 {
  max-width: 640px;
  margin: 0 0 20px;
  color: #ffffff;
  font-family: var(--sans);
  font-size: clamp(40px, 4.4vw, 68px);
  line-height: 1;
  font-weight: 780;
}

.platform-showcase .platform-copy p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.48;
}

.platform-visual {
  min-height: clamp(360px, 36vw, 520px);
  overflow: hidden;
  border-radius: 8px;
  background: var(--blue);
}

.platform-visual img {
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 36vw, 520px);
  object-fit: cover;
  object-position: center;
}

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

.platform-card,
.platform-card:nth-child(1),
.platform-card:nth-child(2),
.platform-card:nth-child(3),
.platform-card:nth-child(4) {
  min-height: 230px;
  border: 0;
  border-radius: 8px;
  padding: 24px;
  justify-content: flex-end;
  overflow: hidden;
}

.platform-card:nth-child(1) {
  background: var(--mint);
}

.platform-card:nth-child(2) {
  background: var(--blue);
}

.platform-card:nth-child(3) {
  background: var(--cream);
}

.platform-card:nth-child(4) {
  background: var(--rose);
}

.platform-card .card-placeholder {
  display: block;
  width: 34px;
  height: 5px;
  margin-bottom: auto;
  border-radius: 999px;
  background: rgba(7, 20, 93, 0.35);
}

.platform-card:nth-child(2) .card-placeholder {
  background: rgba(108, 184, 237, 0.72);
}

.platform-card:nth-child(3) .card-placeholder {
  background: rgba(245, 162, 58, 0.72);
}

.platform-card:nth-child(4) .card-placeholder {
  background: rgba(170, 120, 162, 0.72);
}

.platform-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(22px, 1.8vw, 29px);
  line-height: 1.02;
  font-weight: 790;
}

.platform-card p {
  margin: 0;
  color: #4f5964;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.36;
}

@media (max-width: 1040px) {
  .platform-showcase {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .platform-showcase .platform-copy {
    padding: 28px;
  }

  .platform-showcase .platform-copy h2 {
    font-size: 34px;
  }

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

  .platform-card {
    min-height: 190px;
  }
}

/* Reflect feedback strip: compact testimonial pills */
.reflect-proof-section {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 4vw, 54px);
  justify-items: center;
  padding: clamp(68px, 7vw, 104px) max(24px, calc((100vw - 1180px) / 2));
  background: #f7f7f9;
}

.reflect-proof-media {
  display: none;
}

.reflect-quote-cloud {
  width: min(100%, 980px);
  display: grid;
  gap: 14px;
  margin: 0;
  overflow: visible;
}

.reflect-quote-row,
.reflect-quote-row-primary,
.reflect-quote-row-secondary {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 20px;
  transform: none;
}

.reflect-quote-row span {
  min-height: 46px;
  width: auto;
  max-width: none;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  border: 1px solid #e6e9ed;
  border-radius: 999px;
  background: #ffffff;
  padding: 8px 18px 8px 8px;
  color: #30343a;
  white-space: nowrap;
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1;
  font-weight: 720;
}

.reflect-quote-row span::before {
  content: "";
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #1f1e1b;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  background-size: cover;
  background-position: center;
}

.reflect-quote-row-primary span:nth-child(1)::before {
  background-image: url("assets/founders/anish-singh.png");
}

.reflect-quote-row-primary span:nth-child(2)::before {
  content: "M";
}

.reflect-quote-row-primary span:nth-child(3)::before {
  background-image: url("assets/office-win.jpg");
}

.reflect-quote-row-secondary span:nth-child(1)::before {
  content: "S";
}

.reflect-quote-row-secondary span:nth-child(2)::before {
  background-image: url("assets/founders/kshitij-jain.png");
}

.reflect-quote-row-secondary span:nth-child(3)::before {
  background-image: url("assets/news-team.png");
}

.reflect-proof-copy {
  width: min(100%, 850px);
  min-height: 0;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  display: block;
  text-align: center;
}

.reflect-proof-copy h2 {
  max-width: 840px;
  margin: 0 auto;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1.02;
  font-weight: 500;
}

.reflect-proof-copy p {
  max-width: 620px;
  margin: 26px auto 0;
  color: #6b747e;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.5;
}

@media (max-width: 760px) {
  .reflect-proof-section {
    padding-inline: 18px;
  }

  .reflect-quote-row {
    justify-content: flex-start;
  }

  .reflect-quote-row span {
    width: 100%;
    white-space: normal;
  }

  .reflect-proof-copy h2 {
    font-size: 32px;
  }
}

/* Reflect drivers: tiny tablet section */
.reflect-taxonomy-section {
  max-width: 1120px;
  margin-inline: auto;
  padding: 34px 24px 42px;
  background: #ffffff;
}

.reflect-taxonomy-section::before,
.reflect-taxonomy-section::after {
  display: none;
}

.reflect-taxonomy-section .reflect-sector-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.reflect-taxonomy-section .reflect-sector-top h2 {
  max-width: 520px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 2.9vw, 42px);
  line-height: 1.03;
  font-style: normal;
  font-weight: 500;
}

.reflect-taxonomy-section .reflect-sector-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  background: #f4f6f8;
}

.reflect-taxonomy-section .reflect-sector-tab {
  min-height: 0;
  padding: 8px 13px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #5b646f;
  font-size: 12px;
  line-height: 1;
  font-weight: 760;
}

.reflect-taxonomy-section .reflect-sector-tab.is-active {
  background: #ffffff;
  color: var(--navy);
}

.reflect-taxonomy-section .reflect-sector-panels {
  padding: 0;
  border: 0;
  background: transparent;
}

.reflect-taxonomy-section .reflect-driver-panel,
.reflect-taxonomy-section .reflect-driver-panel.is-active {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  display: none;
}

.reflect-taxonomy-section .reflect-driver-panel.is-active {
  display: block;
}

.reflect-taxonomy-section .reflect-driver-heading {
  width: 100%;
  max-width: none;
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.reflect-taxonomy-section .reflect-driver-heading span {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1;
  font-weight: 820;
}

.reflect-taxonomy-section .reflect-driver-heading p {
  max-width: 560px;
  margin: 0;
  color: #6b747e;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 560;
}

.reflect-taxonomy-section .reflect-driver-visual {
  display: none !important;
}

.reflect-taxonomy-section .reflect-driver-grid {
  width: 100%;
  min-height: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
}

.reflect-taxonomy-section .reflect-driver-card {
  min-height: 0;
  width: auto;
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border: 0;
  border-radius: 999px;
  background: #eef6ff;
}

.reflect-taxonomy-section .reflect-driver-card:nth-child(4n + 1) {
  background: var(--mint);
}

.reflect-taxonomy-section .reflect-driver-card:nth-child(4n + 2) {
  background: var(--lavender);
}

.reflect-taxonomy-section .reflect-driver-card:nth-child(4n + 3) {
  background: var(--cream);
}

.reflect-taxonomy-section .reflect-driver-card:nth-child(4n + 4) {
  background: var(--blue);
}

.reflect-taxonomy-section .reflect-driver-card > div {
  display: block;
}

.reflect-taxonomy-section .reflect-driver-card h3 {
  margin: 0;
  color: #202225;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1;
  font-weight: 720;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .reflect-taxonomy-section {
    padding: 28px 18px 34px;
  }

  .reflect-taxonomy-section .reflect-sector-top,
  .reflect-taxonomy-section .reflect-driver-heading {
    display: grid;
    gap: 12px;
  }

  .reflect-taxonomy-section .reflect-sector-tabs {
    justify-self: start;
    max-width: 100%;
    overflow-x: auto;
  }

  .reflect-taxonomy-section .reflect-driver-card h3 {
    white-space: normal;
  }
}

/* Reflect hero: wide pastel product stage */
.reflect-page .reflect-hero {
  max-width: none;
  margin: 0;
  padding: clamp(70px, 7vw, 112px) max(28px, calc((100vw - 1220px) / 2)) 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.48) 0 9%, transparent 9.4%),
    radial-gradient(circle at 78% 73%, rgba(255, 255, 255, 0.34) 0 16%, transparent 16.4%),
    #d3f7fb;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.46fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: start;
  overflow: hidden;
}

.reflect-page .reflect-hero-copy {
  max-width: none;
  padding: 0;
  background: transparent;
  border: 0;
}

.reflect-page .reflect-kicker {
  width: fit-content;
  margin-bottom: 26px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.reflect-page .reflect-hero h1 {
  max-width: 840px;
  margin: 0;
  color: #25223f;
  font-family: var(--sans);
  font-size: clamp(64px, 7.8vw, 126px);
  line-height: 0.98;
  font-weight: 620;
}

.reflect-page .reflect-hero h1 em {
  display: block;
  color: #25223f;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 620;
}

.reflect-page .reflect-hero-highlight {
  display: inline-block;
  padding: 0.02em 0.17em 0.08em;
  border-radius: 999px;
  line-height: 0.96;
}

.reflect-page .reflect-hero-highlight-cream {
  background: #fbffd8;
}

.reflect-page .reflect-hero-highlight-rose {
  background: #f6d6ec;
}

.reflect-page .reflect-hero-side {
  padding-top: clamp(44px, 5.4vw, 92px);
}

.reflect-page .reflect-hero-side p {
  max-width: 430px;
  margin: 0 0 34px;
  color: #575d70;
  font-size: clamp(21px, 1.8vw, 29px);
  line-height: 1.55;
  font-weight: 650;
}

.reflect-page .reflect-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.reflect-page .reflect-actions .button {
  min-height: 54px;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 780;
}

.reflect-page .reflect-actions .button-dark {
  background: #25223f;
  color: #ffffff;
}

.reflect-page .reflect-actions .button-outline {
  border-color: rgba(37, 34, 63, 0.22);
  background: rgba(255, 255, 255, 0.5);
  color: #25223f;
}

.reflect-page .reflect-hero-visual {
  grid-column: 1 / -1;
  width: 100%;
  min-height: clamp(420px, 42vw, 650px);
  margin-top: clamp(58px, 7vw, 118px);
  position: relative;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.reflect-page .reflect-hero-visual::before,
.reflect-page .reflect-hero-visual::after {
  display: none;
}

.reflect-page .reflect-hero-photo-main,
.reflect-page .reflect-float {
  display: none;
}

.reflect-page .reflect-hero-dashboard {
  position: absolute;
  left: 0;
  bottom: -2px;
  width: min(100%, 980px);
  height: clamp(350px, 35vw, 540px);
  z-index: 1;
  overflow: hidden;
  border: clamp(12px, 1.5vw, 20px) solid #25223f;
  border-bottom: 0;
  border-radius: clamp(30px, 3vw, 52px) clamp(30px, 3vw, 52px) 0 0;
  background: #ffffff;
}

.reflect-page .reflect-hero-dashboard img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  transform: none;
  filter: saturate(0.92) contrast(0.98);
}

.reflect-page .reflect-hero-photo-secondary {
  position: absolute;
  right: min(1vw, 16px);
  bottom: -2px;
  width: clamp(230px, 27vw, 360px);
  height: clamp(320px, 34vw, 520px);
  z-index: 2;
  overflow: hidden;
  border: clamp(12px, 1.3vw, 18px) solid #25223f;
  border-bottom: 0;
  border-radius: 36px 36px 0 0;
  background: #ffffff;
}

.reflect-page .reflect-hero-photo-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.94;
}

@media (max-width: 1040px) {
  .reflect-page .reflect-hero {
    grid-template-columns: 1fr;
  }

  .reflect-page .reflect-hero-side {
    padding-top: 0;
  }

  .reflect-page .reflect-hero-side p {
    max-width: 720px;
  }

  .reflect-page .reflect-hero-dashboard {
    width: 82%;
  }
}

@media (max-width: 760px) {
  .reflect-page .reflect-hero {
    padding-inline: 18px;
  }

  .reflect-page .reflect-hero h1 {
    font-size: clamp(50px, 15vw, 74px);
  }

  .reflect-page .reflect-hero-side p {
    font-size: 18px;
  }

  .reflect-page .reflect-hero-visual {
    min-height: 410px;
    margin-top: 34px;
  }

  .reflect-page .reflect-hero-dashboard {
    width: 100%;
    height: 330px;
  }

  .reflect-page .reflect-hero-photo-secondary {
    display: none;
  }
}

/* Reflect hero correction: ATP pastel laptop mockup */
.reflect-page .reflect-hero {
  max-width: 1180px;
  min-height: auto;
  margin: 34px auto 0;
  padding: clamp(34px, 5vw, 64px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(229, 244, 231, 0.98) 0%, rgba(216, 233, 248, 0.92) 52%, rgba(255, 241, 201, 0.82) 100%),
    #f7fbff;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(430px, 1.16fr);
  grid-template-areas:
    "copy visual"
    "side visual";
  gap: 24px clamp(32px, 5vw, 64px);
  align-items: center;
  overflow: hidden;
}

.reflect-page .reflect-hero-copy {
  grid-area: copy;
}

.reflect-page .reflect-kicker {
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.reflect-page .reflect-hero h1 {
  max-width: 600px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(48px, 5.6vw, 84px);
  line-height: 0.98;
  font-weight: 500;
}

.reflect-page .reflect-hero h1 em {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-style: normal;
  font-weight: 500;
}

.reflect-page .reflect-hero-highlight {
  padding: 0.01em 0.15em 0.07em;
}

.reflect-page .reflect-hero-highlight-cream {
  background: rgba(255, 241, 201, 0.92);
}

.reflect-page .reflect-hero-highlight-rose {
  background: rgba(234, 210, 221, 0.95);
}

.reflect-page .reflect-hero-side {
  grid-area: side;
  padding-top: 0;
  align-self: start;
}

.reflect-page .reflect-hero-side p {
  max-width: 570px;
  margin-bottom: 28px;
  color: #4f5964;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.5;
  font-weight: 570;
}

.reflect-page .reflect-actions .button {
  min-height: 50px;
  border-radius: 8px;
}

.reflect-page .reflect-actions .button-dark {
  background: var(--navy);
}

.reflect-page .reflect-actions .button-outline {
  background: rgba(255, 255, 255, 0.62);
}

.reflect-page .reflect-hero-visual {
  grid-area: visual;
  width: 100%;
  min-height: clamp(380px, 38vw, 540px);
  margin-top: 0;
  display: grid;
  align-items: center;
  position: relative;
}

.reflect-page .reflect-hero-photo-main,
.reflect-page .reflect-hero-photo-secondary {
  display: none;
}

.reflect-page .reflect-hero-dashboard {
  position: relative;
  left: auto;
  bottom: auto;
  width: 100%;
  height: auto;
  min-height: 0;
  padding: 14px 14px 20px;
  border: 10px solid #0b1558;
  border-radius: 24px;
  background: #ffffff;
  overflow: visible;
}

.reflect-page .reflect-hero-dashboard::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -28px;
  width: 64%;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 0 0 18px 18px;
  background: #0b1558;
}

.reflect-page .reflect-hero-dashboard::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -46px;
  width: 82%;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(11, 21, 88, 0.18);
}

.reflect-page .reflect-hero-dashboard img {
  aspect-ratio: 16 / 10;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
  object-position: top center;
  filter: none;
}

.reflect-page .reflect-float {
  display: block;
  position: absolute;
  z-index: 3;
  width: max-content;
  max-width: 240px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  padding: 13px 15px;
}

.reflect-page .reflect-float-top {
  top: 32px;
  right: -8px;
}

.reflect-page .reflect-float-bottom {
  left: -18px;
  bottom: 52px;
}

.reflect-page .reflect-float span {
  background: var(--blue);
}

.reflect-page .reflect-float-bottom span {
  background: var(--mint);
}

.reflect-page .reflect-float strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.1;
}

.reflect-page .reflect-float small {
  color: #6b747e;
  font-size: 12px;
}

@media (max-width: 1040px) {
  .reflect-page .reflect-hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "side"
      "visual";
  }

  .reflect-page .reflect-hero h1,
  .reflect-page .reflect-hero-side p {
    max-width: 760px;
  }

  .reflect-page .reflect-hero-visual {
    min-height: 0;
    padding-bottom: 42px;
  }
}

@media (max-width: 760px) {
  .reflect-page .reflect-hero {
    margin-top: 18px;
    padding: 26px 18px 40px;
  }

  .reflect-page .reflect-hero h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .reflect-page .reflect-actions .button {
    width: 100%;
  }

  .reflect-page .reflect-float {
    display: none;
  }
}

/* Reflect Culture tablets: split into compact columns */
.reflect-taxonomy-section [data-sector-panel="culture"] .reflect-driver-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: column;
  grid-template-rows: repeat(6, auto);
  gap: 8px 10px;
  max-width: 760px;
}

.reflect-taxonomy-section [data-sector-panel="culture"] .reflect-driver-card {
  width: 100%;
  justify-content: flex-start;
}

.reflect-taxonomy-section [data-sector-panel="culture"] .reflect-driver-card h3 {
  white-space: normal;
  line-height: 1.12;
}

@media (max-width: 680px) {
  .reflect-taxonomy-section [data-sector-panel="culture"] .reflect-driver-grid {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-template-rows: none;
    max-width: none;
  }
}

/* Reflect drivers: ultra compact final pass */
.reflect-taxonomy-section {
  max-width: 960px;
  padding: 18px 22px 22px;
}

.reflect-taxonomy-section .reflect-sector-top {
  align-items: center;
  margin-bottom: 10px;
}

.reflect-taxonomy-section .reflect-sector-top h2 {
  max-width: 390px;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1;
}

.reflect-taxonomy-section .reflect-sector-tabs {
  gap: 4px;
  padding: 4px;
}

.reflect-taxonomy-section .reflect-sector-tab {
  padding: 7px 10px;
  font-size: 11px;
}

.reflect-taxonomy-section .reflect-driver-panel.is-active {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.reflect-taxonomy-section .reflect-driver-heading {
  display: block;
  margin: 0;
}

.reflect-taxonomy-section .reflect-driver-heading span {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
}

.reflect-taxonomy-section .reflect-driver-heading p {
  max-width: 200px;
  font-size: 11px;
  line-height: 1.25;
}

.reflect-taxonomy-section .reflect-driver-grid,
.reflect-taxonomy-section [data-sector-panel="culture"] .reflect-driver-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: column;
  grid-template-rows: repeat(6, auto);
  gap: 6px;
  max-width: none;
}

.reflect-taxonomy-section .reflect-driver-card {
  min-height: 0;
  padding: 6px 8px;
  border-radius: 999px;
}

.reflect-taxonomy-section .reflect-driver-card h3,
.reflect-taxonomy-section [data-sector-panel="culture"] .reflect-driver-card h3 {
  font-size: 10.5px;
  line-height: 1.08;
  font-weight: 720;
  white-space: normal;
}

@media (max-width: 760px) {
  .reflect-taxonomy-section .reflect-driver-panel.is-active {
    grid-template-columns: 1fr;
  }

  .reflect-taxonomy-section .reflect-driver-heading p {
    max-width: none;
  }

  .reflect-taxonomy-section .reflect-driver-grid,
  .reflect-taxonomy-section [data-sector-panel="culture"] .reflect-driver-grid {
    grid-auto-flow: row;
    grid-template-rows: none;
  }
}

/* Global brand hygiene pass: unified type, sizing, and components */
:root {
  --serif: "Happy Times", Georgia, "Times New Roman", Times, serif;
  --serif-fancy: "Happy Times", Georgia, "Times New Roman", Times, serif;
  --container: 1180px;
  --radius: 8px;
}

html {
  font-size: 16px;
}

body {
  border-top: 0;
  background:
    linear-gradient(180deg, rgba(216, 233, 248, 0.22), transparent 520px),
    #ffffff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.45;
}

body *,
body *::before,
body *::after {
  box-shadow: none !important;
  letter-spacing: 0;
}

em,
i {
  font-style: normal;
}

.site-header,
.hero,
.trusted-section,
.section-space,
.dark-cta,
.site-footer {
  width: min(calc(100% - 96px), var(--container));
}

.section-space {
  padding-block: clamp(72px, 7vw, 112px);
}

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

.brand-logo {
  width: clamp(190px, 18vw, 286px);
}

.main-nav {
  gap: clamp(18px, 2.4vw, 34px);
}

.main-nav a,
.header-actions > a:not(.button),
.footer-column a,
.footer-column p,
.footer-brand p,
.footer-brand small {
  color: #5a6470;
  font-size: 15px;
  line-height: 1.45;
}

.button {
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-size: 15px;
  line-height: 1;
  font-weight: 760;
}

.button-dark,
.button-light {
  border-color: transparent;
}

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

.button-outline,
.button-glass,
.button-dark-outline {
  border: 1px solid rgba(11, 21, 88, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
}

.hero-copy h1,
.center-heading h2,
.section-heading h2,
.metrics-heading h2,
.loop-intro h2,
.founders-intro h2,
.faq-intro h2,
.dark-cta-copy h2,
.embark-heading h2,
.embark-problem-copy h2,
.embark-solution-grid h2,
.embark-architecture-copy h2,
.embark-action-copy h2,
.consult-heading h2,
.consult-section-heading h2,
.consult-problem-copy h2,
.consult-model-copy h2,
.reflect-break-heading h2,
.reflect-insight-copy h2,
.reflect-action-copy h2,
.reflect-proof-copy h2,
.reflect-movement-heading h2,
.reflect-challenge-panel h2 {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.03;
}

.hero-copy h1 {
  max-width: 660px;
  font-size: clamp(52px, 6vw, 88px);
}

.center-heading h2,
.section-heading h2,
.metrics-heading h2,
.loop-intro h2,
.founders-intro h2,
.faq-intro h2,
.embark-heading h2,
.consult-heading h2,
.reflect-break-heading h2,
.reflect-proof-copy h2,
.reflect-movement-heading h2 {
  font-size: clamp(34px, 4vw, 58px);
}

.hero-copy p,
.platform-showcase .platform-copy p,
.center-heading p,
.metrics-heading p,
.loop-intro p,
.founders-intro p,
.embark-heading p,
.consult-heading p,
.reflect-movement-heading p,
.reflect-break-heading p {
  color: #5d6671;
  font-size: clamp(16px, 1.22vw, 19px);
  line-height: 1.5;
  font-weight: 520;
}

.hero {
  min-height: min(760px, calc(100vh - 100px));
  border-radius: var(--radius);
}

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

.trusted-section {
  padding-block: 42px 48px;
}

.brand-strip {
  gap: clamp(34px, 5vw, 72px);
}

.brand-strip img {
  max-width: 138px;
  max-height: 52px;
  filter: grayscale(1) saturate(0) opacity(0.55);
}

.brand-strip img:hover {
  filter: none;
}

.platform-intro {
  padding-top: clamp(70px, 7vw, 108px);
}

.platform-showcase {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  gap: clamp(22px, 3.8vw, 52px);
}

.platform-showcase .platform-copy {
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 52px);
}

.platform-showcase .platform-copy h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.04;
  font-weight: 400;
}

.platform-visual,
.platform-visual img {
  min-height: clamp(300px, 32vw, 460px);
  border-radius: var(--radius);
}

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

.challenge-grid,
.news-grid {
  gap: 12px;
}

.platform-card,
.challenge-card,
.metric-card,
.news-card,
.impact-card,
.faq-item,
.founder-card,
.embark-pillar-grid article,
.embark-use-grid article,
.consult-enabler-card,
.consult-priority-card,
.consult-use-card,
.reflect-movement-grid article,
.reflect-challenge-card {
  border: 0 !important;
  border-radius: var(--radius);
}

.platform-card,
.metric-card {
  min-height: 176px;
  padding: 22px;
}

.platform-card h3,
.metric-card h3,
.challenge-card strong,
.news-card h3,
.impact-body h3,
.embark-pillar-grid h3,
.embark-use-grid h3,
.consult-enabler-card h3,
.consult-priority-card h3,
.consult-use-card h3,
.reflect-movement-grid h3,
.reflect-challenge-card strong {
  color: #252729;
  font-family: var(--sans);
  font-size: clamp(19px, 1.55vw, 24px);
  line-height: 1.13;
  font-weight: 760;
}

.platform-card p,
.metric-card p,
.challenge-card small,
.news-card p,
.impact-body p,
.embark-pillar-grid p,
.embark-use-grid p,
.consult-enabler-card p,
.consult-priority-card p,
.consult-use-card p,
.reflect-movement-grid p,
.reflect-challenge-card small {
  color: #59636e;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.42;
  font-weight: 520;
}

.impact-grid {
  gap: 14px;
}

.impact-card {
  background: #f8fbfd;
}

.impact-image {
  height: clamp(210px, 22vw, 290px);
  border-radius: var(--radius);
}

.impact-body {
  padding: 22px;
}

.product-logo {
  max-height: 32px;
  max-width: 168px;
}

.challenge-layout {
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: 18px;
}

.challenge-map-panel {
  min-height: 0;
  padding: 28px;
  border-radius: var(--radius);
}

.challenge-map-panel h2 {
  font-size: clamp(34px, 3.7vw, 56px);
  line-height: 1.02;
}

.challenge-card {
  min-height: 118px;
  padding: 20px;
}

.loop-section {
  padding-block: clamp(72px, 8vw, 122px);
}

.loop-visual {
  max-width: 760px;
}

.metrics-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.metrics-heading {
  margin: 0;
}

.metric-card {
  background: #f5f9fc;
}

.metric-card:nth-child(1) {
  background: var(--mint);
}

.metric-card:nth-child(2) {
  background: var(--blue);
}

.metric-card:nth-child(3) {
  background: var(--cream);
}

.metric-card:nth-child(4) {
  background: var(--rose);
}

.section-heading {
  align-items: end;
}

.news-card {
  min-height: 280px;
  padding: 24px;
  background: #f8fbfd;
}

.news-card:nth-child(1) {
  background: var(--mint);
}

.news-card:nth-child(2) {
  background: var(--blue);
}

.news-card:nth-child(3) {
  background: var(--cream);
}

.practice-use {
  margin-top: auto;
  color: var(--navy);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
}

.founders-intro {
  max-width: 760px;
}

.founder-grid {
  gap: 18px;
}

.founder-card {
  padding: 20px;
  background: #f8fbfd;
}

.founder-copy h3 {
  font-size: 24px;
  line-height: 1.1;
}

.founder-brief,
.founder-bio {
  font-size: 15px;
  line-height: 1.48;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.faq-list {
  gap: 10px;
}

.faq-item {
  background: #f5f5f3;
}

.faq-question {
  min-height: 64px;
  padding: 0 22px;
  font-size: 17px;
}

.site-footer {
  margin-top: 70px;
  padding-top: 54px;
}

.footer-grid {
  gap: clamp(34px, 5vw, 72px);
}

.reflect-page .reflect-hero,
.embark-page .embark-hero,
.consult-page .consult-hero {
  margin-top: 28px;
  border-radius: var(--radius);
}

.reflect-page .reflect-hero h1,
.embark-page .embark-hero h1,
.consult-page .consult-hero h1 {
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1.02;
}

.reflect-page .reflect-hero-side p,
.embark-page .embark-hero-copy p,
.consult-page .consult-hero-copy p {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.5;
}

.reflect-taxonomy-section {
  padding: 16px 18px 18px;
}

.reflect-taxonomy-section .reflect-sector-top h2 {
  font-size: clamp(22px, 2vw, 28px);
}

.reflect-taxonomy-section .reflect-driver-panel.is-active {
  grid-template-columns: 190px minmax(0, 1fr);
}

.reflect-taxonomy-section .reflect-driver-card h3,
.reflect-taxonomy-section [data-sector-panel="culture"] .reflect-driver-card h3 {
  font-size: 10px;
}

@media (max-width: 980px) {
  .site-header,
  .hero,
  .trusted-section,
  .section-space,
  .dark-cta,
  .site-footer {
    width: min(calc(100% - 40px), var(--container));
  }

  .platform-showcase,
  .challenge-layout,
  .metrics-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

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

  .reflect-taxonomy-section .reflect-driver-panel.is-active {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header,
  .hero,
  .trusted-section,
  .section-space,
  .dark-cta,
  .site-footer {
    width: min(calc(100% - 28px), var(--container));
  }

  .section-space {
    padding-block: 56px;
  }

  .hero-copy h1,
  .center-heading h2,
  .section-heading h2,
  .metrics-heading h2,
  .loop-intro h2,
  .founders-intro h2,
  .faq-intro h2 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .platform-card-grid,
  .metrics-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .platform-card,
  .metric-card,
  .challenge-card,
  .news-card {
    min-height: auto;
    padding: 18px;
  }
}

/* Reflect: compact Culture / Capability / Commitment method visual */
.reflect-method-section {
  width: min(calc(100% - 96px), 1180px);
  max-width: 1180px;
  margin-inline: auto;
  padding: clamp(34px, 4vw, 56px);
  border-radius: var(--radius);
  background: #10120f;
  color: #f7ffd8;
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: stretch;
  overflow: hidden;
}

.reflect-method-copy {
  position: relative;
  z-index: 2;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reflect-method-eyebrow {
  width: max-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(218, 235, 255, 0.13);
  color: rgba(247, 255, 216, 0.74);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.reflect-method-copy h2 {
  max-width: 490px;
  margin: 0;
  color: #f7ffd8;
  font-family: var(--sans);
  font-size: clamp(34px, 4.15vw, 58px);
  font-weight: 520;
  line-height: 1.06;
}

.reflect-method-copy p {
  max-width: 430px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.48;
}

.reflect-method-visual {
  position: relative;
  min-height: 380px;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  isolation: isolate;
}

.reflect-method-visual::before,
.reflect-method-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  pointer-events: none;
}

.reflect-method-visual::before {
  height: 78%;
  background: rgba(255, 255, 255, 0.06);
  clip-path: polygon(0 100%, 100% 48%, 100% 100%);
  z-index: 0;
}

.reflect-method-visual::after {
  height: 58%;
  background: linear-gradient(90deg, rgba(247, 255, 216, 0.96), rgba(218, 235, 255, 0.74), rgba(229, 244, 232, 0.9));
  clip-path: polygon(0 100%, 30% 79%, 63% 53%, 100% 20%, 100% 100%);
  opacity: 0.94;
  z-index: 1;
}

.reflect-method-tabs {
  position: relative;
  z-index: 3;
  width: min(100%, 460px);
  margin: 0 auto;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.reflect-method-tabs span {
  min-height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  font-weight: 780;
}

.reflect-method-tabs span:nth-child(1) {
  background: rgba(247, 255, 216, 0.16);
  color: #f7ffd8;
}

.reflect-method-floor {
  position: absolute;
  inset: 82px 0 0;
  z-index: 2;
  background:
    linear-gradient(90deg, transparent 32%, rgba(247, 255, 216, 0.18) 32% 32.4%, transparent 32.4% 65%, rgba(247, 255, 216, 0.18) 65% 65.4%, transparent 65.4%),
    linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.05));
  mask-image: linear-gradient(to bottom, transparent 0, #000 9%, #000 100%);
}

.reflect-method-card {
  position: absolute;
  z-index: 4;
  width: min(220px, 28vw);
  min-height: 118px;
  padding: 16px;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid rgba(247, 255, 216, 0.2);
  background: rgba(16, 18, 15, 0.84);
  color: #f7ffd8;
  backdrop-filter: blur(10px);
}

.reflect-method-card::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-bottom: 12px;
  display: block;
  border-radius: 6px;
  background: currentColor;
  opacity: 0.88;
}

.reflect-method-card::after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 34px;
  width: 1px;
  height: 180px;
  border-left: 1px dashed rgba(247, 255, 216, 0.24);
}

.reflect-method-card span {
  display: block;
  margin-bottom: 7px;
  font-size: 20px;
  font-weight: 820;
  line-height: 1.08;
}

.reflect-method-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.38;
}

.reflect-method-card-culture {
  left: 5%;
  top: 50%;
  color: #f7ffd8;
}

.reflect-method-card-capability {
  left: 37%;
  top: 39%;
  color: #daebff;
}

.reflect-method-card-commitment {
  right: 0;
  top: 14%;
  color: #e5f4e8;
}

@media (max-width: 980px) {
  .reflect-method-section {
    width: min(calc(100% - 40px), var(--container));
    grid-template-columns: 1fr;
  }

  .reflect-method-copy {
    min-height: auto;
  }

  .reflect-method-visual {
    min-height: 460px;
  }
}

@media (max-width: 680px) {
  .reflect-method-section {
    width: min(calc(100% - 28px), var(--container));
    padding: 24px;
  }

  .reflect-method-visual {
    min-height: auto;
    display: grid;
    gap: 12px;
    overflow: visible;
  }

  .reflect-method-visual::before,
  .reflect-method-visual::after,
  .reflect-method-floor {
    display: none;
  }

  .reflect-method-tabs {
    width: 100%;
  }

  .reflect-method-tabs span {
    min-height: 40px;
    font-size: 12px;
  }

  .reflect-method-card {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .reflect-method-card::after {
    display: none;
  }
}

/* Reflect operating model: clickable Culture / Capability / Commitment lenses */
.reflect-method-section {
  background: var(--reflect-navy);
  color: #ffffff;
  grid-template-columns: minmax(280px, 0.4fr) minmax(0, 1fr);
  border-radius: 8px;
}

.reflect-method-eyebrow {
  background: rgba(255, 241, 201, 0.16);
  color: var(--reflect-cream);
}

.reflect-method-copy h2 {
  color: #ffffff;
}

.reflect-method-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.reflect-method-visual {
  --active-accent: var(--reflect-cream);
  --active-soft: #fff8df;
  min-height: auto;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(108, 184, 237, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(7, 20, 93, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 20, 93, 0.06) 1px, transparent 1px),
    #f8fbff;
  background-size: 34px 34px;
  color: var(--reflect-ink);
  display: grid;
  gap: 18px;
  overflow: visible;
}

.reflect-method-visual[data-active-lens="capability"] {
  --active-accent: var(--reflect-blue);
  --active-soft: #eaf6ff;
}

.reflect-method-visual[data-active-lens="commitment"] {
  --active-accent: var(--reflect-mint);
  --active-soft: #eff8f0;
}

.reflect-method-visual::before {
  inset: clamp(92px, 11vw, 112px) clamp(34px, 4vw, 62px) auto;
  height: 3px;
  background: linear-gradient(90deg, var(--reflect-cream), var(--reflect-blue), var(--reflect-mint));
  clip-path: none;
  opacity: 0.8;
  z-index: 0;
}

.reflect-method-visual::after {
  content: none;
}

.reflect-method-lenses {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.reflect-method-lens {
  min-height: 154px;
  border: 1px solid rgba(7, 20, 93, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--reflect-navy);
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.reflect-method-lens:hover,
.reflect-method-lens:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(7, 20, 93, 0.34);
}

.reflect-method-lens.is-active {
  transform: translateY(-6px);
  border-color: rgba(7, 20, 93, 0.38);
  background: var(--lens-bg);
}

.reflect-method-lens-culture {
  --lens-bg: var(--reflect-cream);
}

.reflect-method-lens-capability {
  --lens-bg: var(--reflect-blue);
}

.reflect-method-lens-commitment {
  --lens-bg: var(--reflect-mint);
}

.reflect-method-lens span {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--reflect-navy);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 820;
}

.reflect-method-lens strong {
  display: block;
  margin-top: 18px;
  color: var(--reflect-ink);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
  font-weight: 800;
}

.reflect-method-lens small {
  margin-top: 8px;
  color: #596270;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 680;
}

.reflect-method-core {
  position: relative;
  z-index: 2;
  width: min(330px, 100%);
  margin-inline: auto;
  border: 1px solid rgba(7, 20, 93, 0.16);
  border-radius: 999px;
  background: var(--active-soft);
  padding: 12px 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
}

.reflect-method-core::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--active-accent);
  border: 4px solid var(--reflect-navy);
}

.reflect-method-core span {
  color: #596270;
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
}

.reflect-method-core strong {
  display: block;
  color: var(--reflect-navy);
  font-size: 18px;
  line-height: 1.1;
  font-weight: 820;
}

.reflect-method-detail {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(7, 20, 93, 0.12);
  border-radius: 8px;
  background: #ffffff;
  padding: clamp(20px, 2.6vw, 30px);
}

.reflect-method-panel[hidden] {
  display: none;
}

.reflect-method-panel {
  min-height: 190px;
}

.reflect-method-panel > span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  background: var(--active-soft);
  color: var(--reflect-navy);
  padding: 0 12px;
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.reflect-method-panel h3 {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--reflect-ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
  font-weight: 780;
}

.reflect-method-panel p {
  max-width: 650px;
  margin: 14px 0 0;
  color: #596270;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.48;
  font-weight: 560;
}

.reflect-method-panel ul {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.reflect-method-panel li {
  border: 1px solid rgba(7, 20, 93, 0.12);
  border-radius: 999px;
  background: var(--active-soft);
  color: var(--reflect-navy);
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 760;
}

@media (max-width: 980px) {
  .reflect-method-section {
    grid-template-columns: 1fr;
  }
}

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

  .reflect-method-visual::before {
    display: none;
  }

  .reflect-method-lens {
    min-height: 118px;
  }
}

/* Homepage visual reset: ATP brand, Geist-first hierarchy, image-led sections */
body:not(.reflect-page):not(.embark-page):not(.consult-page) {
  background:
    linear-gradient(180deg, rgba(218, 235, 255, 0.22), rgba(255, 255, 255, 0) 440px),
    #fff;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .hero,
body:not(.reflect-page):not(.embark-page):not(.consult-page) .trusted-section,
body:not(.reflect-page):not(.embark-page):not(.consult-page) .section-space,
body:not(.reflect-page):not(.embark-page):not(.consult-page) .dark-cta {
  width: min(calc(100% - 120px), 1280px);
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .hero {
  position: relative;
  min-height: auto;
  margin-top: 18px;
  padding: clamp(26px, 3.4vw, 48px);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 242, 198, 0.92), transparent 28%),
    linear-gradient(135deg, #e7f5ff 0%, #f7fbf8 44%, #e6f4e8 100%);
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(420px, 1fr);
  gap: clamp(26px, 4vw, 62px);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .hero::before {
  content: "";
  position: absolute;
  right: -9%;
  bottom: -24%;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 44% 56% 50% 50%;
  background: rgba(229, 210, 222, 0.55);
  z-index: -1;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .hero-media {
  position: relative;
  inset: auto;
  order: 2;
  min-height: clamp(360px, 42vw, 560px);
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 18, 44, 0.02), rgba(8, 18, 44, 0.12));
  pointer-events: none;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: none;
  transform: none;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .hero-copy {
  position: relative;
  order: 1;
  max-width: 610px;
  padding: 0;
  color: #222326;
  text-align: left;
  z-index: 1;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .hero-copy h1,
body:not(.reflect-page):not(.embark-page):not(.consult-page) .hero-copy h1 em,
body:not(.reflect-page):not(.embark-page):not(.consult-page) .center-heading h2,
body:not(.reflect-page):not(.embark-page):not(.consult-page) .section-heading h2,
body:not(.reflect-page):not(.embark-page):not(.consult-page) .challenge-map-panel h2,
body:not(.reflect-page):not(.embark-page):not(.consult-page) .loop-intro h2,
body:not(.reflect-page):not(.embark-page):not(.consult-page) .metrics-heading h2,
body:not(.reflect-page):not(.embark-page):not(.consult-page) .founders-intro h2,
body:not(.reflect-page):not(.embark-page):not(.consult-page) .faq-intro h2,
body:not(.reflect-page):not(.embark-page):not(.consult-page) .dark-cta h2,
body:not(.reflect-page):not(.embark-page):not(.consult-page) .dark-cta h2 em,
body:not(.reflect-page):not(.embark-page):not(.consult-page) .platform-showcase .platform-copy h2 {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 720;
  letter-spacing: 0;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .hero-copy h1 {
  max-width: 590px;
  margin-bottom: 22px;
  color: #202226;
  font-size: clamp(48px, 5.7vw, 82px);
  line-height: 0.96;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .hero-copy h1 em {
  display: inline;
  padding: 0 0.13em 0.05em;
  border-radius: 999px;
  background: rgba(255, 242, 198, 0.95);
  color: #07155f;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .hero-copy p {
  max-width: 560px;
  color: #46515f;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.52;
  font-weight: 560;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .hero-actions {
  margin-top: 30px;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .hero .button-glass {
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .trusted-section {
  padding-block: clamp(44px, 5vw, 70px);
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .brand-strip img {
  filter: grayscale(1) saturate(0) opacity(0.42);
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .brand-strip img:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-2px);
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .platform-intro {
  padding-top: clamp(60px, 6vw, 96px);
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .platform-showcase {
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1fr);
  gap: 18px;
  align-items: stretch;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .platform-showcase .platform-copy {
  min-height: clamp(360px, 33vw, 480px);
  padding: clamp(32px, 4.2vw, 60px);
  border-radius: 8px;
  background: #1f1e1b;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .platform-showcase .platform-copy h2 {
  color: #fff;
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1.02;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .platform-showcase .platform-copy p {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(17px, 1.25vw, 20px);
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .platform-visual,
body:not(.reflect-page):not(.embark-page):not(.consult-page) .platform-visual img {
  min-height: clamp(360px, 33vw, 480px);
  border-radius: 8px;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .platform-card-grid {
  margin-top: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .platform-card {
  min-height: 210px;
  padding: 24px;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .center-heading h2,
body:not(.reflect-page):not(.embark-page):not(.consult-page) .section-heading h2,
body:not(.reflect-page):not(.embark-page):not(.consult-page) .loop-intro h2,
body:not(.reflect-page):not(.embark-page):not(.consult-page) .metrics-heading h2,
body:not(.reflect-page):not(.embark-page):not(.consult-page) .faq-intro h2 {
  color: #202226;
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 1;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .impact-grid {
  gap: clamp(22px, 3vw, 34px);
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .impact-card {
  background: transparent;
  border: 0;
  box-shadow: none;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .impact-image {
  height: clamp(250px, 25vw, 350px);
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .impact-body {
  padding: 20px 0 0;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .impact-body .product-logo {
  margin-bottom: 16px;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .impact-body p {
  margin-bottom: 14px;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .impact-body .impact-cta {
  margin-top: 0;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .challenge-layout {
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1fr);
  gap: 18px;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .challenge-map-panel {
  min-height: 100%;
  padding: clamp(28px, 4vw, 52px);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.13), transparent 36%),
    #1f1e1b;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .challenge-map-panel h2 {
  color: #fff;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.04;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .challenge-map-panel p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(16px, 1.2vw, 19px);
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .challenge-grid {
  gap: 14px;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .challenge-card {
  min-height: 136px;
  grid-template-columns: 56px minmax(0, 1fr) 24px;
  padding: 22px 24px;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .loop-section {
  padding-block: clamp(74px, 8vw, 124px);
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .loop-intro {
  max-width: 780px;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .loop-intro h2 {
  font-size: clamp(38px, 4vw, 60px);
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .metrics-section {
  grid-template-columns: minmax(340px, 0.68fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .metrics-heading {
  max-width: 560px;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .metrics-heading h2 {
  font-size: clamp(38px, 4.4vw, 66px);
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .metrics-heading p {
  max-width: 560px;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .metrics-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .metric-card {
  min-height: 230px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .metric-card h3 {
  max-width: 260px;
  font-size: clamp(23px, 2vw, 32px);
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .metric-card p {
  max-width: 260px;
  font-size: clamp(15px, 1.1vw, 17px);
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .news-section .section-heading {
  align-items: center;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .news-grid {
  gap: 18px;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .news-card {
  min-height: 520px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: #fff;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .news-card img {
  height: 220px;
  margin-bottom: 26px;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .news-card h3 {
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.05;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .news-card:nth-child(1),
body:not(.reflect-page):not(.embark-page):not(.consult-page) .news-card:nth-child(2),
body:not(.reflect-page):not(.embark-page):not(.consult-page) .news-card:nth-child(3) {
  background: #fff;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .founders-intro {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(320px, 0.6fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 70px);
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .founders-intro h2 {
  max-width: 720px;
  color: #202226;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.02;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .founders-intro p {
  max-width: 520px;
  font-size: clamp(17px, 1.35vw, 21px);
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .founder-card {
  background: #f7fbff;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .faq-section {
  padding-top: clamp(64px, 7vw, 96px);
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .dark-cta {
  min-height: clamp(380px, 42vw, 560px);
  padding: clamp(40px, 6vw, 84px);
  border-radius: 8px;
  background: #1f1e1b;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .dark-pattern {
  display: none;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .dark-cta-copy {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .dark-cta h2 {
  color: #fff;
  font-size: clamp(38px, 4.6vw, 72px);
  line-height: 1;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .dark-cta h2 em {
  color: #d8e9f8;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .dark-cta p {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
  body:not(.reflect-page):not(.embark-page):not(.consult-page) .hero,
  body:not(.reflect-page):not(.embark-page):not(.consult-page) .trusted-section,
  body:not(.reflect-page):not(.embark-page):not(.consult-page) .section-space,
  body:not(.reflect-page):not(.embark-page):not(.consult-page) .dark-cta {
    width: min(calc(100% - 40px), 1280px);
  }

  body:not(.reflect-page):not(.embark-page):not(.consult-page) .hero,
  body:not(.reflect-page):not(.embark-page):not(.consult-page) .platform-showcase,
  body:not(.reflect-page):not(.embark-page):not(.consult-page) .challenge-layout,
  body:not(.reflect-page):not(.embark-page):not(.consult-page) .metrics-section,
  body:not(.reflect-page):not(.embark-page):not(.consult-page) .founders-intro {
    grid-template-columns: 1fr;
  }

  body:not(.reflect-page):not(.embark-page):not(.consult-page) .hero-media {
    order: 1;
    min-height: 360px;
  }

  body:not(.reflect-page):not(.embark-page):not(.consult-page) .hero-copy {
    order: 2;
  }

  body:not(.reflect-page):not(.embark-page):not(.consult-page) .platform-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body:not(.reflect-page):not(.embark-page):not(.consult-page) .hero,
  body:not(.reflect-page):not(.embark-page):not(.consult-page) .trusted-section,
  body:not(.reflect-page):not(.embark-page):not(.consult-page) .section-space,
  body:not(.reflect-page):not(.embark-page):not(.consult-page) .dark-cta {
    width: min(calc(100% - 28px), 1280px);
  }

  body:not(.reflect-page):not(.embark-page):not(.consult-page) .hero {
    padding: 20px;
  }

  body:not(.reflect-page):not(.embark-page):not(.consult-page) .hero-media {
    min-height: 280px;
  }

  body:not(.reflect-page):not(.embark-page):not(.consult-page) .hero-copy h1,
  body:not(.reflect-page):not(.embark-page):not(.consult-page) .center-heading h2,
  body:not(.reflect-page):not(.embark-page):not(.consult-page) .section-heading h2,
  body:not(.reflect-page):not(.embark-page):not(.consult-page) .loop-intro h2,
  body:not(.reflect-page):not(.embark-page):not(.consult-page) .metrics-heading h2,
  body:not(.reflect-page):not(.embark-page):not(.consult-page) .founders-intro h2,
  body:not(.reflect-page):not(.embark-page):not(.consult-page) .faq-intro h2,
  body:not(.reflect-page):not(.embark-page):not(.consult-page) .dark-cta h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  body:not(.reflect-page):not(.embark-page):not(.consult-page) .platform-card-grid,
  body:not(.reflect-page):not(.embark-page):not(.consult-page) .metrics-grid,
  body:not(.reflect-page):not(.embark-page):not(.consult-page) .news-grid {
    grid-template-columns: 1fr;
  }

  body:not(.reflect-page):not(.embark-page):not(.consult-page) .challenge-card {
    grid-template-columns: minmax(0, 1fr) 24px;
  }

  body:not(.reflect-page):not(.embark-page):not(.consult-page) .challenge-card .card-placeholder {
    display: none;
  }
}

/* Homepage annual-report presentation motion */
@keyframes atpHeroImageSettle {
  from {
    transform: scale(1.035);
  }

  to {
    transform: scale(1);
  }
}

@keyframes atpQuietPulse {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.42;
    transform: scale(1);
  }
}

body:not(.reflect-page):not(.embark-page):not(.consult-page).animation-ready .presentation-reveal {
  opacity: 0;
  clip-path: inset(0 0 22% 0);
  transform: translate3d(0, 32px, 0);
  transition:
    opacity 780ms cubic-bezier(0.2, 0.8, 0.2, 1),
    clip-path 880ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 880ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, clip-path, transform;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page).animation-ready .presentation-stage.is-visible .presentation-reveal {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translate3d(0, 0, 0);
}

body:not(.reflect-page):not(.embark-page):not(.consult-page).animation-ready .reveal-title {
  --reveal-delay: 80ms;
  transform: translate3d(0, 46px, 0);
}

body:not(.reflect-page):not(.embark-page):not(.consult-page).animation-ready .reveal-copy {
  --reveal-delay: 280ms;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page).animation-ready .reveal-actions {
  --reveal-delay: 460ms;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page).animation-ready .reveal-kicker {
  --reveal-delay: 90ms;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page).animation-ready .reveal-media {
  --reveal-delay: 360ms;
  transform: translate3d(34px, 0, 0) scale(0.985);
}

body:not(.reflect-page):not(.embark-page):not(.consult-page).animation-ready .home-hero-stage .hero-media {
  opacity: 0;
  transform: translate3d(26px, 0, 0) scale(0.985);
  transition:
    opacity 960ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 1200ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: 560ms;
  will-change: opacity, transform;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page).animation-ready .home-hero-stage.is-visible .hero-media {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

body:not(.reflect-page):not(.embark-page):not(.consult-page).animation-ready .home-hero-stage.is-visible .hero-media img {
  animation: atpHeroImageSettle 1900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page).animation-ready .home-trusted-stage .brand-strip img {
  opacity: 0;
  filter: grayscale(1) saturate(0) opacity(0.16);
  transform: translate3d(0, 18px, 0) scale(0.96);
  transition:
    opacity 680ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 260ms ease,
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--logo-delay, 140ms);
  will-change: opacity, filter, transform;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page).animation-ready .home-trusted-stage.is-visible .brand-strip img {
  opacity: 0.44;
  filter: grayscale(1) saturate(0) opacity(0.44);
  transform: translate3d(0, 0, 0) scale(1);
}

body:not(.reflect-page):not(.embark-page):not(.consult-page).animation-ready .home-trusted-stage.is-visible .brand-strip img:hover,
body:not(.reflect-page):not(.embark-page):not(.consult-page).animation-ready .home-trusted-stage.is-visible .brand-strip img:focus-visible {
  opacity: 1;
  filter: none;
  transform: translate3d(0, -2px, 0) scale(1);
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .home-trusted-stage .brand-strip img:nth-child(1) {
  --logo-delay: 150ms;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .home-trusted-stage .brand-strip img:nth-child(2) {
  --logo-delay: 220ms;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .home-trusted-stage .brand-strip img:nth-child(3) {
  --logo-delay: 290ms;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .home-trusted-stage .brand-strip img:nth-child(4) {
  --logo-delay: 360ms;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .home-trusted-stage .brand-strip img:nth-child(5) {
  --logo-delay: 430ms;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .home-trusted-stage .brand-strip img:nth-child(6) {
  --logo-delay: 500ms;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .home-trusted-stage .brand-strip img:nth-child(7) {
  --logo-delay: 570ms;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .home-trusted-stage .brand-strip img:nth-child(8) {
  --logo-delay: 640ms;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .home-trusted-stage .brand-strip img:nth-child(9) {
  --logo-delay: 710ms;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page).animation-ready .home-platform-stage .platform-card:nth-child(1) {
  --reveal-delay: 420ms;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page).animation-ready .home-platform-stage .platform-card:nth-child(2) {
  --reveal-delay: 520ms;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page).animation-ready .home-platform-stage .platform-card:nth-child(3) {
  --reveal-delay: 620ms;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page).animation-ready .home-platform-stage .platform-card:nth-child(4) {
  --reveal-delay: 720ms;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page).animation-ready .home-cta-stage::after {
  animation: atpQuietPulse 4600ms ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  body:not(.reflect-page):not(.embark-page):not(.consult-page).animation-ready .presentation-reveal,
  body:not(.reflect-page):not(.embark-page):not(.consult-page).animation-ready .home-hero-stage .hero-media,
  body:not(.reflect-page):not(.embark-page):not(.consult-page).animation-ready .home-trusted-stage .brand-strip img {
    opacity: 1;
    clip-path: none;
    filter: none;
    transform: none;
    transition: none;
  }

  body:not(.reflect-page):not(.embark-page):not(.consult-page).animation-ready .home-hero-stage.is-visible .hero-media img,
  body:not(.reflect-page):not(.embark-page):not(.consult-page).animation-ready .home-cta-stage::after {
    animation: none;
  }
}

/* Homepage case-study cards */
body:not(.reflect-page):not(.embark-page):not(.consult-page) .case-study-card {
  position: relative;
  isolation: isolate;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  padding-bottom: 72px;
  border: 1px solid rgba(7, 20, 93, 0.12) !important;
  box-shadow: 0 12px 30px rgba(7, 20, 93, 0.08);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .case-study-card::after {
  content: "Case study \2192";
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  height: 28px;
  padding: 0 10px;
  place-items: center;
  border-radius: 6px;
  background: #07145d;
  color: #ffffff;
  font-size: 11px;
  font-weight: 780;
  line-height: 1;
  pointer-events: none;
  transform: translateX(0);
  opacity: 1;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .case-study-card:hover,
body:not(.reflect-page):not(.embark-page):not(.consult-page) .case-study-card:focus-visible {
  background: #f8fbff;
  border-color: rgba(203, 19, 86, 0.24) !important;
  box-shadow: 0 18px 42px rgba(7, 20, 93, 0.12);
  transform: translateY(-3px);
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .case-study-card:hover::after,
body:not(.reflect-page):not(.embark-page):not(.consult-page) .case-study-card:focus-visible::after {
  background: #cb1356;
  transform: translateX(2px);
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .case-study-card img {
  transition:
    filter 180ms ease,
    transform 260ms ease;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .case-study-card:hover img,
body:not(.reflect-page):not(.embark-page):not(.consult-page) .case-study-card:focus-visible img {
  filter: saturate(1.04);
  transform: scale(1.012);
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .news-card .case-study-pill {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid rgba(7, 20, 93, 0.14);
  border-radius: 6px;
  background: #07145d;
  color: #ffffff;
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 8px 18px rgba(7, 20, 93, 0.12);
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .case-study-card:nth-child(2) .case-study-pill {
  background: #07145d;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .case-study-card:nth-child(3) .case-study-pill {
  background: #07145d;
}

body:not(.reflect-page):not(.embark-page):not(.consult-page) .case-study-card .practice-use {
  padding-right: 46px;
}

/* Embark typography correction: preserve copy, restore product-matched type and color */
body.embark-page {
  --embark-navy: #00114e;
  --embark-magenta: #cb1356;
  border-top-color: var(--embark-magenta);
  color: var(--ink);
}

body.embark-page .embark-kicker,
body.embark-page .embark-section-label {
  background: rgba(203, 19, 86, 0.08);
  color: var(--embark-navy);
}

body.embark-page .embark-kicker span {
  background: var(--embark-magenta);
}

body.embark-page .embark-hero h1,
body.embark-page .embark-problem-copy h2,
body.embark-page .embark-solution-grid h2,
body.embark-page .embark-heading h2,
body.embark-page .embark-architecture-copy h2,
body.embark-page .embark-action-grid h2,
body.embark-page .embark-effort h2,
body.embark-page .embark-action-panel h3,
body.embark-page .embark-outcome-grid h3,
body.embark-page .embark-pillar-grid h3,
body.embark-page .embark-use-grid h3,
body.embark-page .embark-architecture-list h3,
body.embark-page .faq-intro h2,
body.embark-page .dark-cta h2,
body.embark-page .dark-cta h2 em {
  color: var(--ink);
  font-family: var(--sans);
  font-style: normal;
  letter-spacing: 0;
}

body.embark-page .embark-hero h1 {
  font-size: clamp(54px, 5.2vw, 84px);
  line-height: 0.96;
  font-weight: 820;
}

body.embark-page .embark-hero h1 em {
  color: var(--embark-magenta);
  font-family: var(--sans);
  font-size: 0.72em;
  font-style: normal;
  font-weight: 760;
  line-height: 1.02;
}

body.embark-page .embark-problem-copy h2,
body.embark-page .dark-cta h2,
body.embark-page .dark-cta h2 em {
  color: #ffffff;
}

body.embark-page .embark-problem-copy h2 {
  font-family: var(--sans);
  font-size: clamp(42px, 4.7vw, 72px);
  line-height: 1;
  font-weight: 780;
}

body.embark-page .embark-solution-grid h2,
body.embark-page .embark-heading h2,
body.embark-page .embark-architecture-copy h2,
body.embark-page .embark-action-grid h2,
body.embark-page .embark-effort h2,
body.embark-page .faq-intro h2 {
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1.02;
  font-weight: 780;
}

body.embark-page .embark-hero p,
body.embark-page .embark-solution-grid p,
body.embark-page .embark-heading p,
body.embark-page .embark-architecture-copy p,
body.embark-page .embark-action p,
body.embark-page .embark-effort p,
body.embark-page .embark-proof-heading p,
body.embark-page .faq-intro p {
  color: #4f5964;
  font-family: var(--sans);
  font-weight: 520;
}

body.embark-page .embark-problem-copy p,
body.embark-page .dark-cta p {
  color: rgba(255, 255, 255, 0.78);
}

body.embark-page .embark-journey-track span,
body.embark-page .embark-architecture-list span,
body.embark-page .embark-stakeholder-card span,
body.embark-page .embark-action-panel > span,
body.embark-page .embark-outcome-grid span,
body.embark-page .practice-use {
  color: var(--embark-navy);
}

body.embark-page .embark-readiness strong,
body.embark-page .embark-architecture-list strong,
body.embark-page .embark-stakeholder-card strong {
  color: var(--embark-navy);
}

body.embark-page .button-dark,
body.embark-page .dark-cta .button-light {
  border-color: var(--embark-navy);
}

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

/* Reflect typography correction: remove decorative Happy Times usage without changing copy */
body.reflect-page {
  --serif: var(--sans);
  --serif-fancy: var(--sans);
  font-family: var(--sans);
}

body.reflect-page :is(h1, h2, h3, h4, h5, h6, p, a, button, span, strong, small, em, li, label, input, textarea, summary) {
  font-family: var(--sans) !important;
  letter-spacing: 0;
}

body.reflect-page :is(h1, h2, h3, h4, h5, h6, em, blockquote) {
  font-style: normal;
}

/* Consult typography correction: keep Happy Times out of core reading surfaces */
body.consult-page {
  --serif: var(--sans);
  --serif-fancy: var(--sans);
  font-family: var(--sans);
}

body.consult-page :is(h1, h2, h3, h4, h5, h6, p, a, button, span, strong, small, em, li, label, input, textarea, summary) {
  font-family: var(--sans) !important;
  letter-spacing: 0;
}

body.consult-page :is(h1, h2, h3, h4, h5, h6, em, blockquote) {
  font-style: normal;
}

body.consult-page :is(.consult-hero h1, .consult-reality h2, .consult-heading h2, .consult-solutions-panel h2, .consult-proof-copy h2, .faq-intro h2, .dark-cta h2, .dark-cta h2 em) {
  font-weight: 780;
}

body.consult-page .consult-hero h1 em {
  color: #5d6670;
  font-weight: 700;
}
