:root {
  --navy: #0f172a;
  --slate: #334155;
  --muted: #64748b;
  --line: #dbe3ee;
  --soft: #f8fafc;
  --white: #ffffff;
  --amber: #d97706;
  --amber-dark: #a85d05;
  --green: #15803d;
  --shadow: 0 22px 70px rgba(15, 23, 42, 0.12);
}

/* Branded diagnostic pattern layer */
.section-band {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(248, 250, 252, 0.94)),
    var(--soft);
}

.hero,
.page-hero,
.cta,
.contact-form,
.scorecard,
.quote-card,
.principle-panel,
.featured-observation,
.article-panel,
.article-cta {
  position: relative;
  overflow: hidden;
}

.hero::before,
.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(51, 65, 85, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 65, 85, 0.075) 1px, transparent 1px),
    radial-gradient(circle at 78% 32%, rgba(217, 119, 6, 0.16), transparent 24%),
    radial-gradient(circle at 15% 82%, rgba(21, 128, 61, 0.08), transparent 18%);
  background-size: 34px 34px, 34px 34px, auto, auto;
  content: "";
}

.hero::after,
.page-hero::after {
  position: absolute;
  right: -110px;
  bottom: -120px;
  z-index: 0;
  width: 520px;
  height: 330px;
  border: 1px solid rgba(217, 119, 6, 0.16);
  border-radius: 50%;
  transform: rotate(-16deg);
  pointer-events: none;
  content: "";
}

.hero > *,
.page-hero > *,
.cta > *,
.contact-form > *,
.quote-card > *,
.principle-panel > *,
.featured-observation > *,
.article-panel > *,
.article-cta > * {
  position: relative;
  z-index: 1;
}

.cta::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(217, 119, 6, 0.12) 18% 18.2%, transparent 18.2% 100%),
    linear-gradient(rgba(51, 65, 85, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 65, 85, 0.06) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
  content: "";
}

.signal-grid article,
.framework-grid article,
.method-grid article,
.detail-list article,
.process-steps article,
.principles-grid article,
.triad div,
.observation-card {
  position: relative;
  overflow: hidden;
}

.detail-list article::before,
.process-steps article::before,
.principles-grid article::before,
.triad div::before,
.observation-card::before {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background:
    linear-gradient(rgba(51, 65, 85, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 65, 85, 0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(135deg, transparent 0 48%, black 100%);
  pointer-events: none;
  content: "";
}

.signal-grid article::after,
.framework-grid article::after,
.method-grid article::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 34px;
  opacity: 0.34;
  background:
    linear-gradient(90deg, transparent 0 12px, rgba(217, 119, 6, 0.4) 12px 14px, transparent 14px 27px, rgba(51, 65, 85, 0.25) 27px 29px, transparent 29px),
    linear-gradient(0deg, transparent 0 14px, rgba(51, 65, 85, 0.16) 14px 16px, transparent 16px);
  pointer-events: none;
  content: "";
}

.scorecard::after,
.contact-form::before {
  position: absolute;
  right: -70px;
  bottom: -78px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(217, 119, 6, 0.16);
  border-radius: 50%;
  pointer-events: none;
  content: "";
}

.quote-card::before,
.principle-panel::before,
.featured-observation::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  content: "";
}

.article-panel::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.42;
  background:
    linear-gradient(rgba(51, 65, 85, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 65, 85, 0.055) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(135deg, transparent 0 50%, black 100%);
  pointer-events: none;
  content: "";
}

.domain-stack article {
  position: relative;
}

.domain-stack article::after {
  position: absolute;
  left: 48px;
  top: 74px;
  bottom: -18px;
  width: 2px;
  background: linear-gradient(var(--amber), rgba(217, 119, 6, 0));
  content: "";
}

.domain-stack article:last-child::after {
  display: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--navy);
  font-family: Arial, "Helvetica Neue", sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 227, 238, 0.85);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--navy);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0;
}

.brand small {
  margin-top: 1px;
  color: var(--muted);
  font-size: 0.76rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--slate);
  font-size: 0.9rem;
  font-weight: 650;
}

.nav a {
  border-bottom: 2px solid transparent;
  padding: 6px 0;
}

.nav a:hover {
  border-color: var(--amber);
  color: var(--navy);
}

.nav a[aria-current="page"] {
  border-color: var(--amber);
  color: var(--navy);
}

.nav .nav-cta {
  border: 1px solid var(--navy);
  border-radius: 8px;
  padding: 9px 16px;
  color: var(--navy);
}

.section,
.section-band {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 64px);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
  min-height: calc(100vh - 79px);
}

.page-hero {
  max-width: none;
  padding-top: clamp(72px, 10vw, 132px);
  padding-bottom: clamp(72px, 10vw, 132px);
}

.page-hero h1,
.page-hero p {
  max-width: 980px;
}

.page-hero h1 {
  margin-bottom: 24px;
}

.page-hero p {
  color: var(--slate);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.3rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.03;
  letter-spacing: 0;
}

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

.hero-lede,
.section-intro p,
.assessment-copy p,
.why-copy p,
.cta p {
  color: var(--slate);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
}

.hero-lede {
  max-width: 780px;
  margin-bottom: 30px;
}

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

.hero-actions.center {
  justify-content: center;
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(217, 119, 6, 0.24);
}

.button-primary:hover {
  background: var(--amber-dark);
}

.button-secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--slate);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual img {
  width: 100%;
  border: 1px solid rgba(219, 227, 238, 0.8);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.signal-card {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 220px;
  border: 1px solid rgba(219, 227, 238, 0.88);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.16);
}

.signal-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.signal-card strong {
  font-size: 0.95rem;
}

.signal-card-top {
  top: 28px;
  left: -22px;
}

.signal-card-bottom {
  right: -18px;
  bottom: 28px;
}

.section-intro {
  max-width: 850px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-intro.left {
  margin-left: 0;
  text-align: left;
}

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

.signal-grid article,
.framework-grid article,
.method-grid article,
.scorecard,
.quote-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.signal-grid article,
.framework-grid article {
  padding: 24px;
}

.signal-grid p,
.framework-grid p,
.method-grid p,
.method-grid li {
  color: var(--slate);
}

.icon {
  display: inline-grid;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 8px;
  background: #fff7ed;
  color: var(--amber-dark);
  font-size: 0.82rem;
  font-weight: 850;
}

.assessment {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: clamp(30px, 6vw, 86px);
}

.assessment-copy p {
  max-width: 640px;
  margin-bottom: 28px;
}

.scorecard {
  padding: 10px;
}

.scorecard-header {
  display: grid;
  gap: 4px;
  border-radius: 8px;
  padding: 20px;
  background: var(--navy);
  color: var(--white);
}

.scorecard-header span {
  color: #cbd5e1;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.scorecard-header strong {
  font-size: 1.25rem;
}

.score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
  padding: 14px 12px;
  color: var(--slate);
}

.score-row:last-child {
  border-bottom: 0;
}

.score-row strong {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 5px 10px;
  background: #ecfdf5;
  color: var(--green);
  font-size: 0.78rem;
}

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

.framework-grid article span {
  display: inline-flex;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--amber);
  color: var(--amber-dark);
  font-size: 0.82rem;
  font-weight: 850;
}

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

.method-grid article {
  padding: clamp(28px, 4vw, 46px);
}

.method-kicker {
  margin-bottom: 18px;
  color: var(--amber-dark);
  font-size: 0.85rem;
  font-weight: 850;
  text-transform: uppercase;
}

.method-grid ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.method-grid li {
  position: relative;
  padding-left: 22px;
  font-weight: 650;
}

.method-grid li::before {
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--amber);
  content: "";
}

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

.solution-list a {
  display: flex;
  align-items: center;
  min-height: 84px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
}

.solution-list a:hover {
  border-color: rgba(217, 119, 6, 0.58);
}

.why {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.52fr);
  align-items: center;
  gap: clamp(30px, 6vw, 80px);
}

.why-copy p {
  max-width: 760px;
}

.quote-card {
  padding: clamp(26px, 4vw, 42px);
  background: var(--navy);
  color: var(--white);
}

.quote-card p {
  margin-bottom: 22px;
  font-size: clamp(1.24rem, 2vw, 1.68rem);
  font-weight: 750;
  line-height: 1.25;
}

.quote-card span {
  color: #cbd5e1;
  font-weight: 700;
}

.cta {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.cta h2 {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.cta p {
  max-width: 690px;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid var(--line);
  padding: 28px clamp(20px, 5vw, 64px);
  color: var(--slate);
}

.footer strong,
.footer span {
  display: block;
}

.footer strong {
  color: var(--navy);
}

.footer nav {
  display: flex;
  gap: 18px;
  font-weight: 700;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1fr);
  gap: clamp(34px, 7vw, 94px);
  align-items: start;
}

.two-column > div > p {
  color: var(--slate);
  font-size: 1.06rem;
}

.detail-list {
  display: grid;
  gap: 16px;
}

.detail-list article,
.process-steps article,
.domain-stack article,
.maturity-scale article,
.principles-grid article,
.triad div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
}

.detail-list article {
  padding: 22px;
}

.detail-list p,
.process-steps p,
.domain-stack p,
.maturity-scale p,
.principles-grid p,
.triad p,
.story-body p,
.principle-panel p {
  color: var(--slate);
}

.detail-section .framework-grid {
  margin-top: 12px;
}

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

.process-steps article {
  padding: 24px;
}

.process-steps strong {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 8px;
  background: #fff7ed;
  color: var(--amber-dark);
  font-size: 0.86rem;
}

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

.deliverable-grid span {
  min-height: 68px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
}

.domain-stack {
  display: grid;
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto;
}

.domain-stack article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  padding: 24px;
}

.domain-stack article > span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 850;
}

.domain-stack strong {
  display: block;
  color: var(--amber-dark);
}

.maturity-scale {
  display: grid;
  gap: 10px;
}

.maturity-scale article {
  display: grid;
  grid-template-columns: 44px 132px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
}

.maturity-scale strong {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: #ecfdf5;
  color: var(--green);
}

.maturity-scale span {
  color: var(--navy);
  font-weight: 850;
}

.maturity-scale p {
  margin-bottom: 0;
}

.solution-detail-list {
  display: grid;
  gap: 52px;
}

.solution-detail-list > article {
  scroll-margin-top: 110px;
}

.solution-detail-list > article > h2 {
  max-width: 940px;
}

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

.triad div {
  padding: 24px;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.45fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.story-body {
  max-width: 850px;
}

.founder-line {
  margin-bottom: 18px;
  color: var(--amber-dark) !important;
  font-size: 0.88rem !important;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.story-body p {
  font-size: clamp(1.05rem, 1.3vw, 1.18rem);
}

.principle-panel {
  position: sticky;
  top: 108px;
  border-radius: 8px;
  padding: clamp(26px, 4vw, 42px);
  background: var(--navy);
  color: var(--white);
}

.principle-panel h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.principle-panel p {
  color: #cbd5e1;
  font-size: 1.04rem;
}

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

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

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 1fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.contact-copy p {
  color: var(--slate);
  font-size: 1.06rem;
}

.contact-note {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--soft);
}

.contact-note strong {
  display: block;
  margin-bottom: 8px;
}

.contact-note p {
  margin-bottom: 0;
}

.contact-form {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 36px);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-weight: 500;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--amber);
  outline: 3px solid rgba(217, 119, 6, 0.16);
}

.hidden-field {
  display: none;
}

.form-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.form-privacy-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-privacy-note a {
  color: var(--amber-dark);
  font-weight: 800;
}

.observations-section {
  display: grid;
  gap: 34px;
}

.featured-observation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(26px, 4vw, 42px);
  background: var(--navy);
  color: var(--white);
}

.featured-observation h2,
.featured-observation p {
  color: var(--white);
}

.featured-observation .eyebrow {
  color: #fbbf24;
}

.guide-promo {
  background: linear-gradient(135deg, #0f172a 0%, #22324a 62%, #9a4f00 100%);
}

.featured-observation p:not(.eyebrow) {
  max-width: 760px;
  color: #cbd5e1;
}

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

.observation-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 245px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
}

.observation-card span {
  color: var(--amber-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.observation-card h3 {
  font-size: 1.22rem;
}

.observation-card p {
  color: var(--slate);
}

.observation-card a {
  align-self: end;
  color: var(--amber-dark);
  font-weight: 850;
}

.guide-library {
  display: grid;
  gap: 28px;
}

.guide-card,
.coming-guides article,
.guide-detail-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
}

.featured-guide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 52px);
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
}

.guide-number,
.coming-guides span,
.guide-detail-grid span {
  color: var(--amber-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.featured-guide h3 {
  margin: 12px 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.featured-guide p {
  max-width: 760px;
  color: var(--slate);
  font-size: 1.08rem;
}

.guide-actions {
  display: grid;
  gap: 12px;
  min-width: 220px;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding-left: 20px;
  color: var(--slate);
}

.coming-guides,
.guide-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.single-coming-guide {
  grid-template-columns: minmax(0, 1fr);
}

.coming-guides article,
.guide-detail-grid article {
  padding: 24px;
}

.coming-guides h3,
.guide-detail-grid h3 {
  margin: 10px 0;
  font-size: 1.25rem;
}

.coming-guides p,
.guide-detail-grid p {
  color: var(--slate);
}

.guide-summary {
  max-width: none;
}

.guide-detail-grid {
  margin-top: 20px;
}

.guide-detail-grid article:last-child {
  grid-column: span 2;
}

.visibility-question .section-intro {
  max-width: 980px;
}

.visibility-question h2 {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  max-width: 980px;
}

.platform-section .framework-grid article {
  min-height: 230px;
}

.article-hero {
  padding-top: clamp(72px, 10vw, 132px);
  padding-bottom: clamp(72px, 10vw, 132px);
}

.article-hero h1,
.article-hero p {
  max-width: 980px;
}

.article-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  line-height: 0.98;
}

.article-hero p {
  color: var(--slate);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
}

.article-body {
  max-width: 910px;
  margin: 0 auto;
}

.article-body > p,
.article-body li,
.article-body blockquote {
  color: var(--slate);
  font-size: clamp(1.06rem, 1.35vw, 1.2rem);
  line-height: 1.72;
}

.article-body blockquote {
  margin: 28px 0;
  border-left: 4px solid var(--amber);
  padding-left: 20px;
  color: var(--navy);
  font-weight: 850;
}

.article-callout {
  border-radius: 8px;
  padding: 24px;
  background: var(--navy);
  color: var(--white) !important;
  font-size: clamp(1.35rem, 2vw, 1.7rem) !important;
  font-weight: 850;
  line-height: 1.25 !important;
}

.article-panel,
.article-cta {
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 36px);
  background: var(--soft);
}

.article-panel ul {
  display: grid;
  gap: 10px;
  margin-bottom: 0;
  padding-left: 22px;
}

.article-cta {
  background: var(--white);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
}

.article-cta h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

@media (max-width: 1040px) {
  .hero,
  .assessment,
  .why,
  .two-column,
  .story,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    max-width: 760px;
  }

  .signal-grid,
  .framework-grid,
  .solution-list,
  .process-steps,
  .triad,
  .principles-grid,
  .observation-grid,
  .coming-guides,
  .guide-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-guide {
    grid-template-columns: 1fr;
  }

  .principle-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 16px;
    padding-bottom: 4px;
  }

  .section,
  .section-band {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    padding-right: 16px;
    padding-left: 16px;
    text-align: center;
  }

  .signal-card {
    position: static;
    margin-top: 10px;
    min-width: 0;
  }

  .signal-grid,
  .framework-grid,
  .method-grid,
  .solution-list,
  .process-steps,
  .deliverable-grid,
    .triad,
    .principles-grid,
    .observation-grid,
    .coming-guides,
    .guide-detail-grid {
    grid-template-columns: 1fr;
  }

  .guide-detail-grid article:last-child {
    grid-column: auto;
  }

  .guide-actions {
    width: 100%;
  }

  .featured-observation {
    align-items: stretch;
    flex-direction: column;
  }

  .domain-stack article,
  .maturity-scale article,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-submit {
    width: 100%;
  }

  .score-row {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer nav {
    flex-wrap: wrap;
  }
}
