@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;600;700;800;900&family=DM+Sans:wght@300;400;500&family=DM+Serif+Display:ital@1&display=swap");

:root {
  --orange: #e17633;
  --deep-teal: #1c3a42;
  --dark-teal: #152d34;
  --parchment: #f2e8d5;
  --cream: #f5edd8;
  --white: #fbfaf5;
  --rule-orange: rgba(225, 118, 51, 0.28);
  --rule-teal: rgba(28, 58, 66, 0.36);
  color: var(--deep-teal);
  background: var(--parchment);
  font-family: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--parchment);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 84px;
  padding: 18px 40px;
  color: var(--parchment);
  background: rgba(21, 45, 52, 0.97);
  border-bottom: 1px solid var(--rule-orange);
}

.brand-mark img {
  width: 154px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 34px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.nav-links a,
.header-cta,
.button {
  transition: transform 240ms cubic-bezier(0.19, 1, 0.22, 1), color 240ms ease,
    background 240ms ease;
}

.nav-links a:hover,
.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border: 2px solid currentColor;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-cta {
  color: var(--orange);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100dvh;
  padding: 154px 40px 64px;
  color: var(--parchment);
  background: var(--dark-teal);
  border-bottom: 2px solid var(--deep-teal);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 84px 40px 34px;
  pointer-events: none;
}

.hero::before {
  border-top: 1px solid var(--rule-orange);
  border-bottom: 1px solid var(--rule-orange);
}

.hero::after {
  border-left: 1px solid var(--rule-orange);
  opacity: 0.75;
  transform: translateX(66%);
}

.ghost-type {
  position: absolute;
  right: -42px;
  bottom: -36px;
  color: rgba(225, 118, 51, 0.055);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 19rem;
  font-weight: 900;
  line-height: 0.76;
  letter-spacing: 0;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.62fr);
  gap: 64px;
  align-items: end;
  max-width: 1380px;
  min-height: calc(100dvh - 226px);
  margin: 0 auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 30px;
  color: var(--orange);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 58px;
  height: 2px;
  background: currentColor;
}

.kicker.dark {
  color: var(--deep-teal);
}

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

h1 {
  max-width: 880px;
  margin-bottom: 30px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 8.2rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span,
h2 span {
  display: inline-block;
  padding-bottom: 8px;
  color: var(--orange);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 0.76em;
  font-weight: 400;
  line-height: 1.12;
  text-transform: none;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 36px;
  color: rgba(242, 232, 213, 0.9);
  font-size: 1.22rem;
  font-weight: 400;
  line-height: 1.68;
}

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

.button-primary {
  color: var(--deep-teal);
  background: var(--orange);
  border-color: var(--orange);
}

.button-secondary {
  color: var(--parchment);
  background: transparent;
  border-color: rgba(242, 232, 213, 0.58);
}

.button-dark {
  color: var(--orange);
  background: var(--deep-teal);
  border-color: var(--deep-teal);
}

.hero-panel {
  align-self: stretch;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: end;
  gap: 24px;
  min-height: 430px;
  padding: 0 0 0 34px;
  color: var(--parchment);
  border-left: 2px solid var(--orange);
}

.hero-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--rule-orange);
}

.panel-label {
  margin-bottom: 0;
  color: var(--orange);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.hero-panel p:last-child {
  max-width: 30ch;
  margin-bottom: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 2rem;
  font-style: italic;
  line-height: 1.2;
}

.hero-panel small {
  max-width: 42ch;
  color: rgba(242, 232, 213, 0.72);
  font-size: 0.88rem;
  line-height: 1.55;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--parchment);
  background: var(--deep-teal);
  border-top: 1px solid var(--rule-orange);
  border-bottom: 1px solid var(--rule-orange);
}

.stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: end;
  padding: 24px 40px;
  border-right: 1px solid var(--rule-orange);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  color: var(--orange);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 5.2rem;
  font-weight: 900;
  line-height: 0.78;
}

.stat span {
  padding-bottom: 6px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.journey-path {
  padding: 34px 40px;
  color: var(--deep-teal);
  background: var(--parchment);
  border-bottom: 2px solid var(--deep-teal);
}

.journey-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 44px;
  align-items: stretch;
  max-width: 1380px;
  margin: 0 auto;
}

.journey-intro {
  display: grid;
  align-content: center;
  padding-right: 34px;
  border-right: 2px solid var(--deep-teal);
}

.journey-intro h2 {
  max-width: 480px;
  margin-top: 18px;
  font-size: 2.65rem;
  line-height: 0.98;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--deep-teal);
  border-left: 2px solid var(--deep-teal);
}

.journey-step {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 12px;
  min-height: 250px;
  padding: 22px;
  border-right: 2px solid var(--deep-teal);
  border-bottom: 2px solid var(--deep-teal);
  transition: color 220ms ease, background 220ms ease, transform 220ms cubic-bezier(0.19, 1, 0.22, 1);
}

.journey-step:hover,
.journey-step:focus-visible {
  color: var(--parchment);
  background: var(--deep-teal);
  transform: translateY(-4px);
}

.journey-step:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: -5px;
}

.journey-step span,
.journey-step strong {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
}

.journey-step span {
  color: var(--orange);
  font-size: 3.1rem;
}

.journey-step strong {
  font-size: 1.95rem;
}

.journey-step em {
  max-width: 18ch;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.22rem;
  font-style: italic;
  line-height: 1.2;
}

.journey-step p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.diagnostic-section {
  position: relative;
  overflow: hidden;
  padding: 104px 40px;
  color: var(--deep-teal);
  background: var(--white);
  border-bottom: 2px solid var(--deep-teal);
}

.diagnostic-section::before {
  content: "AUDIT";
  position: absolute;
  top: -10px;
  right: -26px;
  color: rgba(28, 58, 66, 0.055);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 17rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.diagnostic-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(520px, 1fr);
  gap: 70px;
  align-items: start;
}

.diagnostic-intro h2 {
  color: var(--deep-teal);
}

.diagnostic-intro p:last-child {
  max-width: 48ch;
  margin-top: 30px;
  color: var(--deep-teal);
  font-size: 1.13rem;
  font-weight: 400;
  line-height: 1.78;
}

.diagnostic-legend {
  display: grid;
  gap: 10px;
  max-width: 420px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 2px solid var(--deep-teal);
}

.diagnostic-legend span {
  color: var(--deep-teal);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.diagnostic-board {
  display: grid;
  overflow: hidden;
  background: var(--parchment);
  border: 2px solid var(--deep-teal);
  box-shadow: 16px 16px 0 rgba(28, 58, 66, 0.12);
}

.diagnostic-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  min-height: 58px;
  padding: 0 22px;
  color: var(--parchment);
  background: var(--deep-teal);
  border-bottom: 2px solid var(--deep-teal);
}

.diagnostic-toolbar span,
.diagnostic-toolbar strong {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.diagnostic-toolbar strong {
  color: var(--orange);
}

.diagnostic-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 0;
}

.diagnostic-tab {
  display: grid;
  gap: 20px;
  min-height: 150px;
  padding: 22px 18px;
  color: var(--deep-teal);
  background: var(--white);
  border: 0;
  border-right: 2px solid var(--deep-teal);
  border-bottom: 2px solid var(--deep-teal);
  cursor: pointer;
  text-align: left;
}

.diagnostic-tab span {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.diagnostic-tab strong {
  align-self: end;
  color: rgba(28, 58, 66, 0.38);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 0.8;
  transition: color 260ms ease, transform 260ms cubic-bezier(0.19, 1, 0.22, 1);
}

.diagnostic-tab:hover strong,
.diagnostic-tab:focus-visible strong,
.diagnostic-tab.is-active strong {
  color: var(--orange);
  transform: translateY(-3px);
}

.diagnostic-tab:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: -4px;
}

.diagnostic-tab.is-active {
  background: var(--parchment);
}

.diagnostic-panel {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 38px;
  padding: 38px;
  background: var(--parchment);
}

.diagnostic-score {
  color: var(--orange);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 8.8rem;
  font-weight: 900;
  line-height: 0.78;
}

.diagnostic-copy h3 {
  max-width: 720px;
  margin-bottom: 32px;
  color: var(--deep-teal);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

.diagnostic-copy dl {
  display: grid;
  margin: 0;
  border-top: 2px solid var(--deep-teal);
}

.diagnostic-copy dl div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule-teal);
}

.diagnostic-copy dt {
  color: var(--orange);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.diagnostic-copy dd {
  margin: 0;
  color: var(--deep-teal);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.72;
}

.diagnostic-inline-cta {
  display: inline-flex;
  justify-self: start;
  margin-top: 28px;
  color: var(--orange);
  border-bottom: 2px solid currentColor;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.light-section,
.proof-section {
  padding: 88px 40px;
  background: var(--parchment);
  border-bottom: 2px solid var(--deep-teal);
}

.section-shell {
  max-width: 1380px;
  margin: 0 auto;
}

.two-column,
.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: 84px;
  align-items: start;
}

h2 {
  color: var(--deep-teal);
  margin-bottom: 0;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 5.35rem;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.copy-stack {
  padding-top: 62px;
}

.copy-stack p,
.cta-section p {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.8;
}

.copy-stack p {
  max-width: 60ch;
  margin-bottom: 26px;
  color: var(--deep-teal);
}

.outcome-system {
  display: grid;
  max-width: 1380px;
  margin: 72px auto 0;
  border-top: 2px solid var(--deep-teal);
}

.outcome-item {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 38px;
  padding: 34px 0;
  border-bottom: 2px solid var(--deep-teal);
  color: var(--deep-teal);
}

.outcome-number {
  color: var(--orange);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 5.8rem;
  font-weight: 900;
  line-height: 0.78;
}

.outcome-content {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.outcome-item h3 {
  margin: 0;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

.outcome-item dl {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--rule-teal);
}

.outcome-item dl div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule-teal);
}

.outcome-item dt {
  color: var(--orange);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.outcome-item dd {
  margin: 0;
  color: var(--deep-teal);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.68;
}

.section-next {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: 1380px;
  margin: 58px auto 0;
  padding: 24px 0 0;
  border-top: 2px solid currentColor;
}

.section-next p {
  max-width: 68ch;
  margin: 0;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.68;
}

.section-next-dark {
  color: var(--parchment);
  border-color: var(--rule-orange);
}

.context-section {
  padding: 92px 40px;
  color: var(--deep-teal);
  background: var(--cream);
  border-bottom: 2px solid var(--deep-teal);
}

.context-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.82fr);
  gap: 76px;
  align-items: start;
}

.context-statement h2 {
  max-width: 780px;
}

.context-statement p:last-child {
  max-width: 62ch;
  margin-top: 32px;
  color: var(--deep-teal);
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.78;
}

.context-steps {
  display: grid;
  border-top: 2px solid var(--deep-teal);
}

.context-step {
  display: grid;
  grid-template-columns: 88px minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 26px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 2px solid var(--deep-teal);
}

.context-step span {
  color: var(--orange);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 0.8;
}

.context-step h3 {
  margin: 0;
  color: var(--deep-teal);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 2.45rem;
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

.context-step p {
  margin: 0;
  color: var(--deep-teal);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.72;
}

.framework-section {
  position: relative;
  overflow: clip;
  padding: 96px 40px;
  color: var(--parchment);
  background: var(--deep-teal);
  border-bottom: 1px solid var(--rule-orange);
}

.framework-section::before {
  content: "DESIGN";
  position: absolute;
  top: -22px;
  right: -32px;
  color: rgba(225, 118, 51, 0.055);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 17rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.framework-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(520px, 1fr);
  gap: 76px;
  align-items: start;
}

.framework-sticky {
  position: sticky;
  top: 128px;
}

.framework-sticky h2 {
  color: var(--parchment);
}

.framework-sticky p:not(.kicker) {
  max-width: 50ch;
  margin-top: 30px;
  color: rgba(242, 232, 213, 0.88);
  font-size: 1.13rem;
  font-weight: 400;
  line-height: 1.78;
}

.framework-meter {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 42px;
  border-top: 1px solid var(--rule-orange);
  border-left: 1px solid var(--rule-orange);
}

.framework-meter button {
  display: grid;
  place-items: center;
  min-height: 72px;
  color: rgba(242, 232, 213, 0.48);
  background: transparent;
  border-right: 1px solid var(--rule-orange);
  border-bottom: 1px solid var(--rule-orange);
  border-top: 0;
  border-left: 0;
  cursor: pointer;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  transition: color 260ms ease, background 260ms ease;
}

.framework-meter button:hover,
.framework-meter button:focus-visible,
.framework-meter button.is-active {
  color: var(--deep-teal);
  background: var(--orange);
}

.framework-meter button:focus-visible {
  outline: 3px solid var(--parchment);
  outline-offset: -6px;
}

.framework-mobile-controls {
  display: none;
}

.framework-scroll {
  display: grid;
  gap: 34px;
}

.framework-step {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 38px;
  min-height: 420px;
  align-items: center;
  padding: 38px 0;
  border-top: 1px solid var(--rule-orange);
  opacity: 0.58;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms cubic-bezier(0.19, 1, 0.22, 1);
}

.framework-step:last-child {
  border-bottom: 1px solid var(--rule-orange);
}

.framework-step.is-active {
  opacity: 1;
  transform: translateY(0);
}

.framework-letter {
  color: var(--orange);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 10rem;
  font-weight: 900;
  line-height: 0.78;
}

.framework-copy h3 {
  max-width: 740px;
  margin-bottom: 32px;
  color: var(--parchment);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

.framework-copy dl {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--rule-orange);
}

.framework-copy dl div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 28px;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule-orange);
}

.framework-copy dt {
  color: var(--orange);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.framework-copy dd {
  margin: 0;
  color: rgba(242, 232, 213, 0.88);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.72;
}

.method-section {
  position: relative;
  overflow: hidden;
  padding: 92px 40px;
  color: var(--parchment);
  background: var(--deep-teal);
  border-bottom: 1px solid var(--rule-orange);
}

.method-section h2,
.method-section h3 {
  color: var(--parchment);
}

.method-section::before {
  content: "SYSTEM";
  position: absolute;
  top: 18px;
  right: -28px;
  color: rgba(225, 118, 51, 0.055);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 16rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.section-heading {
  position: relative;
  max-width: 980px;
  margin-bottom: 42px;
}

.anti-theater {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.62fr);
  gap: 42px;
  align-items: baseline;
  margin-bottom: 66px;
  padding: 26px 0;
  border-top: 1px solid var(--rule-orange);
  border-bottom: 1px solid var(--rule-orange);
}

.anti-theater p:first-child {
  margin: 0;
  color: var(--orange);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

.anti-theater p:last-child {
  max-width: 74ch;
  margin: 0;
  color: rgba(242, 232, 213, 0.9);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.72;
}

.method-grid {
  position: relative;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule-orange);
}

.method-item {
  display: grid;
  grid-template-columns: 190px minmax(0, 0.6fr) minmax(280px, 0.65fr);
  gap: 34px;
  align-items: baseline;
  padding: 34px 0;
  border-bottom: 1px solid var(--rule-orange);
}

.method-step {
  color: var(--orange);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 6rem;
  font-weight: 900;
  line-height: 0.78;
}

.method-item h3 {
  margin-bottom: 0;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

.method-item p {
  max-width: 42ch;
  margin-bottom: 0;
  color: var(--parchment);
  font-weight: 400;
  line-height: 1.72;
}

.proof-section {
  background: var(--cream);
}

.proof-section blockquote p,
.proof-section cite {
  color: var(--deep-teal);
}

.proof-section blockquote {
  margin: 0;
  padding: 32px 0 0;
  border-top: 2px solid var(--orange);
}

.proof-media {
  display: grid;
  gap: 32px;
}

.proof-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 2px solid var(--deep-teal);
}

.image-callout {
  display: grid;
  gap: 10px;
  padding: 22px 0;
  border-top: 2px solid var(--deep-teal);
  border-bottom: 2px solid var(--deep-teal);
}

.image-callout span {
  color: var(--orange);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.image-callout p {
  margin: 0;
  color: var(--deep-teal);
  font-size: 1rem;
  line-height: 1.68;
}

.proof-section blockquote p {
  margin-bottom: 26px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 2.25rem;
  font-style: italic;
  line-height: 1.24;
}

.proof-section cite {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.business-proof-section {
  padding: 104px 40px;
  color: var(--deep-teal);
  background: var(--white);
  border-bottom: 2px solid var(--deep-teal);
}

.business-proof-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.9fr);
  gap: 82px;
  align-items: start;
}

.business-proof-copy h2 {
  max-width: 850px;
}

.business-proof-copy p:last-child {
  max-width: 58ch;
  margin-top: 30px;
  color: var(--deep-teal);
  font-size: 1.16rem;
  line-height: 1.78;
}

.business-proof-panel {
  display: grid;
  background: var(--deep-teal);
  color: var(--parchment);
  border: 2px solid var(--deep-teal);
}

.proof-metric {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 26px;
  padding: 30px;
  border-bottom: 1px solid var(--rule-orange);
}

.proof-metric:last-child {
  border-bottom: 0;
}

.proof-metric span {
  color: var(--orange);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
}

.proof-metric h3 {
  margin-bottom: 12px;
  color: var(--parchment);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.proof-metric p {
  grid-column: 2;
  margin: 0;
  color: rgba(242, 232, 213, 0.86);
  font-size: 1rem;
  line-height: 1.66;
}

.framework-teaser-section {
  position: relative;
  overflow: hidden;
  padding: 104px 40px;
  color: var(--parchment);
  background: var(--deep-teal);
  border-bottom: 1px solid var(--rule-orange);
}

.framework-teaser-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 0.85fr);
  gap: 76px;
  align-items: center;
}

.framework-teaser-copy h2 {
  color: var(--parchment);
  max-width: 900px;
}

.framework-teaser-copy p:not(.kicker) {
  max-width: 62ch;
  margin-top: 30px;
  margin-bottom: 34px;
  color: rgba(242, 232, 213, 0.88);
  font-size: 1.16rem;
  line-height: 1.76;
}

.framework-teaser-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule-orange);
  border-left: 1px solid var(--rule-orange);
}

.framework-teaser-board span {
  display: grid;
  place-items: center;
  min-height: 170px;
  color: var(--orange);
  border-right: 1px solid var(--rule-orange);
  border-bottom: 1px solid var(--rule-orange);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 7rem;
  font-weight: 900;
  line-height: 0.78;
}

.cta-section {
  padding: 82px 40px;
  color: var(--parchment);
  background: var(--dark-teal);
  border-top: 1px solid var(--rule-orange);
  border-bottom: 2px solid var(--deep-teal);
}

.design-site-header {
  position: sticky;
}

.design-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 0.62fr);
  gap: 72px;
  align-items: end;
  min-height: calc(100dvh - 84px);
  padding: 118px 40px 74px;
  color: var(--parchment);
  background: var(--dark-teal);
  border-bottom: 2px solid var(--deep-teal);
}

.design-hero-copy,
.design-hero-visual {
  position: relative;
  z-index: 1;
}

.design-hero h1 {
  max-width: 980px;
}

.design-hero-visual {
  display: grid;
  gap: 26px;
}

.design-hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--rule-orange);
}

.design-hero-card {
  display: grid;
  gap: 12px;
  padding: 24px 0 0;
  border-top: 2px solid var(--orange);
}

.design-hero-card span,
.design-hero-card strong {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.design-hero-card span {
  color: var(--orange);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.design-hero-card strong {
  max-width: 16ch;
  color: var(--parchment);
  font-size: 2.8rem;
  line-height: 0.94;
}

.design-why-section,
.design-outcomes-section,
.design-improve-section {
  padding: 104px 40px;
  color: var(--deep-teal);
  background: var(--white);
  border-bottom: 2px solid var(--deep-teal);
}

.design-why-shell,
.design-outcomes-shell,
.design-improve-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.74fr);
  gap: 84px;
  align-items: start;
}

.design-why-copy {
  padding-top: 64px;
}

.design-why-copy p,
.design-module-copy p,
.design-improve-shell p:last-child {
  max-width: 62ch;
  color: var(--deep-teal);
  font-size: 1.16rem;
  line-height: 1.8;
}

.design-framework-page-section,
.design-module-section {
  position: relative;
  overflow: hidden;
  padding: 104px 40px;
  color: var(--parchment);
  background: var(--deep-teal);
  border-bottom: 1px solid var(--rule-orange);
}

.design-framework-page-shell,
.design-module-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(520px, 1fr);
  gap: 76px;
  align-items: start;
}

.design-framework-copy h2,
.design-module-copy h2 {
  color: var(--parchment);
}

.design-framework-copy p:not(.kicker),
.design-module-copy p {
  margin-top: 30px;
  color: rgba(242, 232, 213, 0.88);
}

.design-framework-tool {
  display: grid;
  background: var(--parchment);
  color: var(--deep-teal);
  border: 2px solid var(--orange);
}

.design-letter-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 2px solid var(--deep-teal);
}

.design-letter-tabs button {
  min-height: 86px;
  color: var(--deep-teal);
  background: var(--white);
  border: 0;
  border-right: 2px solid var(--deep-teal);
  cursor: pointer;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 3rem;
  font-weight: 900;
}

.design-letter-tabs button:last-child {
  border-right: 0;
}

.design-letter-tabs button:hover,
.design-letter-tabs button:focus-visible,
.design-letter-tabs button.is-active {
  color: var(--deep-teal);
  background: var(--orange);
}

.design-letter-tabs button:focus-visible {
  outline: 3px solid var(--deep-teal);
  outline-offset: -6px;
}

.design-step-panel {
  display: grid;
  gap: 22px;
  padding: 40px;
}

.design-step-panel span {
  color: var(--orange);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.design-step-panel h3 {
  max-width: 720px;
  margin: 0;
  color: var(--deep-teal);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

.design-step-panel p {
  max-width: 68ch;
  margin: 0;
  color: var(--deep-teal);
  font-size: 1rem;
  line-height: 1.72;
}

.design-step-panel a {
  justify-self: start;
  color: var(--orange);
  border-bottom: 2px solid currentColor;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.design-outcomes-heading h2 {
  max-width: 840px;
}

.design-outcome-list {
  display: grid;
  border-top: 2px solid var(--deep-teal);
}

.design-outcome-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 28px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 2px solid var(--deep-teal);
}

.design-outcome-item span {
  color: var(--orange);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 0.8;
}

.design-outcome-item p {
  margin: 0;
  color: var(--deep-teal);
  font-size: 1.1rem;
  line-height: 1.62;
}

.design-module-copy .button {
  margin-top: 8px;
}

.design-module-flow {
  display: grid;
  background: var(--parchment);
  color: var(--deep-teal);
  border: 2px solid var(--orange);
}

.design-module-flow article {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 26px 30px;
  border-bottom: 1px solid var(--rule-teal);
}

.design-module-flow article:last-child {
  border-bottom: 0;
}

.design-module-flow span {
  color: var(--orange);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.8;
}

.design-module-flow p {
  margin: 0;
  color: var(--deep-teal);
  font-size: 1.04rem;
  line-height: 1.64;
}

.design-improve-shell {
  align-items: center;
}

.design-improve-shell img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 2px solid var(--deep-teal);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 54px;
  align-items: end;
  max-width: 1380px;
  margin: 0 auto;
}

.cta-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: var(--orange);
  font-size: 18px;
}

.cta-inner h2 {
  color: var(--parchment);
  max-width: 860px;
}

.cta-inner p {
  max-width: 45ch;
  margin-bottom: 28px;
  color: rgba(242, 232, 213, 0.88);
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.62;
}

.faq-section {
  padding: 88px 40px;
  color: var(--deep-teal);
  background: var(--parchment);
  border-bottom: 2px solid var(--deep-teal);
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 84px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 124px;
}

.faq-list {
  border-top: 2px solid var(--deep-teal);
}

.faq-item {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr);
  gap: 34px;
  padding: 28px 0;
  border-bottom: 2px solid var(--deep-teal);
}

.faq-item h3 {
  margin-bottom: 0;
  color: var(--deep-teal);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.faq-item p {
  max-width: 68ch;
  margin-bottom: 0;
  color: var(--deep-teal);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.72;
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 42px;
  align-items: center;
  padding: 46px 40px;
  color: var(--parchment);
  background: var(--deep-teal);
}

.footer img {
  width: 166px;
}

.footer p {
  margin: 0;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.reveal-enabled [data-reveal] {
  transform: translateY(30px);
  transition: transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-enabled [data-reveal].is-visible,
[data-reveal] {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 16px;
    padding: 16px 24px;
  }

  .nav-links {
    display: none;
  }

  .brand-mark img {
    width: 132px;
  }

  .hero,
  .light-section,
  .context-section,
  .framework-section,
  .diagnostic-section,
  .method-section,
  .proof-section,
  .business-proof-section,
  .cta-section,
  .faq-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero::before,
  .hero::after {
    left: 24px;
    right: 24px;
  }

  .hero-grid,
  .journey-shell,
  .two-column,
  .context-shell,
  .framework-shell,
  .diagnostic-shell,
  .proof-grid,
  .business-proof-shell,
  .framework-teaser-shell,
  .design-hero,
  .design-why-shell,
  .design-framework-page-shell,
  .design-outcomes-shell,
  .design-module-shell,
  .design-improve-shell,
  .cta-inner,
  .faq-shell {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: static;
  }

  .framework-sticky {
    position: static;
  }

  .hero-grid {
    min-height: auto;
    gap: 46px;
  }

  .design-hero {
    min-height: auto;
    padding-top: 96px;
  }

  .hero-panel {
    min-height: auto;
    padding-top: 26px;
  }

  .hero-panel p:last-child {
    max-width: 42ch;
  }

  .journey-intro {
    padding-right: 0;
    padding-bottom: 24px;
    border-right: 0;
    border-bottom: 2px solid var(--deep-teal);
  }

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

  .framework-teaser-board {
    grid-template-columns: repeat(6, 1fr);
  }

  .framework-teaser-board span {
    min-height: 112px;
    font-size: 4.5rem;
  }

  .design-why-copy {
    padding-top: 0;
  }

  .copy-stack {
    padding-top: 0;
  }

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

  .diagnostic-panel {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .diagnostic-score {
    font-size: 6.8rem;
  }

  .method-item {
    grid-template-columns: 150px 1fr;
  }

  .method-item p {
    grid-column: 2;
  }

  .ghost-type {
    font-size: 11rem;
  }

  h1 {
    font-size: 5.65rem;
  }

  h2 {
    font-size: 4.1rem;
  }

  .outcome-item h3 {
    font-size: 2.35rem;
  }

  .outcome-item,
  .outcome-content,
  .context-step,
  .framework-step,
  .anti-theater {
    grid-template-columns: 1fr;
  }

  .framework-step {
    min-height: 0;
  }

  .framework-letter {
    font-size: 7rem;
  }
}

@media (max-width: 700px) {
  .site-header {
    position: absolute;
  }

  .header-cta {
    padding: 11px 13px;
    font-size: 14px;
    letter-spacing: 1.3px;
  }

  .hero {
    padding-top: 132px;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  h1 {
    font-size: 3.85rem;
    line-height: 0.98;
  }

  h2 {
    font-size: 3rem;
    line-height: 1.02;
  }

  .hero-lede,
  .copy-stack p,
  .cta-section p,
  .faq-item p {
    font-size: 1.05rem;
  }

  .hero-panel p:last-child,
  .proof-section blockquote p {
    font-size: 1.45rem;
  }

  .stats-band,
  .diagnostic-tabs,
  .journey-steps {
    grid-template-columns: 1fr;
  }

  .journey-path {
    padding-left: 24px;
    padding-right: 24px;
  }

  .journey-step {
    min-height: 0;
  }

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

  .stat {
    border-right: 0;
  }

  .stat {
    border-bottom: 2px solid var(--deep-teal);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .method-section::before {
    font-size: 8rem;
  }

  .method-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .diagnostic-panel,
  .diagnostic-copy dl div {
    grid-template-columns: 1fr;
  }

  .diagnostic-board {
    box-shadow: 8px 8px 0 rgba(28, 58, 66, 0.12);
  }

  .diagnostic-panel {
    padding: 24px;
  }

  .diagnostic-toolbar {
    align-items: start;
    flex-direction: column;
    justify-content: center;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .diagnostic-section::before {
    font-size: 8rem;
  }

  .framework-section::before {
    font-size: 8rem;
  }

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

  .framework-teaser-board,
  .design-letter-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .framework-teaser-board span {
    min-height: 92px;
    font-size: 3.8rem;
  }

  .design-hero-card strong {
    max-width: none;
    font-size: 2.2rem;
  }

  .design-letter-tabs button {
    min-height: 68px;
    font-size: 2.35rem;
    border-bottom: 2px solid var(--deep-teal);
  }

  .design-step-panel {
    padding: 26px;
  }

  .design-step-panel h3 {
    font-size: 2.35rem;
  }

  .design-outcome-item,
  .design-module-flow article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .framework-meter button {
    min-height: 62px;
    font-size: 2.25rem;
  }

  .framework-mobile-controls {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    align-items: center;
    margin-top: 14px;
  }

  .framework-mobile-controls button {
    min-height: 46px;
    color: var(--parchment);
    background: transparent;
    border: 1px solid var(--rule-orange);
    cursor: pointer;
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }

  .framework-mobile-controls button:hover,
  .framework-mobile-controls button:focus-visible {
    color: var(--deep-teal);
    background: var(--orange);
  }

  .framework-mobile-controls button:focus-visible {
    outline: 3px solid var(--parchment);
    outline-offset: -5px;
  }

  .framework-mobile-controls span {
    color: rgba(242, 232, 213, 0.76);
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .framework-scroll {
    display: block;
    margin-top: 28px;
  }

  .framework-step {
    display: none;
  }

  .framework-step.is-active {
    display: grid;
    animation: frameworkCardIn 320ms cubic-bezier(0.19, 1, 0.22, 1);
  }

  @keyframes frameworkCardIn {
    from {
      opacity: 0;
      transform: translateY(16px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .framework-copy h3 {
    font-size: 2.35rem;
  }

  .framework-copy dl div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .diagnostic-tab {
    min-height: 118px;
  }

  .diagnostic-copy h3 {
    font-size: 2.35rem;
  }

  .diagnostic-score {
    font-size: 5.2rem;
  }

  .outcome-number {
    font-size: 4.4rem;
  }

  .outcome-item dl div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .proof-metric {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px;
  }

  .proof-metric p {
    grid-column: auto;
  }

  .faq-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .method-item p {
    grid-column: auto;
  }

  .method-step {
    font-size: 4.2rem;
  }

  .method-item h3 {
    font-size: 2.25rem;
  }

  .faq-item h3 {
    font-size: 1.75rem;
  }

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

  .footer p {
    font-size: 2.05rem;
  }
}
