:root {
  --ink: #111111;
  --muted: #5a5f66;
  --line: #d9d9d9;
  --paper: #f4f4f2;
  --panel: #ffffff;
  --blue: #1f5f8b;
  --green: #e6eee9;
  --gold: #efe3c3;
  --rose: #f1dfda;
  --shadow: 0 18px 48px rgba(0, 0, 0, .06);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 34px;
  background: rgba(17, 17, 17, .97);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  min-width: 220px;
}

.brand-mark {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand-copy span {
  line-height: 1.1;
}

.brand small {
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 15px;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  min-width: 0;
}

.nav a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
}

.nav-button {
  padding: 8px 11px;
  border-radius: 7px;
  background: #fff;
  color: var(--ink) !important;
}

main {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.hero,
.page-hero {
  padding: 74px 0 42px;
}

.page-hero {
  position: relative;
  width: 100%;
  margin: 0 0 28px;
  padding: 78px 34px 64px;
  background: #111;
  color: #fff;
  overflow: hidden;
}

.page-hero::after,
.mck-hero::after {
  content: "";
  position: absolute;
  right: 46px;
  top: 50%;
  width: min(168px, 22vw);
  aspect-ratio: 1;
  background: url("assets/portage-seal-blush-clean.png") center / contain no-repeat;
  opacity: .105;
  transform: translateY(-50%);
  pointer-events: none;
}

.mck-hero::after {
  display: none;
}

.page-hero.quiet-seal::after {
  right: 40px;
  top: 64%;
  width: min(112px, 15vw);
  opacity: .18;
  transform: translateY(-50%);
}

.page-hero > *,
.mck-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  color: #7db5e8;
}

.page-hero h1 {
  max-width: 980px;
  color: #fff;
}

.page-hero .lead {
  max-width: 820px;
  color: rgba(255,255,255,.8);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 40px;
  align-items: center;
}

.hero-logo-lockup {
  width: min(210px, 64vw);
  margin: 0 auto 28px;
  opacity: .9;
}

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

.report-logo {
  display: block;
  width: min(154px, 56vw);
  height: auto;
  margin: 0 0 16px;
}

.premium-cover .report-logo {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 880px;
  font-size: 70px;
  line-height: .96;
  font-weight: 500;
  font-family: Georgia, "Times New Roman", serif;
}

h2 {
  margin: 0 0 10px;
  font-size: 38px;
  line-height: 1.08;
  font-weight: 500;
  font-family: Georgia, "Times New Roman", serif;
}

h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.22;
  font-family: Georgia, "Times New Roman", serif;
}

.lead {
  max-width: 780px;
  margin: 20px 0 0;
  color: #2f3337;
  font-size: 23px;
  line-height: 1.34;
}

.hero-actions,
.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 17px;
  border: 0;
  border-radius: 7px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  font-family: Arial, Helvetica, sans-serif;
}

.button.primary {
  background: var(--ink);
  color: #fff;
}

.button.secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.hero-card,
.path-section article,
.split-section,
.trust-section,
.question-section,
.standard-section,
.method-section,
.services-preview,
.operating-example-section,
.report-preview-section,
.ai-note,
.assessment-form,
.report-panel,
.pricing-grid article,
.booking-panel,
.insight-grid article,
.resource-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: none;
}

.hero-card {
  padding: 26px;
  background: #fff;
}

.hero-card p,
.path-section p,
.split-section p,
.services-preview p,
.ai-note p,
.pricing-grid p,
.pricing-grid span,
.booking-panel p,
.report p,
.report li,
.empty-state {
  color: var(--muted);
}

.path-section,
.service-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.path-section article,
.pricing-grid article {
  padding: 22px;
}

.path-section span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.path-section a {
  display: inline-block;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.highlight {
  background: #f2f6f9 !important;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  margin: 28px 0;
  padding: 34px;
  border-top: 5px solid #111;
}

.trust-section,
.question-section,
.method-section,
.resource-section {
  margin: 28px 0;
  padding: 34px;
}

.trust-section,
.method-section,
.resource-section,
.services-preview,
.fit-section,
.ai-note {
  box-shadow: none;
}

.trust-section p,
.question-section p {
  max-width: 850px;
  color: #344352;
}

.question-section {
  background: #fff;
  box-shadow: none;
}

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

.question-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f7f5;
}

.question-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.question-grid p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.question-close {
  margin-bottom: 0;
  font-weight: 800;
}

.standard-hero h1 {
  max-width: 1000px;
}

.standard-section {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
  margin: 28px 0;
  padding: 34px;
  border-top: 5px solid #111;
}

.standard-lines {
  display: grid;
  gap: 10px;
}

.standard-lines p {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.method-grid article {
  display: grid;
  gap: 8px;
  min-height: 178px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.method-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.method-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.stack-list {
  display: grid;
  gap: 10px;
}

.stack-list div,
.booking-options article {
  display: grid;
  gap: 3px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.stack-list span,
.booking-options span {
  color: var(--muted);
  font-size: 14px;
}

.services-preview,
.ai-note,
.booking-panel {
  margin: 28px 0;
  padding: 34px;
}

.section-title {
  max-width: 760px;
  margin-bottom: 20px;
}

.service-grid {
  grid-template-columns: repeat(5, 1fr);
  margin: 0 0 22px;
}

.service-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.ai-note {
  background: #111;
  color: #fff;
  border: 0;
}

.ai-note .eyebrow {
  color: #7db5e8;
}

.ai-note p,
.ai-note h2 {
  color: #fff;
}

.about-intro + .split-section + .perspective-section,
.personal-motive-section,
.personal-credo {
  position: relative;
}

.question-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.question-list p {
  margin: 0;
  padding: 15px 16px;
  border: 1px solid rgba(99, 78, 58, .12);
  border-radius: 16px;
  background: rgba(255,255,255,.66);
  color: var(--ink);
  font-weight: 800;
}

.integration-status {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 16px;
  border: 1px solid rgba(99, 78, 58, .16);
  border-radius: 18px;
  background: rgba(255,255,255,.64);
}

.integration-status strong {
  color: var(--ink);
}

.integration-status span {
  color: var(--muted);
}

.secure-upload-status {
  border-left: 5px solid #f3d8a8;
}

.upload-field:has(input:disabled) {
  opacity: .62;
}

.upload-field input:disabled {
  cursor: not-allowed;
}

.admin-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.admin-dashboard-grid article {
  display: grid;
  gap: 4px;
  padding: 22px;
  border: 1px solid rgba(99, 78, 58, .12);
  border-radius: 20px;
  background: rgba(255, 250, 243, .82);
  box-shadow: var(--soft-shadow);
}

.admin-dashboard-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 500;
}

.admin-dashboard-grid span,
.connection-list span {
  color: var(--muted);
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.table-wrap th,
.table-wrap td {
  padding: 11px 10px;
  border-bottom: 1px solid rgba(99, 78, 58, .12);
  text-align: left;
  vertical-align: top;
}

.connection-list {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.connection-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(99, 78, 58, .12);
}

.ops-command-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 18px;
  padding: 22px;
  border: 1px solid rgba(99, 78, 58, .14);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
}

.ops-command-bar h2 {
  margin-bottom: 4px;
  font-size: 34px;
}

.ops-command-bar p {
  margin: 0;
  color: var(--muted);
}

.ops-dashboard-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ops-dashboard-grid article {
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.ops-dashboard-grid small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.ops-priority-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0;
}

.ops-work-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(99, 78, 58, .14);
  border-radius: 8px;
  background: #fff;
}

.ops-panel-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.ops-panel-header h3 {
  margin: 0;
}

.ops-panel-header span {
  min-width: 34px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.ops-work-panel p {
  margin: 0;
  color: var(--muted);
}

.ops-work-panel ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ops-work-panel li {
  display: grid;
  gap: 3px;
  padding: 12px 0;
  border-top: 1px solid rgba(99, 78, 58, .12);
}

.ops-work-panel li span,
.ops-work-panel li small {
  color: var(--muted);
}

.ops-work-panel li small {
  font-size: 12px;
}

.ops-warning {
  border-left: 5px solid #d9a441;
  border-radius: 8px;
  background: #fff9ed;
}

.ops-principle-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 44px;
}

.ops-principle-strip span {
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: #111;
  color: rgba(255,255,255,.88);
  font-weight: 800;
}

.personal-motive-section {
  border-left: 5px solid #f3d8a8;
}

.evolution-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0;
  overflow: hidden;
  border: 1px solid rgba(99, 78, 58, .12);
  border-radius: 24px;
  background: rgba(99, 78, 58, .14);
  box-shadow: var(--soft-shadow);
}

.evolution-section div {
  position: relative;
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(255, 250, 243, .82);
  text-align: center;
}

.evolution-section div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  z-index: 1;
  width: 16px;
  height: 16px;
  border-top: 1px solid rgba(99, 78, 58, .24);
  border-right: 1px solid rgba(99, 78, 58, .24);
  background: rgba(255, 250, 243, .82);
  transform: translateY(-50%) rotate(45deg);
}

.evolution-section span {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.evolution-section strong {
  color: var(--ink);
  display: block;
  font-size: .92rem;
  line-height: 1.25;
  margin-bottom: 8px;
}

.evolution-section span {
  color: #6b5f56;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.belief-section {
  margin: 28px 0;
  padding: 34px;
  border: 1px solid rgba(99, 78, 58, .12);
  border-radius: 24px;
  background: rgba(255, 250, 243, .78);
  box-shadow: var(--soft-shadow);
}

.belief-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.belief-grid article {
  border: 1px solid rgba(99, 78, 58, .12);
  border-radius: 18px;
  background: rgba(255,255,255,.62);
  padding: 18px;
}

.belief-grid span {
  color: #a56f2b;
  display: block;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.belief-grid p {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.42;
  margin: 0;
}

.personal-credo {
  background:
    radial-gradient(circle at 16% 12%, rgba(243, 216, 168, .20), transparent 30%),
    linear-gradient(135deg, rgba(255,250,243,.92), rgba(255,255,255,.72));
}

.ai-note .check-list span {
  border-color: rgba(99, 78, 58, .14);
  background: rgba(255,255,255,.72);
  color: var(--ink);
}

.check-list,
.resource-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.check-list span,
.resource-list span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  font-size: 14px;
  font-weight: 800;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.insight-grid article {
  padding: 24px;
}

.insight-grid a {
  display: inline-block;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.resource-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  align-items: center;
  background: #fff;
}

.assessment-layout {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin: 42px 0 54px;
}

.provider-layout {
  grid-template-columns: 460px minmax(0, 1fr);
}

.assessment-form,
.report-panel {
  padding: 28px;
}

.assessment-form {
  display: grid;
  gap: 15px;
  border-top: 5px solid #111;
  box-shadow: none;
}

.form-header p {
  margin-bottom: 0;
}

label {
  display: grid;
  gap: 6px;
  color: #2d3a47;
  font-weight: 800;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
}

select {
  width: 100%;
  min-height: 43px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  padding: 8px 10px;
  font: inherit;
  font-family: Arial, Helvetica, sans-serif;
}

input {
  width: 100%;
  min-height: 43px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  padding: 8px 10px;
  font: inherit;
}

.report-panel {
  min-height: 360px;
  background: #fff;
  border-top: 5px solid var(--blue);
  box-shadow: none;
}

.empty-state {
  margin: 0;
}

.report-top {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.prepared-block {
  display: grid;
  gap: 4px;
  margin: 12px 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fbfcfd;
  color: #344352;
  font-size: 14px;
}

.confidence-level {
  display: inline-flex;
  margin: 2px 0 14px;
  padding: 8px 12px;
  border-radius: 7px;
  background: #eef3f7;
  color: var(--ink);
  font-weight: 800;
}

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

.confidence-grid div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fbfcfd;
}

.principle {
  display: grid;
  gap: 5px;
  margin: 14px 0;
  padding: 16px;
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  background: #f4f4f2;
}

.principle strong {
  color: var(--blue);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.principle span {
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.recommendation {
  background: #fbfcfd;
  padding-left: 16px;
  padding-right: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.signature {
  margin-bottom: 0;
  color: var(--ink) !important;
  font-weight: 800;
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.fit-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  align-items: start;
  margin: 28px 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
  border-top: 5px solid #111;
}

.fit-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fit-columns article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.fit-columns ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.audience-moment-section,
.receive-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  align-items: start;
  margin: 28px 0;
  padding: 34px;
  border: 1px solid rgba(99, 78, 58, .12);
  border-radius: 24px;
  background: rgba(255, 250, 242, .72);
}

.audience-moment-section h2,
.receive-section h2 {
  margin-top: 0;
}

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

.quote-grid blockquote {
  margin: 0;
  border-left: 4px solid #d8aa63;
  border-radius: 14px;
  background: rgba(255,255,255,.64);
  color: #211b16;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1.45;
  padding: 18px;
}

.check-grid article {
  border: 1px solid rgba(99, 78, 58, .12);
  border-radius: 16px;
  background: rgba(255,255,255,.64);
  padding: 18px;
}

.check-grid strong {
  color: #211b16;
  display: block;
  font-size: 1rem;
  line-height: 1.35;
  margin-bottom: 8px;
}

.check-grid span {
  color: #5d534b;
  display: block;
  line-height: 1.55;
}

.fit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fit-list span {
  border: 1px solid rgba(99, 78, 58, .16);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: #211b16;
  font-weight: 800;
  padding: 10px 13px;
}

.business-model-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: start;
  margin: 28px 0;
  padding: 34px;
  border: 1px solid rgba(99, 78, 58, .12);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.72), rgba(246,241,232,.72)),
    radial-gradient(circle at 90% 0%, rgba(216,170,99,.20), transparent 32%);
}

.business-model-section h2 {
  margin-top: 0;
}

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

.model-compare-grid article {
  border: 1px solid rgba(99, 78, 58, .14);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  padding: 22px;
}

.model-compare-grid h3 {
  color: #211b16;
  font-size: 1.3rem;
  margin: 0 0 12px;
}

.model-compare-grid ul {
  color: #5d534b;
  line-height: 1.7;
  margin: 0;
  padding-left: 19px;
}

.provider-insight-section {
  margin: 28px 0;
  padding: 42px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 14% 10%, rgba(243,216,168,.18), transparent 30%),
    linear-gradient(135deg, #252031, #171420);
  box-shadow: 0 24px 70px rgba(29, 23, 38, .14);
}

.provider-insight-section .eyebrow {
  color: #f3d8a8;
}

.provider-insight-section h2 {
  color: #fffaf0;
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: .98;
  margin: 0 0 22px;
  max-width: 980px;
}

.provider-insight-section p {
  color: rgba(255,255,255,.78);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 850px;
}

.library-orientation,
.reading-path-section,
.core-ideas-section,
.library-section,
.library-search-section,
.featured-essay-section {
  margin: 28px 0;
}

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

.library-orientation div,
.core-ideas-grid article,
.pathway-grid article {
  border: 1px solid rgba(99, 78, 58, .12);
  border-radius: 18px;
  background: rgba(255,255,255,.64);
  padding: 22px;
}

.library-orientation h2,
.pathway-grid h3 {
  font-size: 1.3rem;
  margin: 0 0 10px;
}

.featured-essay-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(99, 78, 58, .12);
  border-radius: 28px;
  background: rgba(255,250,242,.74);
  padding: 28px;
}

.featured-essay-section img {
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  object-fit: cover;
  width: 100%;
}

.featured-essay-section h2 {
  margin-top: 0;
}

.library-meta {
  color: #7b6a5c;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.library-search-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: end;
  border: 1px solid rgba(99, 78, 58, .12);
  border-radius: 24px;
  background: rgba(255,255,255,.58);
  padding: 28px;
}

.library-search {
  color: #211b16;
  display: grid;
  font-weight: 800;
  gap: 10px;
}

.library-search input {
  border: 1px solid rgba(99, 78, 58, .18);
  border-radius: 14px;
  background: #fffaf2;
  color: #211b16;
  font: inherit;
  padding: 15px 16px;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 0;
}

.library-grid article,
.core-ideas-grid article {
  min-height: 100%;
}

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

.core-ideas-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pathway-grid ol {
  color: #5d534b;
  line-height: 1.65;
  padding-left: 20px;
}

.pathway-grid a,
.core-ideas-grid a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.toolkit-request-form {
  display: grid;
  gap: 18px;
}

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

.toolkit-choice-grid label {
  align-items: flex-start;
  border: 1px solid rgba(99, 78, 58, .14);
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  color: #211b16;
  cursor: pointer;
  display: flex;
  gap: 12px;
  padding: 16px;
}

.toolkit-choice-grid input {
  margin-top: 4px;
}

.toolkit-choice-grid strong,
.toolkit-choice-grid em {
  display: block;
}

.toolkit-choice-grid strong {
  line-height: 1.35;
}

.toolkit-choice-grid em {
  color: #6b5f56;
  font-style: normal;
  line-height: 1.45;
  margin-top: 5px;
}

.toolkit-contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
}

.toolkit-contact-row input {
  border: 1px solid rgba(99, 78, 58, .18);
  border-radius: 14px;
  font: inherit;
  padding: 13px 14px;
}

[data-library-item][hidden] {
  display: none !important;
}

.report-section {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.report-section:last-of-type {
  border-bottom: 0;
}

.report-section ul,
.report-section ol {
  margin: 0;
  padding-left: 20px;
}

.score-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 18px 0 0;
  padding: 18px;
  border-radius: 8px;
  background: #eef3f7;
}

.score-banner strong {
  font-size: 38px;
  line-height: 1;
}

.score-banner span {
  color: #2e3d49;
  font-weight: 800;
}

.score-table {
  display: grid;
  gap: 8px;
}

.score-table div {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fbfcfd;
}

.score-table em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

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

.pricing-grid article {
  display: grid;
  gap: 8px;
  border-top: 5px solid #111;
  box-shadow: none;
}

.pricing-grid strong {
  color: var(--blue);
}

.offer-grid article {
  position: relative;
  align-content: start;
}

.service-label {
  color: #8a5c22;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  margin: 0;
  text-transform: uppercase;
}

.service-when {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.45;
  margin: 0;
}

.offer-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.offer-list li {
  color: #4c4354;
  line-height: 1.45;
}

.offer-grid article a {
  align-self: end;
  color: var(--ink);
  font-weight: 900;
  margin-top: 8px;
  text-decoration: none;
}

.offer-grid article a:hover {
  text-decoration: underline;
}

.offer-grid .popular::before {
  content: "Most popular";
  position: absolute;
  right: 18px;
  top: 18px;
  border: 1px solid rgba(165, 111, 43, .22);
  border-radius: 999px;
  background: rgba(255, 250, 243, .88);
  color: #8a5c22;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  padding: 7px 10px;
  text-transform: uppercase;
}

.offer-grid .popular h2 {
  padding-right: 110px;
}

.booking-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  border-top: 5px solid #111;
  box-shadow: none;
}

.booking-options {
  display: grid;
  gap: 10px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1160px, calc(100% - 36px));
  margin: 28px auto 0;
  padding: 24px 0 38px;
  color: var(--muted);
  font-size: 14px;
}

.print-wrap {
  max-width: 900px;
  margin: 24px auto;
}

@media (max-width: 1040px) {
  .hero,
  .assessment-layout,
  .provider-layout,
  .split-section,
  .booking-panel,
  .fit-section,
  .audience-moment-section,
  .receive-section,
  .business-model-section,
  .featured-essay-section,
  .library-search-section,
  .standard-section,
  .resource-section {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .path-section,
  .pricing-grid,
  .fit-columns,
  .confidence-grid,
  .question-grid,
  .quote-grid,
  .check-grid,
  .model-compare-grid,
  .library-orientation,
  .core-ideas-grid,
  .pathway-grid,
  .toolkit-choice-grid,
  .method-grid,
  .insight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  h1 {
    font-size: 46px;
  }
}

@media (max-width: 680px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    padding: 16px 18px;
  }

  main {
    width: min(100% - 24px, 1160px);
  }

  .hero,
  .page-hero {
    padding: 48px 0 30px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 26px;
  }

  .lead {
    font-size: 17px;
  }

  .path-section,
  .service-grid,
  .pricing-grid,
  .fit-columns,
  .confidence-grid,
  .question-grid,
  .quote-grid,
  .check-grid,
  .model-compare-grid,
  .library-orientation,
  .core-ideas-grid,
  .pathway-grid,
  .toolkit-choice-grid,
  .toolkit-contact-row,
  .method-grid,
  .insight-grid,
  .score-table div {
    grid-template-columns: 1fr;
  }

  .split-section,
  .trust-section,
  .question-section,
  .standard-section,
  .fit-section,
  .audience-moment-section,
  .receive-section,
  .business-model-section,
  .featured-essay-section,
  .library-search-section,
  .provider-insight-section,
  .method-section,
  .resource-section,
  .services-preview,
  .ai-note,
  .assessment-form,
  .report-panel,
  .booking-panel {
    padding: 22px;
  }
}

.consultant-hero {
  position: relative;
  margin-top: 22px;
  padding: 64px 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(246,248,248,.94)),
    radial-gradient(circle at 90% 10%, rgba(223, 238, 231, .72), transparent 34%);
  box-shadow: var(--shadow);
}

.mck-hero {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  padding: 84px 44px 76px;
  border: 0;
  border-radius: 0 0 8px 8px;
  background: #111;
  color: #fff;
  box-shadow: none;
  overflow: hidden;
}

.consultant-hero h1 {
  max-width: 760px;
  font-size: 54px;
}

.mck-hero h1 {
  max-width: 780px;
  color: #fff;
  font-size: 74px;
}

.mck-hero .lead {
  max-width: 780px;
  color: rgba(255,255,255,.82);
}

.mck-hero .eyebrow {
  color: #7db5e8;
}

.mck-hero .button.primary {
  background: #fff;
  color: #111;
}

.mck-hero .button.secondary {
  border-color: rgba(255,255,255,.32);
  background: transparent;
  color: #fff;
}

.consultant-hero .hero-card {
  align-self: stretch;
  display: grid;
  align-content: start;
  background: #1f1f1f;
  color: #fff;
}

.consultant-hero .hero-card .eyebrow {
  color: var(--gold);
}

.consultant-hero .hero-card p {
  color: rgba(255,255,255,.78);
}

.cred-strip,
.proof-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cred-strip {
  margin-top: 22px;
}

.cred-strip span,
.proof-bar span {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: #344352;
  font-size: 13px;
  font-weight: 800;
  font-family: Arial, Helvetica, sans-serif;
}

.mck-hero .cred-strip span {
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.78);
}

.proof-bar {
  justify-content: center;
  overflow: hidden;
  margin: 18px 0 28px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.capability-section {
  margin: 48px 0;
}

.section-kicker {
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #bdbdbd;
}

.section-kicker h2 {
  max-width: 780px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #111;
  border: 1px solid #111;
}

.capability-grid article {
  display: grid;
  background: #fff;
}

.capability-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: grayscale(.1) contrast(1.04);
}

.capability-grid article > div {
  display: grid;
  align-content: start;
  min-height: 300px;
  padding: 24px;
}

.capability-grid span {
  margin-bottom: 12px;
  color: var(--blue);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.capability-grid h3 {
  font-size: 28px;
  line-height: 1.06;
  font-weight: 500;
}

.capability-grid p {
  color: var(--muted);
}

.capability-grid a {
  align-self: end;
  margin-top: 18px;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  text-decoration: none;
}

.capability-grid a::after {
  content: " ->";
}

.editorial-band {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 0;
  align-items: stretch;
  margin: 0 0 42px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
}

.editorial-band img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: grayscale(.08) contrast(1.04);
}

.editorial-band > div {
  display: grid;
  align-content: center;
  padding: 42px;
}

.editorial-band .eyebrow {
  color: #7db5e8;
}

.editorial-band h2 {
  color: #fff;
}

.editorial-band p {
  color: rgba(255,255,255,.76);
  font-size: 18px;
}

.mini-paths {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.mini-paths a {
  display: grid;
  gap: 3px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: #fff;
  text-decoration: none;
}

.mini-paths span {
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

.authority-section {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
}

.authority-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

blockquote {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.18;
  font-weight: 800;
}

.insight-proof-section,
.lead-magnet-section,
.decision-filter-section,
.consulting-standard-section,
.client-criteria-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
  margin: 28px 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.decision-filter-section {
  background: #fff;
}

.consulting-standard-section {
  background: #17212b;
  color: #fff;
  border: 0;
  box-shadow: none;
}

.consulting-standard-section .eyebrow {
  color: var(--gold);
}

.consulting-standard-section p {
  color: rgba(255,255,255,.76);
}

.client-criteria-section {
  background: #fbfcfd;
}

.insight-proof-section {
  background: #111;
  color: #fff;
  border: 0;
  box-shadow: none;
}

.insight-proof-section .eyebrow {
  color: #7db5e8;
}

.insight-proof-section p {
  color: rgba(255,255,255,.76);
}

.insight-proof-section .insight-list a {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: #fff;
}

.insight-proof-section .insight-list span {
  color: #7db5e8;
}

.insight-list,
.filter-grid,
.standard-grid,
.criteria-list,
.email-capture {
  display: grid;
  gap: 10px;
}

.filter-grid,
.standard-grid {
  grid-template-columns: repeat(3, 1fr);
}

.insight-list a,
.filter-grid article,
.standard-grid article,
.criteria-list div {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
}

.consulting-standard-section .standard-grid article {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
}

.consulting-standard-section h3 {
  color: #fff;
}

.consulting-standard-section .standard-grid p {
  margin: 0;
}

.filter-grid strong,
.criteria-list strong {
  color: var(--ink);
}

.filter-grid span,
.criteria-list span {
  color: var(--muted);
  font-size: 14px;
}

.insight-list span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.lead-magnet-section {
  background: #fff;
}

.email-capture {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  margin: 28px 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.portrait-frame {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f4eee6;
  max-width: 520px;
}

.portrait-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 1040px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 22px;
  }

  .brand {
    min-width: 0;
  }

  .nav {
    justify-content: flex-start;
    gap: 10px 14px;
  }

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

  .authority-section,
  .insight-proof-section,
  .lead-magnet-section,
  .decision-filter-section,
  .consulting-standard-section,
  .client-criteria-section,
  .about-intro {
    grid-template-columns: 1fr;
  }

  .filter-grid,
  .standard-grid,
  .capability-grid,
  .section-kicker {
    grid-template-columns: 1fr;
  }

  .consultant-hero {
    padding: 42px 30px;
  }

  .page-hero::after {
    width: 128px;
    right: 26px;
    opacity: .085;
  }

  .page-hero.quiet-seal::after {
    width: 88px;
    right: 22px;
    top: 66%;
    opacity: .145;
  }

  .mck-hero::after {
    display: none;
  }

  .portrait-frame {
    max-width: 170px;
  }

  .mck-hero h1 {
    font-size: 58px;
  }
}

@media (max-width: 680px) {
  main {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    position: static;
  }

  .nav a {
    font-size: 13px;
  }

  .nav-button {
    padding: 7px 10px;
  }

  .consultant-hero {
    margin-top: 12px;
    padding: 28px 20px;
  }

  .consultant-hero h1,
  .mck-hero h1,
  .page-hero h1 {
    font-size: 36px;
    line-height: 1.02;
  }

  .page-hero {
    padding: 48px 20px 44px;
  }

  .page-hero::after,
  .mck-hero::after {
    width: 86px;
    right: 16px;
    top: 28px;
    opacity: .075;
    transform: none;
  }

  .mck-hero::after {
    display: none;
  }

  .page-hero.quiet-seal::after {
    width: 64px;
    right: 14px;
    top: 24px;
    opacity: .12;
  }

  .lead {
    font-size: 18px;
  }

  .proof-bar {
    justify-content: flex-start;
  }

  .about-intro {
    padding: 22px;
  }

  .portrait-frame {
    max-width: 132px;
  }
}

/* Mercury-inspired launch polish: lighter, softer, product-led without changing content or flows. */
:root {
  --ink: #1d1726;
  --muted: #6f6877;
  --line: #e7dccd;
  --paper: #f7f0e6;
  --panel: #fffaf3;
  --blue: #5d67d8;
  --green: #e7f0e7;
  --gold: #f3d8a8;
  --rose: #f4d9dc;
  --shadow: 0 24px 70px rgba(68, 43, 24, .10);
  --soft-shadow: 0 12px 36px rgba(68, 43, 24, .08);
}

body {
  background:
    radial-gradient(circle at 18% 0%, rgba(244, 217, 220, .56), transparent 32%),
    radial-gradient(circle at 84% 8%, rgba(214, 221, 255, .72), transparent 34%),
    linear-gradient(180deg, #fbf5eb 0%, #f7f0e6 52%, #f4eadf 100%);
  color: var(--ink);
  isolation: isolate;
  transition: background-color .25s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 0%, rgba(93, 103, 216, .24), transparent 34%),
    linear-gradient(180deg, #21182c 0%, #171420 52%, #0f0d14 100%);
  opacity: var(--scroll-progress, 0);
  pointer-events: none;
  transition: opacity .16s linear;
}

.site-header {
  top: 12px;
  width: min(1160px, calc(100% - 32px));
  margin: 12px auto 0;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(99, 78, 58, .14);
  border-radius: 999px;
  background: rgba(255, 250, 243, .86);
  box-shadow: 0 12px 38px rgba(48, 35, 24, .10);
  backdrop-filter: blur(18px);
}

.brand {
  color: var(--ink);
}

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

.nav a {
  color: #3b3345;
}

.nav-button {
  border-radius: 999px;
  background: var(--ink);
  color: #fff !important;
  box-shadow: 0 8px 22px rgba(29, 23, 38, .16);
}

.button {
  border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.button.primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 30px rgba(29, 23, 38, .18);
}

.button.secondary {
  border-color: rgba(75, 60, 45, .16);
  background: rgba(255,255,255,.58);
  color: var(--ink);
}

.mck-hero,
.page-hero {
  border: 1px solid rgba(255, 255, 255, .10);
  background:
    radial-gradient(circle at 18% 16%, rgba(93, 103, 216, .26), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(244, 217, 220, .18), transparent 36%),
    linear-gradient(135deg, #111018 0%, #181321 52%, #0f0d14 100%);
  color: #fff;
  box-shadow: 0 24px 80px rgba(29, 23, 38, .18);
}

.mck-hero {
  grid-template-columns: 1fr;
  gap: 34px;
  margin-top: 22px;
  padding: 76px 42px;
  border-radius: 28px;
  text-align: center;
}

.page-hero {
  padding: 72px 42px 62px;
  border-radius: 28px;
}

.mck-hero h1,
.page-hero h1 {
  color: #fff;
}

.mck-hero h1,
.mck-hero .lead {
  margin-left: auto;
  margin-right: auto;
}

.mck-hero .hero-actions,
.mck-hero .cred-strip {
  justify-content: center;
}

.mck-hero .lead,
.page-hero .lead {
  color: rgba(255,255,255,.78);
}

.mck-hero .eyebrow,
.page-hero .eyebrow,
.eyebrow {
  color: var(--blue);
}

.mck-hero .button.primary {
  background: var(--ink);
  color: #fff;
}

.mck-hero .button.secondary {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
}

.consultant-hero .hero-card {
  gap: 0;
  align-content: stretch;
  padding: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  background: rgba(255, 252, 247, .94);
  color: var(--ink);
  box-shadow: 0 22px 70px rgba(74, 46, 30, .12);
  overflow: hidden;
}

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

.consultant-hero .hero-card .eyebrow {
  color: var(--blue);
}

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

.consultant-hero .hero-card h2 {
  color: var(--ink);
}

.hero-visual {
  position: relative;
  margin: 0;
  min-height: 250px;
  overflow: hidden;
  background: #e9dfd3;
  --hero-zoom: 1.02;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(29, 23, 38, .16));
  pointer-events: none;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  object-position: center;
  transform: scale(var(--hero-zoom));
  transition: transform .28s ease;
  transform-origin: center;
}

.mercury-image {
  width: min(980px, 100%);
  min-height: 420px;
  margin: 10px auto 0;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  box-shadow: 0 34px 90px rgba(0,0,0,.32);
}

.zoomable-hero {
  cursor: zoom-in;
  touch-action: pan-y;
}

.zoomable-hero.is-zoomed {
  cursor: zoom-out;
}

.zoom-canvas {
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform .24s ease;
}

.zoomable-hero.is-zoomed .zoom-canvas {
  transform: scale(1.38);
}

.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.zoom-controls {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
  background: rgba(17, 16, 24, .70);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.mercury-image .zoom-controls {
  display: none;
}

.zoom-controls button {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #111018;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.zoom-controls input {
  width: 100%;
  accent-color: #fff;
}

.cred-strip span,
.proof-bar span {
  border-color: rgba(82, 62, 42, .12);
  border-radius: 999px;
  background: rgba(255,255,255,.58);
  color: #3d3445;
  box-shadow: 0 6px 18px rgba(64, 43, 28, .06);
}

.mck-hero .cred-strip span {
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.16);
  color: #fffaf0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 10px 24px rgba(0,0,0,.14);
}

.mck-hero .cred-strip span:nth-child(2) {
  background: rgba(214, 221, 255, .18);
}

.mck-hero .cred-strip span:nth-child(3) {
  background: rgba(243, 216, 168, .18);
}

.mck-hero .cred-strip span:nth-child(4) {
  background: rgba(231, 240, 231, .18);
}

.proof-bar,
.hero-card,
.path-section article,
.split-section,
.trust-section,
.question-section,
.standard-section,
.method-section,
.services-preview,
.ai-note,
.assessment-form,
.report-panel,
.pricing-grid article,
.booking-panel,
.insight-grid article,
.resource-section,
.about-intro,
.lead-magnet-section,
.decision-filter-section,
.client-criteria-section,
.email-capture {
  border-color: rgba(99, 78, 58, .12);
  border-radius: 24px;
  background: rgba(255, 250, 243, .78);
  box-shadow: var(--soft-shadow);
}

.capability-grid {
  gap: 14px;
  border: 0;
  background: transparent;
}

.capability-section .section-kicker {
  border-bottom-color: rgba(255,255,255,.24);
}

.capability-section .section-kicker h2 {
  color: #fffaf0;
  text-shadow: 0 2px 18px rgba(0,0,0,.22);
}

.capability-section .eyebrow {
  color: #f3d8a8;
}

.capability-grid article {
  border: 1px solid rgba(99, 78, 58, .12);
  border-radius: 24px;
  background: rgba(255, 250, 243, .82);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.capability-grid img {
  filter: saturate(.98) contrast(1.02);
}

.proof-bar {
  border-color: rgba(255,255,255,.16);
  background: rgba(23, 20, 32, .72);
  box-shadow: 0 18px 48px rgba(0,0,0,.22);
  backdrop-filter: blur(18px);
}

.proof-bar span {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.14);
  color: #fffaf0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 8px 20px rgba(0,0,0,.12);
}

.proof-bar span:nth-child(1) {
  background: rgba(243, 216, 168, .22);
}

.proof-bar span:nth-child(2) {
  background: rgba(214, 221, 255, .20);
}

.proof-bar span:nth-child(3) {
  background: rgba(231, 240, 231, .20);
}

.proof-bar span:nth-child(4) {
  background: rgba(244, 217, 220, .20);
}

.method-grid article,
.filter-grid article,
.standard-grid article,
.criteria-list div,
.insight-list a {
  border-color: rgba(99, 78, 58, .12);
  border-radius: 18px;
  background: rgba(255,255,255,.58);
}

.consulting-standard-section,
.insight-proof-section,
.operating-example-section,
.report-preview-section {
  border: 1px solid rgba(99, 78, 58, .12);
  background:
    radial-gradient(circle at 16% 12%, rgba(255,255,255,.12), transparent 28%),
    linear-gradient(135deg, #252031, #171420);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(29, 23, 38, .14);
}

.consulting-standard-section .standard-grid article,
.insight-proof-section .insight-list a,
.operating-example-flow article,
.report-preview-grid article {
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
}

.operating-example-section,
.report-preview-section {
  display: grid;
  gap: 28px;
  margin: 32px 0;
  padding: 34px;
}

.operating-example-section h2,
.operating-example-section p,
.report-preview-section h2,
.report-preview-section p {
  color: #fffaf0;
}

.operating-example-section .eyebrow,
.report-preview-section .eyebrow {
  color: #f3d8a8;
}

.operating-example-flow {
  display: grid;
  gap: 14px;
  grid-template-columns: .9fr 1.2fr .9fr;
}

.operating-example-flow article,
.report-preview-grid article {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  padding: 20px;
}

.operating-example-flow span,
.report-preview-grid span {
  color: #f3d8a8;
  display: block;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .06em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.operating-example-flow strong,
.report-preview-grid strong {
  color: #fffaf0;
  display: block;
  font-size: 1.12rem;
  line-height: 1.35;
}

.example-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.example-tags em {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: #fffaf0;
  font-style: normal;
  font-weight: 800;
  padding: 8px 10px;
}

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

.report-preview-grid p {
  color: rgba(255,255,255,.76);
  margin: 8px 0 0;
}

.advisory-ladder {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 22px 0;
}

.advisory-ladder article {
  border: 1px solid rgba(99, 78, 58, .12);
  border-radius: 18px;
  background: rgba(255,255,255,.62);
  padding: 18px;
  position: relative;
}

.advisory-ladder article:not(:last-child)::after {
  color: rgba(61, 52, 69, .45);
  content: "→";
  font-weight: 900;
  position: absolute;
  right: -12px;
  top: 22px;
}

.advisory-ladder span {
  color: var(--ink);
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.advisory-ladder p {
  color: rgba(61, 52, 69, .76);
  line-height: 1.55;
  margin: 0;
}

.site-footer {
  width: min(1160px, calc(100% - 32px));
  margin: 24px auto;
  border-radius: 999px;
  background: rgba(255, 250, 243, .72);
  color: var(--muted);
  box-shadow: var(--soft-shadow);
}

.editorial-band {
  gap: 0;
  margin: 28px 0 42px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 16%, rgba(93, 103, 216, .22), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(244, 217, 220, .16), transparent 36%),
    linear-gradient(135deg, #111018 0%, #181321 52%, #0f0d14 100%);
  box-shadow: 0 24px 80px rgba(29, 23, 38, .18);
  overflow: hidden;
}

.editorial-band img {
  min-height: 420px;
  filter: saturate(.96) contrast(1.04);
}

.editorial-band > div {
  padding: 46px;
}

.editorial-band h2 {
  color: #fff;
}

.editorial-band p {
  color: rgba(255,255,255,.78);
}

.assessment-layout {
  gap: 22px;
  align-items: start;
}

.assessment-form,
.report-panel {
  border-top: 0;
  border-color: rgba(99, 78, 58, .12);
  border-radius: 24px;
  background: rgba(255, 250, 243, .82);
  box-shadow: var(--soft-shadow);
}

.assessment-form label,
.booking-panel label,
.email-capture label,
.roadmap-panel label {
  color: #3d3445;
  font-weight: 800;
}

.assessment-form input,
.assessment-form select,
.assessment-form textarea,
.booking-panel input,
.booking-panel select,
.booking-panel textarea,
.email-capture input,
.roadmap-panel input,
.roadmap-panel select,
.roadmap-panel textarea {
  border: 1px solid rgba(99, 78, 58, .16);
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.42);
}

.form-status {
  margin: 0;
  color: rgba(61, 52, 69, .78);
  font-size: .92rem;
  line-height: 1.45;
}

.report-panel {
  background: rgba(255, 250, 243, .72);
}

.report-panel .empty-state {
  color: var(--muted);
}

.ai-note {
  background: rgba(255, 250, 243, .82);
  color: var(--ink);
}

.ai-note .eyebrow {
  color: var(--blue);
}

.ai-note h2,
.ai-note p {
  color: var(--ink);
}

.admin-case-workspace {
  margin: 28px 0;
}

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

.case-card {
  border: 1px solid rgba(99, 78, 58, .16);
  border-radius: 22px;
  background: rgba(255, 250, 243, .86);
  box-shadow: var(--soft-shadow);
  padding: 22px;
}

.case-card-header {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.case-card-header h3 {
  margin: 4px 0 0;
}

.case-card-header span {
  color: var(--muted);
  font-size: .9rem;
  white-space: nowrap;
}

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

.case-meta div {
  border: 1px solid rgba(99, 78, 58, .10);
  border-radius: 14px;
  background: rgba(255,255,255,.54);
  padding: 10px;
}

.case-meta dt {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.case-meta dd {
  margin: 3px 0 0;
  color: var(--ink);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.case-brief {
  border-top: 1px solid rgba(99, 78, 58, .12);
  padding-top: 14px;
  margin-top: 14px;
}

.case-brief h4 {
  margin: 0 0 8px;
}

.case-brief p {
  color: rgba(61, 52, 69, .78);
  line-height: 1.55;
  white-space: pre-line;
}

.roadmap-grid,
.scorecard-table,
.three-column-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

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

.roadmap-grid div,
.scorecard-table div,
.three-column-grid section,
.callout-box {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .055);
  padding: 18px;
}

.roadmap-grid strong,
.scorecard-table strong,
.three-column-grid h3,
.callout-box strong {
  display: block;
  color: var(--paper);
  margin-bottom: 8px;
}

.roadmap-grid span,
.scorecard-table span,
.three-column-grid li,
.callout-box p {
  color: rgba(247, 243, 235, .76);
  line-height: 1.55;
}

.three-column-grid ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.method-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.method-steps span {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: var(--paper);
  font-weight: 800;
  padding: 10px 14px;
}

.request-library {
  align-items: start;
}

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

.resource-request-grid article {
  border: 1px solid rgba(99, 78, 58, .14);
  border-radius: 22px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 14px 34px rgba(29, 23, 38, .08);
  padding: 20px;
}

.resource-request-grid h3 {
  color: var(--ink);
  margin: 8px 0 10px;
}

.resource-request-grid p {
  color: rgba(61, 52, 69, .78);
  line-height: 1.55;
}

.resource-preview {
  border: 1px solid rgba(99, 78, 58, .14);
  border-radius: 16px;
  background: rgba(255, 250, 243, .78);
  display: grid;
  gap: 6px;
  margin: 16px 0 12px;
  padding: 14px;
}

.resource-preview strong {
  color: var(--ink);
}

.resource-preview span,
.resource-related-link {
  color: rgba(61, 52, 69, .78);
  line-height: 1.5;
}

.resource-related-link {
  color: #315f92;
  display: inline-block;
  font-weight: 800;
}

.request-library .eyebrow,
.resource-request-grid .eyebrow {
  color: #7a4f2a;
}

.resource-request-grid .form-status a {
  color: #315f92;
  font-weight: 900;
}

.compact-capture {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  margin-top: 16px;
}

.compact-capture input {
  min-height: 44px;
}

.workbook-page .premium-report {
  background: #fbf7ef;
  border-color: rgba(88, 74, 55, .18);
  box-shadow: 0 20px 60px rgba(10, 8, 18, .18);
}

.workbook-page .report-card {
  background: #fffaf2;
  border-top: 1px solid rgba(88, 74, 55, .14);
  color: #211b16;
  padding: 34px;
}

.workbook-page .premium-cover {
  background: #17130f;
  color: #fffaf2;
}

.workbook-page .report-card h2,
.workbook-page .report-card h3 {
  color: #1d1712;
}

.workbook-page .premium-cover h2,
.workbook-page .premium-cover p,
.workbook-page .premium-cover blockquote {
  color: #fffaf2;
}

.workbook-page .report-card p,
.workbook-page .report-card li {
  color: #3f3428;
  font-size: 1.02rem;
  line-height: 1.7;
}

.workbook-page .roadmap-grid div,
.workbook-page .scorecard-table div,
.workbook-page .three-column-grid section,
.workbook-page .callout-box {
  border: 1px solid rgba(88, 74, 55, .18);
  background: #fff;
  box-shadow: none;
}

.workbook-page .roadmap-grid strong,
.workbook-page .scorecard-table strong,
.workbook-page .three-column-grid h3,
.workbook-page .callout-box strong {
  color: #1d1712;
  font-size: 1rem;
}

.workbook-page .roadmap-grid span,
.workbook-page .scorecard-table span,
.workbook-page .three-column-grid li,
.workbook-page .callout-box p {
  color: #3f3428;
  font-size: .98rem;
  line-height: 1.65;
}

.workbook-page .method-steps span {
  border-color: rgba(88, 74, 55, .20);
  background: #fff;
  color: #211b16;
}

.workbook-page .eyebrow {
  color: #7a4f2a;
}

.resource-page .premium-report {
  background: #fbf7ef;
  border-color: rgba(88, 74, 55, .18);
  box-shadow: 0 20px 60px rgba(10, 8, 18, .18);
}

.resource-page .report-card {
  background: #fffaf2;
  border-top: 1px solid rgba(88, 74, 55, .14);
  color: #211b16;
  padding: 34px;
}

.resource-page .premium-cover {
  background: #17130f;
  color: #fffaf2;
}

.resource-page .report-card h2,
.resource-page .report-card h3,
.resource-page .report-card h4 {
  color: #1d1712;
}

.resource-page .premium-cover h2,
.resource-page .premium-cover p,
.resource-page .premium-cover blockquote {
  color: #fffaf2;
}

.resource-page .report-card p,
.resource-page .report-card li,
.resource-page .resource-table td {
  color: #3f3428;
  font-size: 1rem;
  line-height: 1.65;
}

.resource-page .roadmap-grid div,
.resource-page .scorecard-table div,
.resource-page .three-column-grid section,
.resource-page .callout-box {
  border: 1px solid rgba(88, 74, 55, .18);
  background: #fff;
}

.resource-page .roadmap-grid strong,
.resource-page .scorecard-table strong,
.resource-page .three-column-grid h3,
.resource-page .callout-box strong {
  color: #1d1712;
}

.resource-page .roadmap-grid span,
.resource-page .scorecard-table span,
.resource-page .three-column-grid li,
.resource-page .callout-box p {
  color: #3f3428;
}

.resource-page .method-steps span {
  border-color: rgba(88, 74, 55, .20);
  background: #fff;
  color: #211b16;
}

.resource-page .eyebrow {
  color: #7a4f2a;
}

.resource-table {
  border-collapse: collapse;
  margin: 18px 0;
  width: 100%;
}

.resource-table th,
.resource-table td {
  border: 1px solid rgba(88, 74, 55, .20);
  padding: 13px;
  text-align: left;
  vertical-align: top;
}

.resource-table th {
  background: #eee4d7;
  color: #1d1712;
}

.worksheet-line {
  border-bottom: 1px solid rgba(88, 74, 55, .35);
  min-height: 34px;
}

.resource-footer-note {
  color: #6f6257;
  font-size: .9rem;
  margin-top: 18px;
}

@media print {
  .site-header,
  .site-footer,
  .hero-actions,
  .premium-cover .button {
    display: none !important;
  }

  .report-logo {
    width: 132px !important;
    margin-bottom: 14px !important;
  }

  body.editorial-site {
    background: #fff;
    color: #111;
  }

  .page-hero,
  .report-card,
  .roadmap-grid div,
  .scorecard-table div,
  .three-column-grid section,
  .callout-box {
    background: #fff !important;
    border-color: #ddd !important;
    color: #111 !important;
  }

  .report-card *,
  .page-hero *,
  .roadmap-grid *,
  .scorecard-table *,
  .three-column-grid *,
  .callout-box * {
    color: #111 !important;
  }
}

@media (max-width: 1040px) {
  .site-header {
    border-radius: 24px;
  }

  .mck-hero {
    grid-template-columns: 1fr;
  }

  .editorial-band {
    grid-template-columns: 1fr;
  }

  .operating-example-flow,
  .report-preview-grid,
  .advisory-ladder,
  .belief-grid {
    grid-template-columns: 1fr;
  }

  .advisory-ladder article:not(:last-child)::after {
    content: "↓";
    right: 18px;
    top: auto;
    bottom: -18px;
  }
}

@media (max-width: 680px) {
  .site-header {
    margin-top: 0;
    width: 100%;
    border-radius: 0 0 24px 24px;
  }

  .mck-hero,
  .page-hero,
  .operating-example-section,
  .report-preview-section {
    border-radius: 24px;
    padding: 34px 20px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 190px;
  }

  .hero-photo {
    min-height: 280px;
  }

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

  .admin-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .ops-command-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .ops-priority-board {
    grid-template-columns: 1fr;
  }

  .case-grid,
  .case-meta,
  .roadmap-grid,
  .scorecard-table,
  .three-column-grid,
  .resource-request-grid,
  .operating-example-flow,
  .report-preview-grid,
  .advisory-ladder,
  .belief-grid {
    grid-template-columns: 1fr;
  }

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

  .evolution-section div:not(:last-child)::after {
    display: none;
  }
}

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