@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&family=Libre+Baskerville:wght@400;700&display=swap");

:root {
  color-scheme: light;
  --paper: #f8f7f2;
  --paper-2: #fffefa;
  --ink: #18211d;
  --muted: #5b6661;
  --green: #08382f;
  --green-deep: #062820;
  --green-2: #10231f;
  --brass: #b88a4a;
  --blue-grey: #8fa6ad;
  --line: #d8ddd8;
  --mint: #6db8a8;
  --amber-soft: #e0c491;
  --serif: "Libre Baskerville", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shadow: 0 24px 70px rgba(18, 34, 29, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 88px;
  padding: 0 clamp(20px, 4vw, 56px);
  background: rgba(248, 247, 242, 0.9);
  border-bottom: 1px solid rgba(216, 221, 216, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-grid;
  justify-items: center;
  gap: 4px;
  white-space: nowrap;
}

.ledger-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 37px;
  color: var(--green-deep);
  font-family: var(--serif);
  font-size: 1.46rem;
  font-weight: 700;
  line-height: 1;
}

.ledger-mark::before,
.ledger-mark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green-deep);
}

.ledger-mark::before {
  top: 1px;
}

.ledger-mark::after {
  bottom: 1px;
}

.ledger-mark-letters {
  letter-spacing: -0.08em;
}

.brand-wordmark {
  position: relative;
  display: inline-block;
  padding-top: 8px;
  color: var(--green-deep);
  font-family: var(--serif);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-wordmark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 3px;
  transform: translateX(-50%);
  background: var(--brass);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 28px);
  color: #36443f;
  font-size: 0.88rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-links a,
.header-action,
.button {
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.header-action:hover,
.button:hover {
  transform: translateY(-2px);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 7px;
  font-size: 0.9rem;
  font-weight: 600;
}

.header-action {
  min-width: 78px;
  padding: 0 18px;
  color: #fff;
  background: var(--green-2);
}

.button {
  padding: 0 20px;
  border: 1px solid transparent;
}

.button.primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 28px rgba(11, 61, 53, 0.24);
}

.button.primary:hover {
  box-shadow: 0 18px 36px rgba(11, 61, 53, 0.3);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(24, 33, 29, 0.16);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(38px, 6vw, 84px);
  align-items: center;
  padding: 128px clamp(20px, 5vw, 72px) 72px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(248, 247, 242, 0.98), rgba(248, 247, 242, 0.72)),
    var(--paper);
}

.hero-copy {
  position: relative;
  z-index: 2;
  animation: oc-fade-up 820ms ease-out both;
}

.hero-visual {
  animation: oc-fade-up 920ms 120ms ease-out both;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: 4.24rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  max-width: 960px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 2.78rem;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0;
}

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

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.hero-subtitle {
  max-width: 720px;
  margin-bottom: 18px;
  color: #2d3934;
  font-size: 1.22rem;
  line-height: 1.65;
}

.audience-line {
  margin-bottom: 28px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-actions,
.final-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  border: 1px solid rgba(216, 221, 216, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow);
  overflow: hidden;
}

#scatter-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-title {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 2;
  max-width: min(470px, calc(100% - 240px));
  margin: 0;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  opacity: 0.78;
  text-transform: uppercase;
}

.operating-core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(11, 61, 53, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(248, 247, 242, 0.96) 0 38%, rgba(248, 247, 242, 0.7) 39% 100%);
  box-shadow: 0 0 0 12px rgba(184, 138, 74, 0.08);
  animation: operating-breathe 5.8s ease-in-out infinite;
}

.operating-core::before,
.operating-core::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(11, 61, 53, 0.22);
  border-radius: 50%;
}

.operating-core::before {
  inset: 18px;
}

.operating-core::after {
  inset: 40px;
  border-color: rgba(184, 138, 74, 0.44);
}

.operating-core span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: rgba(11, 61, 53, 0.7);
}

.operating-core span:nth-child(1) {
  width: 8px;
  height: 8px;
}

.operating-core span:nth-child(2) {
  width: 5px;
  height: 5px;
  transform: translate(28px, -22px);
  background: var(--brass);
}

.operating-core span:nth-child(3) {
  width: 5px;
  height: 5px;
  transform: translate(-24px, 28px);
  background: var(--blue-grey);
}

.approval-rail {
  position: absolute;
  right: 34px;
  bottom: 32px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  animation: gate-hold 4.6s ease-in-out infinite;
}

.approval-map-node {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border: 1px solid rgba(143, 166, 173, 0.58);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(92, 116, 108, 0.9) 0 4px, transparent 5px),
    radial-gradient(circle, transparent 0 15px, rgba(184, 138, 74, 0.42) 16px, rgba(184, 138, 74, 0.42) 17px, transparent 18px),
    radial-gradient(circle, transparent 0 27px, rgba(143, 166, 173, 0.48) 28px, rgba(143, 166, 173, 0.48) 29px, transparent 30px),
    rgba(248, 247, 242, 0.72);
  box-shadow: 0 0 0 8px rgba(184, 138, 74, 0.08);
}

.approval-map-node::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 48%, rgba(143, 166, 173, 0.26) 49%, rgba(143, 166, 173, 0.26) 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(143, 166, 173, 0.2) 49%, rgba(143, 166, 173, 0.2) 51%, transparent 52%);
  opacity: 0.66;
}

.approval-map-node i {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.approval-map-node i:nth-child(1) {
  width: 6px;
  height: 6px;
  transform: translate(18px, -12px);
  background: var(--brass);
}

.approval-map-node i:nth-child(2) {
  width: 6px;
  height: 6px;
  transform: translate(-17px, 16px);
  background: var(--blue-grey);
}

.approval-map-node i:nth-child(3) {
  width: 4px;
  height: 4px;
  transform: translate(6px, 18px);
  background: var(--green);
}

.rail-line {
  display: block;
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 138, 74, 0.9), rgba(184, 138, 74, 0.18));
}

.approval-rail strong {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}

.approval-rail strong em {
  margin-right: 8px;
  color: var(--green);
  font-family: var(--mono);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
}

.section {
  padding: clamp(78px, 10vw, 136px) clamp(20px, 5vw, 72px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(36px, 5vw, 62px);
}

.section-heading p {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 1.04rem;
  line-height: 1.68;
}

.section-heading.compact {
  margin-bottom: 36px;
}

.pain-section,
.before-after-section,
.faq-section {
  background: var(--paper-2);
  border-block: 1px solid var(--line);
}

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

.pain-card,
.outcome-grid article,
.boundary-grid article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
}

.pain-card {
  position: relative;
  min-height: 236px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 10px;
  padding: 24px;
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.pain-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--brass), rgba(143, 166, 173, 0.7));
  transition: transform 360ms ease;
}

.pain-card:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 61, 53, 0.28);
  box-shadow: var(--shadow);
}

.pain-card:hover::before {
  transform: scaleX(1);
}

.pain-number {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
}

.pain-card p {
  margin-bottom: 0;
  font-size: 0.96rem;
  line-height: 1.58;
}

.leadership-grid,
.audit-grid,
.faq-grid,
.final-inner,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(42px, 6vw, 78px);
  align-items: center;
}

.leadership-section {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(248, 247, 242, 0.98), rgba(248, 247, 242, 0.9)),
    var(--paper);
  border-block: 1px solid var(--line);
}

.leadership-section .section-kicker {
  color: var(--green);
}

.leadership-copy h2 {
  max-width: 720px;
  color: var(--ink);
  margin-bottom: 28px;
  font-size: 2.95rem;
  font-weight: 400;
  line-height: 1.12;
}

.leadership-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.68;
}

.leadership-copy p + p {
  margin-top: 18px;
}

.filtered-report {
  position: relative;
  min-height: 660px;
  overflow: hidden;
}

.loss-label {
  position: absolute;
  left: 50%;
  z-index: 2;
  margin: 0;
  transform: translateX(-50%);
  color: rgba(11, 61, 53, 0.54);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.loss-label-top {
  top: 8px;
}

.loss-label-bottom {
  bottom: 168px;
  color: rgba(184, 138, 74, 0.72);
}

.loss-funnel {
  position: absolute;
  inset: 42px 0 190px;
}

.loss-funnel svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.funnel-outline,
.funnel-line,
.funnel-top {
  fill: none;
  stroke: rgba(184, 138, 74, 0.38);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}

.funnel-line {
  stroke-dasharray: 4 8;
  opacity: 0.72;
}

.funnel-top {
  stroke: rgba(184, 138, 74, 0.48);
}

.stage-label {
  position: absolute;
  right: 4%;
  color: rgba(24, 33, 29, 0.68);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
}

.stage-ceo {
  top: 16%;
}

.stage-gm {
  top: 34%;
}

.stage-leads {
  top: 54%;
}

.stage-staff {
  top: 74%;
}

.stage-source {
  right: 3%;
  bottom: 0;
  color: rgba(184, 138, 74, 0.88);
}

.signal-dot {
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(11, 61, 53, 0.7);
  box-shadow: 0 0 12px rgba(11, 61, 53, 0.14);
  animation: signal-rise 6.6s ease-in-out infinite;
}

.dot-1 { left: 42%; bottom: 4%; animation-delay: -0.2s; }
.dot-2 { left: 49%; bottom: 8%; animation-delay: -0.7s; opacity: 0.72; background: var(--blue-grey); }
.dot-3 { left: 57%; bottom: 12%; animation-delay: -1.1s; background: var(--brass); }
.dot-4 { left: 37%; bottom: 16%; animation-delay: -1.5s; opacity: 0.62; background: var(--mint); }
.dot-5 { left: 62%; bottom: 22%; animation-delay: -2.1s; }
.dot-6 { left: 46%; bottom: 26%; animation-delay: -2.4s; opacity: 0.7; background: var(--blue-grey); }
.dot-7 { left: 54%; bottom: 31%; animation-delay: -2.9s; background: var(--brass); }
.dot-8 { left: 39%; bottom: 36%; animation-delay: -3.3s; opacity: 0.68; background: var(--mint); }
.dot-9 { left: 59%; bottom: 42%; animation-delay: -3.8s; }
.dot-10 { left: 47%; bottom: 49%; animation-delay: -4.2s; opacity: 0.76; background: var(--blue-grey); }
.dot-11 { left: 53%; bottom: 58%; animation-delay: -4.7s; opacity: 0.62; background: var(--brass); }
.dot-12 { left: 45%; bottom: 66%; animation-delay: -5.1s; opacity: 0.52; background: var(--mint); }
.dot-13 { left: 52%; bottom: 74%; animation-delay: -5.6s; opacity: 0.45; }
.dot-14 { left: 49%; bottom: 82%; animation-delay: -6.0s; opacity: 0.34; background: var(--blue-grey); }
.dot-15 { left: 50%; bottom: 90%; animation-delay: -6.3s; opacity: 0.26; }

.loss-funnel::before {
  content: "";
  position: absolute;
  left: 49%;
  top: 12%;
  width: 42px;
  height: 42px;
  transform: translateX(-50%);
  border: 1px solid rgba(184, 138, 74, 0.5);
  border-radius: 50%;
  animation: leadership-top-pulse 5.8s ease-in-out infinite;
}

.source-view {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 28px;
  padding: 26px 28px;
  border: 1px solid rgba(184, 138, 74, 0.44);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  animation: source-view-pulse 5.8s ease-in-out infinite;
}

.source-view strong {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  color: var(--brass);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.source-view span {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.3;
}

.readiness-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 6%, rgba(184, 138, 74, 0.1), transparent 24%),
    var(--paper-2);
  border-block: 1px solid var(--line);
}

.legibility-heading {
  justify-items: center;
  text-align: center;
}

.legibility-heading h2 {
  max-width: 980px;
  color: var(--ink);
  font-size: 3.15rem;
  font-weight: 400;
  line-height: 1.1;
}

.legibility-heading p {
  max-width: 850px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.legibility-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: clamp(38px, 5.2vw, 68px);
  border: 1px solid rgba(184, 138, 74, 0.34);
  background: rgba(184, 138, 74, 0.24);
  box-shadow: 0 20px 54px rgba(18, 34, 29, 0.08);
}

.legibility-step {
  min-height: 214px;
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 28px 24px 30px;
  background: rgba(255, 255, 255, 0.78);
  border-right: 1px solid rgba(184, 138, 74, 0.28);
  transition:
    background-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.legibility-step:last-child {
  border-right: 0;
}

.legibility-step:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 34px rgba(18, 34, 29, 0.1);
}

.legibility-step small {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0;
}

.legibility-step h3 {
  margin: 0;
  color: var(--green);
  font-family: var(--serif);
  font-size: 1.58rem;
  font-weight: 500;
  line-height: 1.08;
}

.legibility-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.legibility-outputs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: clamp(28px, 4.2vw, 54px);
}

.legibility-outputs span {
  display: grid;
  place-items: center;
  min-height: 74px;
  padding: 18px;
  border: 1px solid rgba(184, 138, 74, 0.4);
  background: rgba(255, 255, 255, 0.74);
  color: var(--green);
  font-family: var(--serif);
  font-size: 1.26rem;
  font-weight: 500;
  text-align: center;
  animation: review-pulse 6s ease-in-out infinite;
}

.legibility-outputs span:nth-child(2) {
  animation-delay: -1.2s;
}

.legibility-outputs span:nth-child(3) {
  animation-delay: -2.4s;
}

.comparison-table {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #fff;
}

.comparison-table > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.comparison-table span,
.comparison-table strong {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color 180ms ease, color 180ms ease;
}

.comparison-table > div:not(.table-head):hover span,
.comparison-table > div:not(.table-head):hover strong {
  background: rgba(184, 138, 74, 0.06);
}

.comparison-table span {
  color: var(--muted);
}

.comparison-table strong {
  color: var(--green);
}

.table-head span {
  color: var(--ink);
  background: #f1f1eb;
  font-size: 0.9rem;
  font-weight: 600;
}

.audit-section {
  background:
    radial-gradient(circle at 82% 24%, rgba(184, 138, 74, 0.12), transparent 30%),
    var(--paper);
}

.audit-copy h2 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: 2.95rem;
  line-height: 1.12;
}

.audit-copy p {
  max-width: 650px;
  font-size: 1.02rem;
  line-height: 1.68;
}

.report-stack {
  position: relative;
  display: grid;
  gap: 10px;
}

.report-stack article {
  position: relative;
  padding: 18px 20px 18px 54px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 500;
  box-shadow: 0 10px 28px rgba(18, 34, 29, 0.08);
}

.report-stack article.is-visible {
  animation: report-card-enter 700ms ease both;
}

.report-stack article:nth-child(2) { animation-delay: 70ms; }
.report-stack article:nth-child(3) { animation-delay: 140ms; }
.report-stack article:nth-child(4) { animation-delay: 210ms; }
.report-stack article:nth-child(5) { animation-delay: 280ms; }
.report-stack article:nth-child(6) { animation-delay: 350ms; }
.report-stack article:nth-child(7) { animation-delay: 420ms; }
.report-stack article:nth-child(8) { animation-delay: 490ms; }

.report-stack article::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border: 1px solid rgba(11, 61, 53, 0.38);
  background: linear-gradient(90deg, var(--brass) 40%, transparent 40%);
}

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

.outcome-grid article,
.boundary-grid article {
  min-height: 182px;
  padding: 26px;
}

.outcome-grid h3,
.boundary-grid h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.12;
}

.outcome-grid article {
  border-top: 4px solid var(--green);
}

.outcome-grid article:nth-child(2n) {
  border-top-color: var(--brass);
}

.outcome-grid p,
.boundary-grid p {
  margin-bottom: 0;
  font-size: 0.98rem;
  line-height: 1.6;
}

.boundary-section {
  background: var(--paper-2);
}

.boundary-grid article {
  border-top: 4px solid var(--brass);
}

.boundary-grid article:nth-child(2) {
  border-top-color: var(--green);
}

.boundary-grid article:nth-child(3) {
  border-top-color: var(--blue-grey);
}

.faq-grid {
  align-items: start;
}

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

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.25;
}

.faq-list summary::after {
  content: "+";
  color: var(--brass);
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list p {
  margin: 12px 0 0;
  font-size: 0.98rem;
  line-height: 1.62;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

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

.final-cta {
  background: #11231f;
  color: #fff;
}

.final-cta p,
.final-cta .section-kicker {
  color: #b9c6c0;
}

.final-inner {
  align-items: end;
}

.final-inner h2 {
  max-width: 780px;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(248, 247, 242, 0.98), rgba(255, 254, 250, 0.94)),
    var(--paper-2);
  border-top: 1px solid var(--line);
}

.contact-grid {
  align-items: start;
}

.contact-copy h2 {
  max-width: 690px;
}

.contact-copy > p {
  max-width: 610px;
  margin-bottom: 28px;
  color: #3b4742;
  font-size: 1.04rem;
  line-height: 1.68;
}

.contact-note {
  max-width: 540px;
  padding: 22px 24px;
  border: 1px solid rgba(184, 138, 74, 0.36);
  border-left: 4px solid var(--brass);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
}

.contact-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--green-deep);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-note p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.58;
}

.enquiry-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

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

.enquiry-form label,
.contact-method {
  display: grid;
  gap: 8px;
}

.enquiry-form label span,
.contact-method legend {
  color: var(--green-deep);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(24, 33, 29, 0.18);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffefa;
  font-family: var(--sans);
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.45;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
  color: rgba(91, 102, 97, 0.62);
  font-weight: 300;
}

.enquiry-form textarea {
  resize: vertical;
  min-height: 132px;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(11, 61, 53, 0.12);
}

.contact-method {
  grid-template-columns: auto 1fr 1fr;
  align-items: center;
  margin: 0;
  padding: 16px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.contact-method label,
.consent-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #33403b;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 400;
}

.contact-method input,
.consent-line input {
  width: 16px;
  height: 16px;
  accent-color: var(--green);
}

.consent-line {
  align-items: flex-start;
  padding-top: 2px;
}

.consent-line span {
  color: #4d5954;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
  text-transform: none;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.form-actions .button {
  border: 0;
  cursor: pointer;
}

.form-status {
  flex: 1;
  min-width: 220px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.form-status[data-state="success"] {
  color: var(--green);
}

.form-status[data-state="error"] {
  color: #8b4b2f;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.enquiry-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: #0d1f1b;
  color: #dce5e0;
}

.site-footer span {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-footer p {
  max-width: 860px;
  margin: 0;
  color: #aebbb5;
  font-size: 0.86rem;
  line-height: 1.55;
}

@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }

  .hero,
  .leadership-grid,
  .audit-grid,
  .faq-grid,
  .final-inner,
  .contact-grid,
  .legibility-board {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

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

@media (max-width: 680px) {
  .site-header {
    height: 74px;
    padding: 0 16px;
    gap: 12px;
  }

  .brand {
    transform: scale(0.78);
    transform-origin: left center;
  }

  .brand-wordmark {
    font-size: 0.72rem;
    letter-spacing: 0;
  }

  .header-action {
    min-width: 64px;
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: auto;
    gap: 32px;
    padding: 108px 18px 56px;
  }

  h1 {
    font-size: 2.48rem;
    line-height: 1.12;
  }

  h2 {
    font-size: 2.02rem;
    line-height: 1.16;
  }

  .hero-subtitle {
    font-size: 1.02rem;
    line-height: 1.6;
  }

  .leadership-copy h2,
  .legibility-heading h2,
  .contact-copy h2 {
    font-size: 2.02rem;
    line-height: 1.16;
  }

  .leadership-copy p,
  .legibility-heading p,
  .contact-copy > p {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .section {
    padding: 64px 18px;
  }

  .section-heading {
    gap: 14px;
    margin-bottom: 30px;
  }

  .section-heading p {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 10px;
    font-size: 0.68rem;
  }

  .hero-actions,
  .final-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 46px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .map-title {
    left: 18px;
    right: 18px;
    bottom: 76px;
    max-width: none;
    font-size: 0.58rem;
    line-height: 1.35;
    text-align: center;
  }

  .approval-rail {
    left: 16px;
    right: 16px;
    bottom: 16px;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 8px 10px;
    border: 1px solid rgba(184, 138, 74, 0.28);
    background: rgba(255, 255, 255, 0.82);
  }

  .approval-map-node {
    width: 34px;
    height: 34px;
    box-shadow: 0 0 0 5px rgba(184, 138, 74, 0.06);
  }

  .approval-map-node::before {
    display: none;
  }

  .approval-map-node i:nth-child(1) {
    width: 4px;
    height: 4px;
    transform: translate(10px, -8px);
  }

  .approval-map-node i:nth-child(2) {
    width: 4px;
    height: 4px;
    transform: translate(-10px, 9px);
  }

  .approval-map-node i:nth-child(3) {
    width: 3px;
    height: 3px;
    transform: translate(4px, 11px);
  }

  .rail-line {
    width: 34px;
  }

  .approval-rail strong {
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .operating-core {
    top: 42%;
    width: 92px;
    height: 92px;
  }

  .pain-grid,
  .outcome-grid,
  .boundary-grid,
  .form-row.two,
  .legibility-outputs,
  .comparison-table > div {
    grid-template-columns: 1fr;
  }

  .enquiry-form {
    padding: 22px;
  }

  .contact-method {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-status {
    min-width: 0;
  }

  .legibility-step {
    min-height: auto;
    padding: 22px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(184, 138, 74, 0.28);
  }

  .legibility-step h3 {
    font-size: 1.38rem;
  }

  .legibility-step p,
  .pain-card p,
  .outcome-grid p,
  .boundary-grid p {
    font-size: 0.94rem;
    line-height: 1.56;
  }

  .pain-card {
    min-height: auto;
    padding: 22px;
  }

  .legibility-step:last-child {
    border-bottom: 0;
  }

  .filtered-report {
    min-height: 600px;
    margin-top: 8px;
  }

  .source-view {
    left: 0;
    right: 0;
    bottom: 0;
    grid-template-columns: 1fr 1fr;
    gap: 8px 18px;
    padding: 18px;
  }

  .source-view strong {
    font-size: 0.64rem;
    line-height: 1.4;
  }

  .source-view span {
    font-size: 0.9rem;
  }

  .loss-funnel {
    inset: 36px 0 214px;
  }

  .loss-label-bottom {
    bottom: 186px;
  }

  .stage-label {
    right: 2px;
    font-size: 0.56rem;
  }

  .stage-source {
    right: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 18px;
  }
}

@media (max-width: 430px) {
  .hero {
    padding-inline: 16px;
  }

  h1 {
    font-size: 2.24rem;
  }

  h2,
  .leadership-copy h2,
  .legibility-heading h2,
  .audit-copy h2,
  .contact-copy h2 {
    font-size: 1.86rem;
  }

  .hero-visual {
    min-height: 330px;
  }

  .approval-rail {
    align-items: flex-end;
    flex-direction: row;
    gap: 8px;
  }

  .rail-line {
    width: 22px;
    height: 1px;
  }

  .approval-rail strong {
    max-width: none;
    text-align: left;
    white-space: normal;
  }

  .filtered-report {
    min-height: 560px;
  }

  .stage-label {
    font-size: 0.52rem;
  }

  .comparison-table span,
  .comparison-table strong {
    min-height: auto;
    padding: 14px 16px;
  }
}

@keyframes signal-in {
  0%,
  100% {
    transform: translateX(-8px);
    opacity: 0.54;
  }

  50% {
    transform: translateX(8px);
    opacity: 1;
  }
}

@keyframes oc-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes operating-breathe {
  0%,
  100% {
    box-shadow: 0 0 0 12px rgba(184, 138, 74, 0.08);
  }

  50% {
    box-shadow: 0 0 0 18px rgba(184, 138, 74, 0.13);
  }
}

@keyframes gate-hold {
  0%,
  100% {
    border-color: rgba(184, 138, 74, 0.42);
  }

  50% {
    border-color: rgba(11, 61, 53, 0.32);
  }
}

@keyframes source-scan {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.28;
  }

  50% {
    transform: translateY(-360px);
    opacity: 0.72;
  }
}

@keyframes signal-rise {
  0%,
  100% {
    transform: translateY(14px) scale(0.9);
    filter: blur(0.7px);
  }

  50% {
    transform: translateY(-18px) scale(1);
    filter: blur(0);
  }
}

@keyframes leadership-top-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: translateX(-50%) scale(0.92);
  }

  50% {
    opacity: 0.72;
    transform: translateX(-50%) scale(1.08);
  }
}

@keyframes source-view-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(184, 138, 74, 0);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(184, 138, 74, 0.08);
  }
}

@keyframes review-pulse {
  0%,
  100% {
    border-color: rgba(184, 138, 74, 0.3);
  }

  50% {
    border-color: rgba(184, 138, 74, 0.78);
  }
}

@keyframes report-card-enter {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

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

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

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

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
