:root {
  color-scheme: light;
  --ink: #101820;
  --ink-soft: #344150;
  --muted: #697586;
  --paper: #f6f8f8;
  --panel: #ffffff;
  --line: #d9dfdf;
  --line-soft: rgba(16, 24, 32, 0.09);
  --dark: #101820;
  --dark-soft: #172333;
  --blue: #4c7f9c;
  --green: #3c7a63;
  --copper: #c86e3b;
  --gold: #b58b45;
  --shadow: 0 24px 70px rgba(16, 24, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: linear-gradient(180deg, #ffffff 0%, var(--paper) 48%, #ffffff 100%);
  color: var(--ink);
  font-family: "Instrument Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

main {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(76, 127, 156, 0.35);
  outline-offset: 3px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
  padding: 14px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 14px 40px rgba(16, 24, 32, 0.07);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--dark);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 12px;
}

.site-nav a:hover {
  background: rgba(16, 24, 32, 0.06);
}

.site-nav .nav-button {
  background: var(--dark);
  color: #fff;
  box-shadow: 0 10px 22px rgba(16, 24, 32, 0.16);
}

.section-pad {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 64px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(38px, 7vw, 92px);
  min-height: min(780px, calc(100svh - 118px));
  padding-top: clamp(32px, 5vw, 58px);
  padding-bottom: clamp(42px, 6vw, 74px);
}

.hero-copy {
  min-width: 0;
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(4rem, 8.8vw, 8.6rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-role {
  margin: 22px 0 0;
  color: var(--blue);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 800;
  line-height: 1.35;
}

.hero-lede {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.62;
}

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

.primary-button,
.secondary-button,
.inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  border: 1px solid var(--dark);
  padding: 0 19px;
  font-size: 0.95rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.primary-button {
  background: var(--dark);
  color: #fff;
  box-shadow: 0 14px 28px rgba(16, 24, 32, 0.14);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.78);
  color: var(--dark);
}

.primary-button:hover,
.secondary-button:hover,
.inline-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(16, 24, 32, 0.1);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin: 44px 0 0;
}

.hero-facts div {
  min-width: 0;
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
}

.hero-facts dt,
.service-card-header span,
.service-card-footer,
.target-strip,
.timeline time {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 7px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.hero-media {
  min-width: 0;
  perspective: 1200px;
}

.service-card {
  overflow: hidden;
  border: 1px solid rgba(16, 24, 32, 0.16);
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
  box-shadow: var(--shadow);
  transform: rotate(-0.45deg);
}

.service-card-header,
.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
}

.service-card-header strong {
  font-size: 0.94rem;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background: #172333;
}

.service-card-footer {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
}

.service-card-footer span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 7px 9px;
}

.target-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px clamp(18px, 5vw, 64px);
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.target-strip span {
  border-radius: 999px;
  background: rgba(16, 24, 32, 0.055);
  padding: 8px 11px;
}

.manager-scan {
  background: #fff;
}

.scan-heading {
  margin-bottom: clamp(26px, 4vw, 44px);
}

.scan-board {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.58fr);
  gap: 18px;
}

.scan-primary,
.scan-card,
.artifact-card,
.project-card,
.case-study-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 52px rgba(16, 24, 32, 0.09);
}

.scan-primary {
  display: grid;
  gap: 24px;
  padding: clamp(22px, 4vw, 38px);
}

.scan-primary h3 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.02;
}

.scan-primary p {
  max-width: 780px;
  margin: 13px 0 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.scan-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.scan-list div {
  min-width: 0;
  background: #fff;
  padding: 16px;
}

.scan-list dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.scan-list dd {
  margin: 7px 0 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.scan-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.scan-side {
  display: grid;
  gap: 18px;
}

.scan-card {
  padding: 22px;
}

.scan-checklist {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.scan-checklist li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.45;
}

.scan-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper);
}

.proof-section {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
}

.proof-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
}

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

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

.project-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.project-card-feature {
  grid-column: span 2;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.74fr);
  grid-template-rows: auto;
}

.project-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
  border-bottom: 1px solid var(--line);
  background: #172333;
}

.project-card-feature .project-media img {
  height: 100%;
  min-height: 430px;
  border-right: 1px solid var(--line);
  border-bottom: 0;
}

.project-body {
  display: grid;
  align-content: start;
  padding: clamp(22px, 3.2vw, 36px);
}

.project-card h3,
.case-study-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.32rem, 2vw, 1.78rem);
  line-height: 1.12;
}

.project-value {
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.58;
}

.project-fields {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
}

.project-fields div {
  border-top: 1px solid var(--line-soft);
  padding-top: 14px;
}

.project-fields dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.project-fields dd {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.52;
}

.project-card-dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 28%),
    var(--dark);
  color: #fff;
  border-color: rgba(16, 24, 32, 0.2);
}

.project-card-dark .project-media img {
  border-color: rgba(255, 255, 255, 0.12);
}

.project-card-dark h3,
.project-card-dark .project-value,
.project-card-dark .project-fields dd {
  color: #fff;
}

.project-card-dark .project-value,
.project-card-dark .project-fields dd {
  color: rgba(255, 255, 255, 0.76);
}

.project-card-dark .project-fields div {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.project-card-dark .proof-label,
.project-card-dark .project-fields dt {
  color: var(--gold);
}

.project-card-dark .inline-link {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.proof-intro h2,
.section-heading h2,
.contact-band h2 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.6rem, 5.4vw, 5.6rem);
  font-weight: 400;
  line-height: 0.96;
}

.proof-intro p,
.section-heading p,
.contact-band p,
.proof-panel p,
.timeline p,
.focus-detail p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.proof-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: auto 1fr;
}

.proof-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
  border-bottom: 1px solid var(--line);
}

.proof-panel-dark {
  background: var(--dark);
  color: #fff;
  border-color: rgba(16, 24, 32, 0.2);
}

.proof-panel-dark h3 {
  color: #fff;
}

.proof-panel-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.proof-panel-dark .inline-link {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.proof-panel div {
  padding: clamp(20px, 3vw, 32px);
}

.proof-label {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-panel-dark .proof-label {
  color: var(--gold);
}

.proof-panel h3,
.focus-detail h3,
.timeline h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.2;
}

.proof-panel.proof-panel-dark h3 {
  color: #fff;
}

.proof-panel-copper {
  grid-column: span 2;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.76fr);
  grid-template-rows: auto;
}

.proof-panel-copper img {
  height: 100%;
  min-height: 360px;
  border-right: 1px solid var(--line);
  border-bottom: 0;
}

.proof-panel-copper .proof-label {
  color: var(--copper);
}

.proof-points {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.proof-points li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.45;
}

.proof-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.proof-panel-dark .proof-points li {
  color: rgba(255, 255, 255, 0.78);
}

.proof-panel-dark .proof-points li::before {
  background: var(--gold);
}

.inline-link {
  width: fit-content;
  margin-top: 10px;
  border-color: rgba(16, 24, 32, 0.18);
  background: rgba(16, 24, 32, 0.04);
}

.artifact-section {
  background: linear-gradient(180deg, rgba(246, 248, 248, 0.72), #fff);
}

.systems-section {
  background: linear-gradient(180deg, rgba(246, 248, 248, 0.82), #fff);
}

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

.case-study-card {
  display: grid;
  align-content: start;
  padding: clamp(22px, 3vw, 30px);
}

.case-study-card .project-fields {
  margin-bottom: 10px;
}

.case-study-card .inline-link {
  align-self: end;
}

.case-page {
  background: linear-gradient(180deg, #fff 0%, var(--paper) 54%, #fff 100%);
}

.case-hero {
  padding-top: clamp(42px, 6vw, 72px);
}

.case-back {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 850;
}

.case-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.case-hero h1 {
  max-width: 840px;
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(3.6rem, 8vw, 8rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
}

.case-deck {
  max-width: 820px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.62;
}

.case-summary,
.case-panel,
.case-note {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 52px rgba(16, 24, 32, 0.08);
}

.case-summary {
  padding: clamp(22px, 3vw, 30px);
}

.case-summary dl {
  display: grid;
  gap: 1px;
  margin: 20px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.case-summary dl div {
  min-width: 0;
  background: #fff;
  padding: 16px;
}

.case-summary dt,
.case-panel h3 span,
.case-note span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.case-summary dd {
  margin: 7px 0 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.38;
}

.case-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.case-pill-row span {
  border-radius: 999px;
  background: rgba(16, 24, 32, 0.055);
  color: var(--ink-soft);
  padding: 8px 10px;
  font-size: 0.78rem;
  font-weight: 850;
}

.case-section {
  padding-top: 0;
}

.case-section-heading {
  max-width: 920px;
  margin-bottom: clamp(24px, 4vw, 40px);
}

.case-section-heading h2 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.4rem, 4.6vw, 4.8rem);
  font-weight: 400;
  line-height: 0.98;
}

.case-section-heading p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

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

.case-workflow-card {
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 52px rgba(16, 24, 32, 0.08);
}

.case-workflow-head {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.52fr);
  gap: 18px;
  align-items: end;
  padding: clamp(22px, 3vw, 30px);
  border-bottom: 1px solid var(--line);
}

.case-workflow-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.08;
}

.case-workflow-head p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.workflow-map {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.workflow-map-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.workflow-step {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  min-height: 190px;
  background: #fff;
  padding: 20px;
}

.workflow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 31px;
  right: -7px;
  z-index: 1;
  width: 14px;
  height: 14px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: #fff;
  transform: rotate(45deg);
}

.workflow-step span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.workflow-step strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
}

.workflow-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.45;
}

.case-proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.5fr);
  gap: 14px;
  margin-top: 14px;
}

.case-proof-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 18px 52px rgba(16, 24, 32, 0.08);
}

.case-proof-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  min-width: 0;
  background: #fff;
  padding: 18px;
}

.case-proof-row span,
.case-workflow-head span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.case-proof-row strong {
  color: var(--ink);
  line-height: 1.35;
}

.case-proof-row p {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.55;
}

.case-panel {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(22px, 3vw, 30px);
}

.case-panel h3 {
  display: grid;
  gap: 10px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  line-height: 1.15;
}

.case-panel p,
.case-note p,
.case-list li {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

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

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

.case-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.case-note {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: clamp(20px, 3vw, 28px);
  border-left: 3px solid var(--copper);
  box-shadow: none;
}

.case-note-guardrail {
  border-left-color: var(--green);
  background:
    linear-gradient(90deg, rgba(60, 122, 99, 0.08), transparent 42%),
    var(--panel);
}

.case-note strong {
  color: var(--ink);
  font-size: 1.12rem;
}

.case-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

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

.artifact-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 248px;
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.artifact-card:hover {
  border-color: rgba(76, 127, 156, 0.45);
  box-shadow: 0 24px 58px rgba(16, 24, 32, 0.13);
  transform: translateY(-2px);
}

.artifact-card span {
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.artifact-card strong {
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.18;
}

.artifact-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.capability-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 34%),
    linear-gradient(135deg, var(--dark), #0d151f);
  color: #fff;
}

.capability-section .section-heading p,
.capability-section .focus-detail p {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.62fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 56px);
}

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

.focus-card {
  min-height: 132px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 18px;
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.focus-card span {
  color: var(--gold);
  display: block;
  margin-bottom: 34px;
  font-size: 0.82rem;
  font-weight: 800;
}

.focus-card strong {
  display: block;
  font-size: 1.04rem;
  line-height: 1.2;
}

.focus-card:hover,
.focus-card.active {
  border-color: rgba(181, 139, 69, 0.76);
  background: rgba(181, 139, 69, 0.14);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.focus-detail {
  max-width: 920px;
  margin-top: 18px;
  border-left: 2px solid var(--gold);
  padding: 8px 0 8px 20px;
}

.focus-detail h3 {
  color: #fff;
}

.timeline-section {
  background: linear-gradient(180deg, #fff, rgba(246, 248, 248, 0.74));
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.timeline article {
  min-width: 0;
  background: rgba(255, 255, 255, 0.92);
  padding: 24px;
}

.timeline time {
  display: block;
  margin-bottom: 28px;
  color: var(--blue);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  margin: clamp(18px, 5vw, 64px);
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 58px);
}

.contact-band p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.contact-band .primary-button {
  border-color: #fff;
  background: #fff;
  color: var(--dark);
}

.contact-band .secondary-button {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
	  .hero,
	  .proof-intro,
	  .section-heading,
	  .contact-band,
	  .scan-board,
	  .case-hero-grid {
	    grid-template-columns: 1fr;
	  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    max-width: 720px;
  }

  .focus-grid,
  .timeline,
	  .proof-showcase,
	  .artifact-grid,
	  .case-study-grid,
	  .case-grid,
	  .case-workflow-head,
	  .case-proof-layout {
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	  }

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

  .contact-actions {
    justify-content: flex-start;
  }
}

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

	  .site-nav {
	    width: 100%;
	    justify-content: flex-start;
	    flex-wrap: wrap;
	    gap: 4px;
	    overflow-x: visible;
	    row-gap: 4px;
	    padding-bottom: 0;
	  }

	  .site-nav a {
	    min-height: 38px;
	    padding: 0 9px;
	    font-size: 0.9rem;
	  }

  .brand span:last-child {
    white-space: nowrap;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 18vw, 5.6rem);
  }

  .hero {
    gap: 28px;
    padding-top: 38px;
    padding-bottom: 26px;
  }

  .hero-lede {
    margin-top: 22px;
    font-size: 1.05rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-facts {
    margin-top: 34px;
  }

  .service-card img {
    aspect-ratio: 16 / 8;
  }

  .hero-facts,
  .focus-grid,
  .timeline,
  .proof-showcase,
  .artifact-grid,
	  .project-grid,
	  .case-study-grid,
	  .case-grid,
	  .case-workflow-head,
	  .case-proof-layout,
	  .scan-list {
	    grid-template-columns: 1fr;
	  }

	  .workflow-map {
	    grid-template-columns: 1fr;
	  }

	  .workflow-step {
	    min-height: auto;
	  }

	  .workflow-step:not(:last-child)::after {
	    top: auto;
	    right: auto;
	    bottom: -7px;
	    left: 28px;
	    transform: rotate(135deg);
	  }

	  .case-proof-row {
	    grid-template-columns: 1fr;
	    gap: 8px;
	  }

	  .case-hero h1 {
	    font-size: clamp(3.3rem, 16vw, 5.4rem);
	  }

  .project-card-feature {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .project-card-feature .project-media img {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-panel-copper {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .proof-panel-copper img {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card {
    transform: none;
  }

  .contact-band {
    margin-inline: 18px;
  }

  .primary-button,
  .secondary-button,
  .inline-link {
    min-height: 48px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .contact-actions,
  .scan-actions {
    display: grid;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .target-strip {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .target-strip span {
    white-space: nowrap;
  }
}

@media print {
  body {
    background: #fff;
  }

  .site-header,
  .hero-media,
  .target-strip,
  .proof-section,
  .artifact-section,
  .systems-section,
  .capability-section,
  .timeline-section,
  .site-footer,
  [data-print-packet] {
    display: none !important;
  }

  .section-pad,
  .hero,
  .manager-scan {
    padding: 18px 0;
  }

  .hero {
    display: block;
    min-height: auto;
  }

  .hero h1 {
    font-size: 4.5rem;
  }

  .scan-primary,
  .scan-card,
  .contact-band {
    box-shadow: none;
  }

  .contact-band {
    margin: 18px 0 0;
    color: var(--ink);
    background: #fff;
    border-color: var(--line);
  }
}

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

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