:root {
  --black: #020202;
  --black-2: #070707;
  --black-3: #0d0d0d;
  --gold: #b98a42;
  --gold-2: #d8b66f;
  --text: #f5f1e8;
  --muted: #b9b1a4;
  --muted-2: #d2c5ad;
  --line: rgba(216, 182, 111, 0.22);
  --line-strong: rgba(216, 182, 111, 0.42);
  --panel: rgba(255, 255, 255, 0.025);
  --panel-2: rgba(216, 182, 111, 0.045);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --max: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% -10%, rgba(216, 182, 111, 0.08), transparent 26rem),
    linear-gradient(180deg, #020202 0%, #050505 44%, #020202 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 12%, rgba(216, 182, 111, 0.09), transparent 28rem),
    linear-gradient(90deg, rgba(216, 182, 111, 0.018) 1px, transparent 1px),
    linear-gradient(rgba(216, 182, 111, 0.014) 1px, transparent 1px);
  background-size: auto, 92px 92px, 92px 92px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.72) 45%, transparent 92%);
}

img,
svg,
video,
iframe {
  display: block;
  max-width: 100%;
  height: auto;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 4px;
}

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 2, 2, 0.9);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(150px, 15vw, 178px);
  height: auto;
  max-height: none;
  object-fit: contain;
  image-rendering: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  color: var(--muted-2);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links a {
  padding-block: 8px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  border-color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  padding: 13px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.01);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.015);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn:hover {
  border-color: var(--gold-2);
  background: rgba(216, 182, 111, 0.08);
  transform: translateY(-1px);
}

.btn-primary {
  border-color: rgba(216, 182, 111, 0.76);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #060606;
  box-shadow: 0 18px 42px rgba(185, 138, 66, 0.18);
}

.btn-primary:hover {
  color: #060606;
  background: linear-gradient(135deg, #e2c17a, #bd8e43);
}

.hero {
  position: relative;
  min-height: 640px;
  padding: clamp(74px, 9vw, 132px) 0 clamp(54px, 7vw, 88px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  right: -12vw;
  bottom: -18rem;
  width: min(78vw, 920px);
  height: min(78vw, 920px);
  border: 1px solid rgba(216, 182, 111, 0.18);
  background:
    linear-gradient(120deg, transparent 45%, rgba(216, 182, 111, 0.22), transparent 58%),
    repeating-linear-gradient(100deg, transparent 0 28px, rgba(216, 182, 111, 0.16) 29px, transparent 30px);
  transform: rotate(-9deg) skewX(-8deg);
  opacity: 0.72;
}

.hero::after {
  inset: auto 0 0;
  height: 220px;
  background: linear-gradient(to top, #020202, transparent);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: end;
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-2);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
a,
li,
dt,
dd,
span,
button,
label {
  overflow-wrap: break-word;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 5.1vw, 5.35rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-transform: uppercase;
}

p {
  color: var(--muted);
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: #ded8ce;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
}

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

.hero-panel,
.compact-card,
.step,
.contract-card,
.intake-form,
.values-grid article,
.capability-matrix article,
.capability-band {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 28px;
}

.snapshot-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.snapshot-list div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(216, 182, 111, 0.16);
}

.snapshot-list div:first-child {
  padding-top: 0;
}

.snapshot-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.snapshot-list dt {
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.snapshot-list dd {
  margin: 0;
  color: var(--text);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
}

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

.proof-grid article {
  min-width: 0;
  padding: 30px clamp(18px, 2.5vw, 34px);
  border-left: 1px solid rgba(216, 182, 111, 0.16);
}

.proof-grid article:last-child {
  border-right: 1px solid rgba(216, 182, 111, 0.16);
}

.proof-grid span,
.service-list span,
.values-grid span,
.step strong {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.proof-grid h2 {
  margin-bottom: 8px;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proof-grid p,
.compact-card p,
.step p,
.service-list p,
.capability-matrix p,
.values-grid p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.section {
  padding-block: clamp(76px, 8vw, 118px);
  border-bottom: 1px solid rgba(216, 182, 111, 0.13);
}

.section-intro {
  max-width: 680px;
}

.section-intro.narrow {
  max-width: 760px;
}

.section-intro p {
  margin-bottom: 24px;
}

.section-intro h2::after,
.page-hero h1::after {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  margin-top: 22px;
  background: var(--gold);
}

.split-section,
.contract-grid,
.contact-preview,
.two-column,
.intake-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.split-section.reverse .section-intro {
  order: 2;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  width: 28px;
  height: 1px;
  margin-left: 12px;
  background: currentColor;
}

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

.compact-card,
.step,
.capability-band,
.contract-card,
.capability-matrix article,
.values-grid article {
  padding: 26px;
}

.compact-card {
  min-height: 190px;
}

.compact-card,
.capability-matrix article,
.values-grid article,
.contract-card {
  position: relative;
  overflow: hidden;
}

.compact-card::before,
.capability-matrix article::before,
.values-grid article::before,
.contract-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(216, 182, 111, 0.28);
  background: linear-gradient(135deg, rgba(216, 182, 111, 0.08), transparent 42%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.compact-card > *,
.capability-matrix article > *,
.values-grid article > *,
.contract-card > * {
  position: relative;
}

.compact-card:hover,
.capability-matrix article:hover,
.values-grid article:hover,
.contract-card:hover {
  border-color: rgba(216, 182, 111, 0.5);
}

.compact-card:hover::before,
.capability-matrix article:hover::before,
.values-grid article:hover::before,
.contract-card:hover::before {
  opacity: 1;
}

.capability-band {
  padding: clamp(26px, 4vw, 42px);
}

.check-list,
.naics-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted-2);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--gold-2);
}

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

.contract-callout {
  background: linear-gradient(90deg, rgba(216, 182, 111, 0.075), rgba(255, 255, 255, 0.01));
}

.contract-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  align-items: center;
}

.contract-grid p {
  margin-bottom: 24px;
}

.contact-preview {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

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

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.42fr);
  gap: clamp(28px, 7vw, 86px);
  align-items: center;
  min-height: clamp(430px, 48vw, 590px);
  padding-block: clamp(84px, 11vw, 150px) clamp(58px, 7vw, 86px);
  border-bottom: 1px solid rgba(216, 182, 111, 0.13);
  overflow: hidden;
  isolation: isolate;
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.page-hero::before {
  top: -90px;
  right: calc(50% - 50vw);
  bottom: -140px;
  z-index: -2;
  width: min(78vw, 1080px);
  background:
    linear-gradient(90deg, rgba(216, 182, 111, 0.16) 1px, transparent 1px),
    linear-gradient(0deg, rgba(216, 182, 111, 0.12) 1px, transparent 1px),
    radial-gradient(ellipse at 56% 72%, rgba(216, 182, 111, 0.24), transparent 38%),
    linear-gradient(112deg, transparent 0 48%, rgba(236, 203, 130, 0.2) 48.2% 48.6%, transparent 49% 100%);
  background-size: 40px 40px, 40px 40px, auto, auto;
  opacity: 0.72;
  transform: perspective(700px) rotateX(62deg) translateY(122px) scale(1.32);
  transform-origin: center bottom;
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 82%, transparent 100%);
}

.page-hero::after {
  top: -20px;
  right: calc(50% - 50vw);
  bottom: -80px;
  z-index: -1;
  width: min(74vw, 1000px);
  border: 0;
  background:
    radial-gradient(circle at 12% 78%, rgba(236, 203, 130, 0.9) 0 1px, transparent 2px),
    radial-gradient(circle at 30% 70%, rgba(216, 182, 111, 0.88) 0 1px, transparent 2px),
    radial-gradient(circle at 50% 80%, rgba(236, 203, 130, 0.9) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 66%, rgba(216, 182, 111, 0.88) 0 1px, transparent 2px),
    radial-gradient(circle at 91% 77%, rgba(236, 203, 130, 0.84) 0 1px, transparent 2px),
    repeating-linear-gradient(104deg, transparent 0 24px, rgba(216, 182, 111, 0.2) 25px, transparent 26px),
    repeating-linear-gradient(12deg, transparent 0 32px, rgba(216, 182, 111, 0.12) 33px, transparent 34px),
    linear-gradient(154deg, transparent 22%, rgba(216, 182, 111, 0.34) 45%, transparent 64%);
  background-size: 32px 32px, 42px 42px, 36px 36px, 48px 48px, 40px 40px, auto, auto, auto;
  box-shadow: none;
  clip-path: none;
  opacity: 0.82;
  transform: perspective(700px) rotateX(62deg) translateY(106px) scale(1.28);
  transform-origin: center bottom;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 82%, transparent 100%);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.25rem, 4.6vw, 4.8rem);
}

.page-hero p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.page-hero > .eyebrow,
.page-hero > h1,
.page-hero > p {
  grid-column: 1;
  position: relative;
  z-index: 1;
}

.service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-list article {
  display: grid;
  grid-template-columns: 72px minmax(220px, 0.72fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 56px);
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.service-list h2 {
  margin-bottom: 0;
  font-size: clamp(1.25rem, 2vw, 2rem);
}

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

.capability-matrix h2,
.values-grid h2,
.contract-card h2,
.intake-layout h2 {
  font-size: clamp(1.22rem, 1.8vw, 1.75rem);
}

.two-column {
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
}

.copy-stack p:last-child {
  margin-bottom: 0;
}

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

.values-grid .btn {
  width: fit-content;
  margin-top: 18px;
}

.contracting-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
}

.contract-card .btn {
  margin-top: 26px;
}

.naics-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.naics-list li {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(216, 182, 111, 0.16);
}

.naics-list strong {
  color: var(--gold-2);
  font-size: 0.92rem;
}

.naics-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

.intake-layout {
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
}

.direct-contact {
  margin-top: 28px;
}

.direct-contact a,
.site-footer a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.intake-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(216, 182, 111, 0.055), transparent 36%),
    rgba(255, 255, 255, 0.018);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--muted-2);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  padding: 15px 14px;
  border: 1px solid rgba(216, 182, 111, 0.26);
  border-radius: 0;
  background: rgba(3, 3, 3, 0.88);
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 156px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(216, 182, 111, 0.12);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-note {
  margin: -4px 0 0;
  font-size: 0.86rem;
}

.form-status {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid transparent;
  color: var(--muted-2);
  font-size: 0.9rem;
}

.form-status:empty {
  display: none;
}

.form-status.is-success {
  border-color: rgba(216, 182, 111, 0.42);
  background: rgba(216, 182, 111, 0.09);
  color: var(--text);
}

.form-status.is-error {
  border-color: rgba(220, 94, 78, 0.55);
  background: rgba(220, 94, 78, 0.08);
  color: #f5d8d3;
}

.form-status a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 4px;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.site-footer {
  background:
    linear-gradient(90deg, rgba(216, 182, 111, 0.045), transparent 34%),
    #010101;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) repeat(auto-fit, minmax(130px, 0.7fr));
  gap: clamp(24px, 5vw, 70px);
  padding-block: 42px;
}

.footer-brand img {
  width: 142px;
  height: auto;
  max-height: none;
  object-fit: contain;
  margin-bottom: 14px;
}

.site-footer h2 {
  margin-bottom: 12px;
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer nav,
.site-footer .footer-grid > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-brand {
  max-width: 260px;
}

.footer-brand p {
  max-width: 24ch;
  line-height: 1.45;
}

.privacy-content {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.privacy-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(216, 182, 111, 0.18);
}

.privacy-list article {
  padding: 24px 0;
  border-bottom: 1px solid rgba(216, 182, 111, 0.18);
}

.privacy-list h3 {
  margin-bottom: 8px;
}

.privacy-list p {
  margin-bottom: 0;
  max-width: 68ch;
}

.copyright {
  margin-top: 12px !important;
}

@media (max-width: 1040px) {
  .hero-grid,
  .split-section,
  .split-section.reverse,
  .contract-grid,
  .contact-preview,
  .two-column,
  .privacy-content,
  .intake-layout,
  .contracting-layout,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .page-hero::after {
    justify-self: start;
    top: 8%;
    right: -28vw;
    bottom: -18%;
    width: min(112vw, 760px);
    opacity: 0.48;
  }

  .split-section.reverse .section-intro {
    order: 0;
  }

  .proof-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-preview .btn {
    width: fit-content;
  }
}

@media (max-width: 840px) {
  .nav {
    min-height: 82px;
  }

  .brand img {
    width: 142px;
    max-height: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(2, 2, 2, 0.98);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 10px;
    border-bottom: 1px solid rgba(216, 182, 111, 0.13);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .service-list article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 32px, var(--max));
  }

  .hero,
  .page-hero {
    padding-block: 54px 48px;
  }

  .page-hero {
    min-height: 390px;
  }

  .page-hero::before {
    right: -70vw;
    width: 150vw;
    opacity: 0.36;
  }

  .page-hero::after {
    right: -78vw;
    width: 154vw;
    opacity: 0.38;
  }

  h1 {
    font-size: clamp(2.2rem, 12vw, 3.25rem);
  }

  .hero-actions,
  .hero-actions .btn,
  .contact-preview .btn {
    width: 100%;
  }

  .proof-grid,
  .compact-grid,
  .process-grid,
  .capability-matrix,
  .values-grid,
  .naics-list,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid article,
  .proof-grid article:last-child {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(216, 182, 111, 0.16);
  }

  .snapshot-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .section {
    padding-block: 58px;
  }

  .compact-card,
  .step,
  .capability-band,
  .contract-card,
  .capability-matrix article,
  .values-grid article,
  .intake-form,
  .hero-panel {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Template-aligned home treatment */
.template-hero {
  min-height: 620px;
  padding: clamp(88px, 9vw, 140px) 0 clamp(78px, 8vw, 120px);
}

.template-hero::before {
  display: none;
}

.template-hero::after {
  height: 100%;
  background:
    linear-gradient(90deg, #020202 0%, rgba(2, 2, 2, 0.92) 38%, rgba(2, 2, 2, 0.22) 72%, #020202 100%),
    linear-gradient(to top, #020202 0%, transparent 34%);
}

.template-hero .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(36px, 6vw, 92px);
}

.template-hero .hero-copy {
  max-width: 690px;
}

.template-hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 5.1vw, 5.1rem);
}

.template-hero h1 span,
.template-hero h1 em {
  display: block;
  font-style: normal;
}

.template-hero h1 em {
  background: linear-gradient(135deg, #e7c984, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}

.template-hero .hero-lede {
  max-width: 590px;
}

.clean-graphic {
  position: relative;
  min-height: 390px;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(216, 182, 111, 0.05), transparent 58%),
    radial-gradient(circle at 64% 58%, rgba(216, 182, 111, 0.18), transparent 26%);
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 90%, transparent);
}

.clean-graphic::before,
.clean-graphic::after,
.clean-graphic span {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.clean-graphic::before {
  background:
    linear-gradient(90deg, rgba(216, 182, 111, 0.15) 1px, transparent 1px),
    linear-gradient(0deg, rgba(216, 182, 111, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.54;
  transform: perspective(760px) rotateX(62deg) translateY(160px) scale(1.3);
  transform-origin: center bottom;
}

.clean-graphic::after {
  background:
    radial-gradient(circle at 18% 77%, rgba(235, 204, 135, 0.9) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 69%, rgba(216, 182, 111, 0.88) 0 1px, transparent 2px),
    radial-gradient(circle at 62% 77%, rgba(235, 204, 135, 0.9) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 64%, rgba(216, 182, 111, 0.8) 0 1px, transparent 2px),
    linear-gradient(105deg, transparent 28%, rgba(216, 182, 111, 0.26) 46%, transparent 64%);
  background-size: 52px 52px, 68px 68px, 58px 58px, 72px 72px, auto;
  transform: perspective(760px) rotateX(62deg) translateY(150px) scale(1.26);
  transform-origin: center bottom;
}

.clean-graphic span {
  inset: 13% 8% 9%;
  border: 1px solid rgba(216, 182, 111, 0.18);
  background:
    linear-gradient(135deg, transparent 0 43%, rgba(216, 182, 111, 0.23) 48%, transparent 58%),
    radial-gradient(ellipse at 62% 62%, rgba(216, 182, 111, 0.22), transparent 34%);
  box-shadow: inset 0 0 70px rgba(216, 182, 111, 0.035);
  clip-path: polygon(7% 44%, 28% 24%, 52% 34%, 76% 20%, 96% 42%, 90% 82%, 54% 92%, 16% 78%);
}

.mockup-hero {
  min-height: 520px;
  padding: clamp(72px, 8vw, 108px) 0 70px;
}

.mockup-hero::before {
  display: none;
}

.mockup-hero .hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  align-items: center;
}

.mockup-graphic {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  isolation: isolate;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 94%, transparent);
}

.mockup-graphic::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  background:
    linear-gradient(90deg, #020202 0%, transparent 24%, transparent 80%, #020202 100%),
    linear-gradient(to top, #020202 0%, transparent 34%),
    linear-gradient(to bottom, #020202 0%, transparent 20%);
  pointer-events: none;
}

.wave-grid,
.wave-points,
.wave-lines,
.wave-streams {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.wave-grid {
  background:
    linear-gradient(90deg, rgba(216, 182, 111, 0.16) 1px, transparent 1px),
    linear-gradient(0deg, rgba(216, 182, 111, 0.12) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.7;
  transform: perspective(620px) rotateX(63deg) translateY(145px) scale(1.36);
  transform-origin: center bottom;
}

.wave-points {
  background:
    radial-gradient(circle at 10% 82%, rgba(236, 203, 130, 0.95) 0 1px, transparent 2px),
    radial-gradient(circle at 29% 72%, rgba(216, 182, 111, 0.94) 0 1px, transparent 2px),
    radial-gradient(circle at 48% 80%, rgba(236, 203, 130, 0.95) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 66%, rgba(216, 182, 111, 0.94) 0 1px, transparent 2px),
    radial-gradient(circle at 91% 78%, rgba(236, 203, 130, 0.9) 0 1px, transparent 2px);
  background-size: 32px 32px, 42px 42px, 36px 36px, 48px 48px, 40px 40px;
  transform: perspective(620px) rotateX(63deg) translateY(132px) scale(1.32);
  transform-origin: center bottom;
}

.wave-lines {
  background:
    repeating-linear-gradient(104deg, transparent 0 24px, rgba(216, 182, 111, 0.2) 25px, transparent 26px),
    repeating-linear-gradient(12deg, transparent 0 32px, rgba(216, 182, 111, 0.12) 33px, transparent 34px),
    linear-gradient(154deg, transparent 22%, rgba(216, 182, 111, 0.35) 45%, transparent 64%);
  opacity: 0.78;
  transform: perspective(620px) rotateX(63deg) translateY(130px) scale(1.3);
  transform-origin: center bottom;
}

.wave-streams {
  background:
    linear-gradient(90deg, transparent 0 11%, rgba(216, 182, 111, 0.16) 11.2% 11.5%, transparent 11.8% 100%),
    linear-gradient(90deg, transparent 0 31%, rgba(236, 203, 130, 0.22) 31.2% 31.5%, transparent 31.8% 100%),
    linear-gradient(90deg, transparent 0 53%, rgba(216, 182, 111, 0.18) 53.2% 53.5%, transparent 53.8% 100%),
    linear-gradient(90deg, transparent 0 76%, rgba(236, 203, 130, 0.2) 76.2% 76.5%, transparent 76.8% 100%);
  opacity: 0.8;
}

.wave-streams::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 31% 9%, rgba(236, 203, 130, 0.94) 0 2px, transparent 3px),
    radial-gradient(circle at 53% 26%, rgba(216, 182, 111, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 76% 16%, rgba(236, 203, 130, 0.9) 0 2px, transparent 3px);
  background-size: 96px 130px, 82px 118px, 104px 144px;
}

.cyber-emblem {
  position: absolute;
  right: 12%;
  top: 22%;
  z-index: 4;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(216, 182, 111, 0.32);
  background:
    linear-gradient(135deg, rgba(216, 182, 111, 0.12), transparent 46%),
    rgba(2, 2, 2, 0.34);
  box-shadow:
    0 0 38px rgba(216, 182, 111, 0.12),
    inset 0 0 34px rgba(216, 182, 111, 0.045);
  clip-path: polygon(50% 0, 100% 18%, 88% 78%, 50% 100%, 12% 78%, 0 18%);
}

.cyber-emblem::before,
.cyber-emblem::after,
.cyber-emblem span::before,
.cyber-emblem span::after {
  content: "";
  position: absolute;
  border-color: var(--gold-2);
}

.cyber-emblem::before {
  inset: 24px 33px 31px;
  border: 2px solid var(--gold-2);
  border-radius: 2px;
}

.cyber-emblem::after {
  left: 41px;
  top: 26px;
  width: 34px;
  height: 30px;
  border: 2px solid var(--gold-2);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.cyber-emblem span {
  position: absolute;
  inset: 0;
}

.cyber-emblem span::before {
  left: 55px;
  top: 57px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow:
    0 -30px 0 -1px rgba(216, 182, 111, 0.7),
    0 30px 0 -1px rgba(216, 182, 111, 0.55),
    -34px 0 0 -1px rgba(216, 182, 111, 0.55),
    34px 0 0 -1px rgba(216, 182, 111, 0.55);
}

.cyber-emblem span::after {
  left: 57px;
  top: 10px;
  width: 1px;
  height: 96px;
  background: linear-gradient(transparent, rgba(216, 182, 111, 0.75), transparent);
  box-shadow:
    -42px 47px 0 rgba(216, 182, 111, 0.35),
    42px 47px 0 rgba(216, 182, 111, 0.35);
  transform: rotate(90deg);
}

.audience-strip,
.contracting-strip {
  border-bottom: 1px solid rgba(216, 182, 111, 0.2);
  background: #030303;
}

.audience-grid {
  display: grid;
  grid-template-columns: 150px repeat(3, minmax(0, 1fr)) 220px;
  gap: 28px;
  align-items: center;
  padding-block: 38px;
}

.audience-mark img {
  width: 76px;
  opacity: 0.24;
  object-fit: contain;
  filter: saturate(0.8);
}

.audience-grid article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}

.audience-grid article h2,
.audience-grid article p {
  grid-column: 2;
}

.audience-grid article h2,
.mini-snapshot h2,
.naics-row h2 {
  margin-bottom: 5px;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.audience-grid article p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.mini-snapshot {
  padding: 20px;
  border: 1px solid var(--line-strong);
  background: rgba(216, 182, 111, 0.028);
}

.mini-snapshot .snapshot-list div {
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 12px;
}

.mini-snapshot .snapshot-list dd {
  white-space: nowrap;
  font-size: clamp(0.74rem, 0.72vw, 0.84rem);
}

.contracting-row {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  padding-block: 32px;
}

.contracting-row > div:first-child {
  border-right: 1px solid var(--line);
}

.naics-row ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.naics-row li {
  display: grid;
  gap: 4px;
}

.naics-row strong {
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
}

.naics-row span {
  color: var(--muted);
  font-size: 0.82rem;
}

.template-hero .btn::after,
.contracting-row .btn::after,
.compact-card a::after {
  content: ">";
  margin-left: 14px;
  font-size: 1rem;
  line-height: 1;
}

.proof-strip {
  background: #030303;
}

.proof-grid article {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 18px;
  align-items: start;
}

.proof-grid article p,
.proof-grid article h2 {
  grid-column: 2;
}

.line-icon {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 42px;
  color: var(--gold-2);
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

.shield::before {
  inset: 4px 8px;
  border: 2px solid currentColor;
  clip-path: polygon(50% 0, 100% 18%, 86% 78%, 50% 100%, 14% 78%, 0 18%);
}

.target::before {
  inset: 5px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.target::after {
  inset: 18px;
  border: 3px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 -19px 0 -1px #020202, 0 19px 0 -1px #020202, -19px 0 0 -1px #020202, 19px 0 0 -1px #020202;
}

.people::before {
  left: 4px;
  top: 8px;
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 18px 0 0 -2px #020202, 18px 0 0 0 currentColor;
}

.people::after {
  left: 1px;
  right: 1px;
  bottom: 7px;
  height: 16px;
  border: 2px solid currentColor;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom: 0;
}

.chart::before {
  left: 7px;
  right: 7px;
  bottom: 9px;
  height: 2px;
  background: currentColor;
}

.chart::after {
  left: 9px;
  bottom: 12px;
  width: 4px;
  height: 10px;
  background: currentColor;
  box-shadow: 9px -5px 0 currentColor, 18px -13px 0 currentColor;
}

.lock::before,
.compliance::before {
  left: 9px;
  right: 9px;
  bottom: 7px;
  height: 22px;
  border: 2px solid currentColor;
}

.lock::after,
.compliance::after {
  left: 14px;
  top: 3px;
  width: 14px;
  height: 18px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.cloud::before {
  left: 3px;
  right: 3px;
  bottom: 11px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 22px;
}

.cloud::after {
  left: 13px;
  top: 8px;
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: #020202;
}

.gear::before {
  inset: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 -8px 0 -2px currentColor, 0 8px 0 -2px currentColor, -8px 0 0 -2px currentColor, 8px 0 0 -2px currentColor;
}

.gear::after {
  inset: 17px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.building::before,
.city::before {
  left: 8px;
  right: 8px;
  bottom: 8px;
  height: 25px;
  border: 2px solid currentColor;
}

.building::after {
  left: 5px;
  right: 5px;
  top: 4px;
  height: 11px;
  border: 2px solid currentColor;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.city::after {
  left: 14px;
  top: 10px;
  width: 4px;
  height: 4px;
  background: currentColor;
  box-shadow: 9px 0 0 currentColor, 0 9px 0 currentColor, 9px 9px 0 currentColor;
}

.search::before {
  left: 7px;
  top: 6px;
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.search::after {
  right: 7px;
  bottom: 7px;
  width: 14px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

.clipboard::before {
  inset: 6px 9px 4px;
  border: 2px solid currentColor;
}

.clipboard::after {
  left: 15px;
  top: 2px;
  width: 12px;
  height: 8px;
  border: 2px solid currentColor;
  background: #020202;
}

.capability-showcase {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  gap: 38px;
  align-items: stretch;
}

.section-intro.wide {
  max-width: 780px;
}

.clean-capabilities {
  display: grid;
  gap: 34px;
}

.clean-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.clean-card-grid article {
  min-width: 0;
  padding: 30px 26px 34px;
  border-right: 1px solid rgba(216, 182, 111, 0.16);
}

.clean-card-grid article:last-child {
  border-right: 0;
}

.clean-card-grid p {
  margin-bottom: 0;
}

.clean-readiness,
.clean-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.clean-readiness p,
.clean-contact p {
  margin-bottom: 24px;
}

.clean-snapshot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-block: 1px solid var(--line);
}

.clean-snapshot div {
  padding: 26px;
  border-right: 1px solid rgba(216, 182, 111, 0.16);
}

.clean-snapshot div:last-child {
  border-right: 0;
}

.clean-snapshot dt {
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clean-snapshot dd {
  margin: 5px 0 0;
  color: var(--text);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.clean-process {
  display: grid;
  gap: 18px;
  text-align: center;
}

.clean-process h2 {
  margin-inline: auto;
}

.clean-process > p:not(.eyebrow) {
  max-width: 620px;
  margin-inline: auto;
}

.clean-process ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 1000px;
  margin: 18px auto 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.clean-process li {
  padding: 22px 18px 0;
  border-right: 1px solid rgba(216, 182, 111, 0.16);
  color: var(--muted);
}

.clean-process li:last-child {
  border-right: 0;
}

.clean-process strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
}

.clean-form {
  box-shadow: none;
}

.capability-showcase .compact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.capability-showcase .compact-card {
  display: grid;
  align-content: start;
  min-height: 302px;
  padding: 32px 28px;
}

.compact-card .line-icon {
  margin-bottom: 30px;
}

.compact-card a {
  align-self: end;
  margin-top: 24px;
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.readiness-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: stretch;
}

.readiness-copy {
  align-self: center;
}

.readiness-copy p {
  margin-bottom: 24px;
}

.readiness-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(216, 182, 111, 0.07), transparent 34%),
    rgba(255, 255, 255, 0.018);
  box-shadow: var(--shadow);
}

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

.serve-grid article {
  padding: 26px;
  border-right: 1px solid rgba(216, 182, 111, 0.14);
}

.serve-grid article:last-child {
  border-right: 0;
}

.serve-grid h3 {
  margin-top: 18px;
}

.serve-grid p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.contract-snapshot {
  padding: 26px;
  border-left: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.22);
}

.contract-snapshot dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.contract-snapshot div {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(216, 182, 111, 0.16);
}

.contract-snapshot div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contract-snapshot dt {
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contract-snapshot dd {
  margin: 4px 0 0;
  color: var(--text);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.delivery-band {
  border-block: 1px solid rgba(216, 182, 111, 0.18);
  background: #030303;
}

.delivery-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  padding-block: 34px;
}

.delivery-grid h2 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2vw, 2.2rem);
}

.delivery-grid ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery-grid li {
  min-width: 0;
  padding: 0 22px;
  border-left: 1px solid rgba(216, 182, 111, 0.16);
}

.delivery-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-2);
  font-size: 0.9rem;
}

.delivery-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

.process-heading h2 {
  display: none;
}

.process-grid .step {
  display: grid;
  grid-template-columns: 34px 54px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border: 0;
  border-right: 1px solid rgba(216, 182, 111, 0.15);
  background: transparent;
  padding: 0 22px 0 0;
}

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

.process-grid .step strong {
  margin: 11px 0 0;
  font-size: 1rem;
}

.process-grid .step h3,
.process-grid .step p {
  grid-column: 3;
}

.process-grid .step .line-icon {
  grid-row: span 2;
  width: 50px;
  height: 50px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.start-section {
  padding-block: 0;
  background:
    linear-gradient(90deg, rgba(216, 182, 111, 0.08), transparent 35%),
    #040404;
}

.start-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  padding-block: 28px;
}

.start-grid > div:first-child {
  min-height: 270px;
  padding: 22px 0;
}

.start-grid h2 {
  font-family: Georgia, "Times New Roman", serif;
  max-width: 11ch;
  font-size: clamp(1.75rem, 2.45vw, 2.55rem);
  font-weight: 500;
  line-height: 1.05;
  text-transform: uppercase;
}

.start-grid .intake-form {
  border-color: var(--line-strong);
  background:
    linear-gradient(135deg, rgba(216, 182, 111, 0.06), transparent 34%),
    rgba(0, 0, 0, 0.32);
}

.form-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 8px;
  color: rgba(210, 197, 173, 0.62);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-steps span::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 50%;
  background: rgba(245, 241, 232, 0.28);
  vertical-align: -4px;
}

.form-steps .active {
  color: var(--gold-2);
}

.form-steps .active::before {
  background: var(--gold-2);
}

/* Polished hero treatment using the uploaded data-wave artwork */
.mockup-hero {
  min-height: 610px;
  padding: clamp(92px, 10vw, 148px) 0 clamp(84px, 8vw, 116px);
  background:
    linear-gradient(90deg, rgba(2, 2, 2, 0.98) 0%, rgba(2, 2, 2, 0.82) 34%, rgba(2, 2, 2, 0.25) 66%, rgba(2, 2, 2, 0.94) 100%),
    linear-gradient(to bottom, rgba(2, 2, 2, 0.78) 0%, transparent 35%, rgba(2, 2, 2, 0.98) 100%),
    url("hero-bg.png") center right / cover no-repeat;
}

.mockup-hero .hero-grid {
  grid-template-columns: minmax(0, 720px);
}

.mockup-hero .hero-copy {
  max-width: 720px;
}

.mockup-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 500;
  line-height: 0.95;
  text-transform: none;
}

.mockup-hero h1 em {
  background: linear-gradient(135deg, #e6c97b, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mockup-hero .hero-lede {
  max-width: 610px;
  color: #f0ebe0;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mockup-hero .hero-graphic {
  display: none;
}

.mockup-hero .eyebrow::after {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin-top: 18px;
  background: var(--gold-2);
}

@media (max-width: 760px) {
  .mockup-hero {
    min-height: auto;
    background-position: 58% center;
  }
}

/* Final quality pass: align the publish files with the stronger live-site direction */
.site-header {
  background: rgba(0, 0, 0, 0.86);
  border-bottom-color: rgba(216, 182, 111, 0.12);
}

.nav {
  min-height: 82px;
}

.brand img {
  width: clamp(156px, 15vw, 190px);
}

.nav-links {
  gap: clamp(20px, 2.2vw, 34px);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.nav-cta {
  min-height: 42px;
  padding-inline: 18px;
}

.btn {
  min-height: 44px;
  border-radius: 0;
  padding: 12px 22px;
  font-size: 0.72rem;
}

.mockup-hero {
  min-height: 640px;
  border-bottom: 1px solid rgba(216, 182, 111, 0.12);
  background:
    linear-gradient(90deg, #020202 0%, rgba(2, 2, 2, 0.9) 31%, rgba(2, 2, 2, 0.32) 67%, rgba(2, 2, 2, 0.92) 100%),
    linear-gradient(to bottom, rgba(2, 2, 2, 0.78) 0%, rgba(2, 2, 2, 0.08) 42%, #020202 100%),
    url("hero-bg.png") center right / cover no-repeat;
}

.mockup-hero .hero-grid {
  align-items: center;
  justify-content: center;
}

.mockup-hero .hero-copy {
  padding-top: 18px;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.mockup-hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  color: #f6f2ea;
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

.mockup-hero .hero-lede {
  margin-bottom: 34px;
}

.hero-actions {
  gap: 22px;
}

.proof-strip {
  background: #020202;
}

.proof-grid {
  padding-block: 18px;
}

.proof-grid article {
  border-color: rgba(216, 182, 111, 0.13);
}

.capability-showcase {
  margin-top: 0;
  padding-block: clamp(86px, 8vw, 126px);
}

.compact-card,
.step,
.contract-card,
.intake-form,
.values-grid article,
.capability-matrix article {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(0, 0, 0, 0.22);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.page-hero {
  grid-template-columns: minmax(0, 780px);
  padding-block: clamp(92px, 10vw, 138px) clamp(58px, 6vw, 84px);
  background:
    linear-gradient(90deg, rgba(2, 2, 2, 0.98), rgba(2, 2, 2, 0.74), rgba(2, 2, 2, 0.96)),
    url("hero-bg.png") center right / cover no-repeat;
}

.page-hero::before {
  display: none;
}

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

.page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: none;
}

.page-hero p:last-child {
  color: #ded8ce;
}

.site-footer {
  background: #010101;
}

@media (max-width: 840px) {
  .nav-links {
    gap: 0;
  }
}

@media (max-width: 640px) {
  .mockup-hero {
    background-position: 62% center;
  }

  .mockup-hero .hero-copy {
    text-align: left;
  }

  .mockup-hero h1,
  .mockup-hero .hero-lede {
    margin-inline: 0;
  }

  .mockup-hero .hero-actions {
    justify-content: flex-start;
  }

  .start-grid h2 {
    max-width: 100%;
  }
}

@media (max-width: 1120px) {
  .capability-showcase,
  .readiness-section,
  .delivery-grid,
  .start-grid,
  .clean-readiness,
  .clean-contact {
    grid-template-columns: 1fr;
  }

  .capability-showcase .compact-grid,
  .clean-card-grid,
  .clean-snapshot,
  .clean-process ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .readiness-panel {
    grid-template-columns: 1fr;
  }

  .contract-snapshot {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

@media (max-width: 760px) {
  .template-hero::before {
    width: 100%;
    opacity: 0.35;
  }

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

  .hero-graphic,
  .clean-graphic {
    min-height: 220px;
    margin-top: -24px;
  }

  .proof-grid article,
  .process-grid .step {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .proof-grid article h2,
  .proof-grid article p,
  .process-grid .step h3,
  .process-grid .step p {
    grid-column: 2;
  }

  .capability-showcase .compact-grid,
  .serve-grid,
  .delivery-grid ol,
  .form-steps,
  .clean-card-grid,
  .clean-snapshot,
  .clean-process ol {
    grid-template-columns: 1fr;
  }

  .clean-card-grid article,
  .clean-card-grid article:last-child,
  .clean-snapshot div,
  .clean-snapshot div:last-child,
  .clean-process li,
  .clean-process li:last-child {
    border-right: 0;
  }

  .clean-card-grid article,
  .clean-snapshot div,
  .clean-process li {
    border-bottom: 1px solid rgba(216, 182, 111, 0.16);
  }

  .serve-grid article,
  .serve-grid article:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(216, 182, 111, 0.14);
  }

  .delivery-grid li {
    padding: 0 0 18px;
    border-left: 0;
    border-bottom: 1px solid rgba(216, 182, 111, 0.14);
  }

  .process-grid .step {
    border-right: 0;
    border-bottom: 1px solid rgba(216, 182, 111, 0.15);
    padding: 0 0 22px;
  }
}

/* Clarity correction: remove weak generic graphics and keep pages topic-led */
.page-hero::before,
.page-hero::after,
.line-icon,
.audience-mark img {
  display: none !important;
}

.page-hero {
  grid-template-columns: minmax(0, 860px) !important;
  padding-block: clamp(84px, 9vw, 126px) clamp(50px, 6vw, 76px) !important;
  background:
    radial-gradient(circle at 78% 6%, rgba(216, 182, 111, 0.07), transparent 28rem),
    #020202 !important;
}

.page-hero h1 {
  max-width: 860px;
}

.page-hero p:last-child {
  max-width: 700px;
}

.proof-grid article,
.audience-grid article,
.process-grid .step {
  display: block !important;
  grid-template-columns: 1fr !important;
}

.proof-grid article h2,
.proof-grid article p,
.audience-grid article h2,
.audience-grid article p,
.process-grid .step h3,
.process-grid .step p {
  grid-column: auto !important;
}

.proof-grid article {
  padding-block: 24px;
}

.compact-card,
.capability-matrix article,
.contract-card,
.values-grid article {
  background: rgba(255, 255, 255, 0.018) !important;
  box-shadow: none !important;
}

.compact-card::before,
.capability-matrix article::before,
.contract-card::before,
.values-grid article::before {
  display: none !important;
}

.capability-showcase .compact-card {
  min-height: 0;
  padding: 28px 24px;
}

.compact-card h3::before {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.compact-grid .compact-card:nth-child(1) h3::before { content: "01"; }
.compact-grid .compact-card:nth-child(2) h3::before { content: "02"; }
.compact-grid .compact-card:nth-child(3) h3::before { content: "03"; }
.compact-grid .compact-card:nth-child(4) h3::before { content: "04"; }

.audience-grid {
  grid-template-columns: 190px repeat(3, minmax(0, 1fr)) 220px;
}

.audience-grid article {
  border-left: 1px solid rgba(216, 182, 111, 0.14);
  padding-left: 22px;
}

.process-grid .step {
  border-right: 1px solid rgba(216, 182, 111, 0.15);
  padding-right: 22px;
}

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

.mockup-hero h1 {
  max-width: 880px;
  margin-inline: auto;
  font-size: clamp(2.35rem, 4.65vw, 4.65rem);
  line-height: 1.18;
  letter-spacing: 0;
  margin-bottom: 22px;
  padding-bottom: 0.08em;
  text-transform: none;
  overflow: visible;
}

.mockup-hero h1 span,
.mockup-hero h1 em {
  display: block;
  padding-bottom: 0.04em;
  overflow: visible;
}

.mockup-hero h1 em {
  background: linear-gradient(135deg, #e6c97b, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
  padding-bottom: 0.12em;
}

.mockup-hero .hero-lede {
  max-width: 560px;
  margin-inline: auto;
  color: #ded8ce;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.mockup-hero .hero-actions {
  justify-content: center;
}

.mockup-hero .eyebrow {
  display: none;
}

.nav-links a,
.btn {
  white-space: nowrap;
}

.proof-grid article,
.compact-card,
.audience-grid article,
.contracting-row li,
.process-grid .step,
.mini-snapshot {
  min-width: 0;
}

.compact-card p,
.audience-grid p,
.proof-grid p,
.process-grid p {
  max-width: 38ch;
}

.form-steps {
  display: none;
}

@media (max-width: 1040px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid article {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 760px) {
  .process-grid .step {
    border-right: 0;
  }
}

/* Gold webbing refresh: large page-level visual field for every subpage hero */
.page-hero {
  grid-template-columns: minmax(0, 860px) minmax(220px, 1fr) !important;
  min-height: clamp(430px, 48vw, 590px) !important;
  padding-block: clamp(88px, 10vw, 146px) clamp(60px, 7vw, 88px) !important;
  background:
    linear-gradient(90deg, #020202 0%, rgba(2, 2, 2, 0.96) 38%, rgba(2, 2, 2, 0.52) 72%, #020202 100%),
    radial-gradient(circle at 76% 18%, rgba(216, 182, 111, 0.14), transparent 30rem),
    #020202 !important;
}

.page-hero::before,
.page-hero::after {
  display: block !important;
}

.page-hero::before {
  top: -130px !important;
  right: calc(50% - 50vw) !important;
  bottom: -90px !important;
  left: auto !important;
  z-index: -2 !important;
  width: min(88vw, 1220px) !important;
  background:
    linear-gradient(90deg, rgba(216, 182, 111, 0.16) 1px, transparent 1px),
    linear-gradient(0deg, rgba(216, 182, 111, 0.12) 1px, transparent 1px),
    radial-gradient(ellipse at 56% 72%, rgba(216, 182, 111, 0.24), transparent 38%),
    linear-gradient(112deg, transparent 0 48%, rgba(236, 203, 130, 0.2) 48.2% 48.6%, transparent 49% 100%) !important;
  background-size: 40px 40px, 40px 40px, auto, auto !important;
  opacity: 0.84 !important;
  transform: perspective(760px) rotateX(60deg) translateY(54px) scale(1.4) !important;
  transform-origin: center bottom !important;
  mask-image: linear-gradient(90deg, transparent 0%, transparent 22%, #000 40%, #000 84%, transparent 100%) !important;
}

.page-hero::after {
  top: -70px !important;
  right: calc(50% - 50vw) !important;
  bottom: -40px !important;
  left: auto !important;
  z-index: -1 !important;
  width: min(84vw, 1160px) !important;
  border: 0 !important;
  background:
    radial-gradient(circle at 12% 78%, rgba(236, 203, 130, 0.9) 0 1px, transparent 2px),
    radial-gradient(circle at 30% 70%, rgba(216, 182, 111, 0.88) 0 1px, transparent 2px),
    radial-gradient(circle at 50% 80%, rgba(236, 203, 130, 0.9) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 66%, rgba(216, 182, 111, 0.88) 0 1px, transparent 2px),
    radial-gradient(circle at 91% 77%, rgba(236, 203, 130, 0.84) 0 1px, transparent 2px),
    repeating-linear-gradient(104deg, transparent 0 24px, rgba(216, 182, 111, 0.2) 25px, transparent 26px),
    repeating-linear-gradient(12deg, transparent 0 32px, rgba(216, 182, 111, 0.12) 33px, transparent 34px),
    linear-gradient(154deg, transparent 22%, rgba(216, 182, 111, 0.34) 45%, transparent 64%) !important;
  background-size: 32px 32px, 42px 42px, 36px 36px, 48px 48px, 40px 40px, auto, auto, auto !important;
  box-shadow: none !important;
  clip-path: none !important;
  opacity: 0.9 !important;
  transform: perspective(760px) rotateX(60deg) translateY(42px) scale(1.36) !important;
  transform-origin: center bottom !important;
  mask-image: linear-gradient(90deg, transparent 0%, transparent 24%, #000 42%, #000 84%, transparent 100%) !important;
}

@media (max-width: 1040px) {
  .page-hero {
    grid-template-columns: 1fr !important;
  }

  .page-hero::before {
    right: -30vw !important;
    width: min(118vw, 820px) !important;
    opacity: 0.5 !important;
  }

  .page-hero::after {
    right: -34vw !important;
    width: min(120vw, 820px) !important;
    opacity: 0.52 !important;
  }
}

@media (max-width: 640px) {
  .page-hero {
    min-height: 390px !important;
  }

  .page-hero::before {
    right: -74vw !important;
    width: 150vw !important;
    opacity: 0.34 !important;
  }

  .page-hero::after {
    right: -82vw !important;
    width: 154vw !important;
    opacity: 0.36 !important;
  }
}

/* Clean unified hero background */
.hero,
.page-hero {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background:
    linear-gradient(90deg, #020202 0%, rgba(2, 2, 2, 0.94) 42%, rgba(2, 2, 2, 0.72) 78%, #020202 100%),
    radial-gradient(circle at 18% 18%, rgba(24, 58, 112, 0.22), transparent 28rem),
    radial-gradient(circle at 86% 82%, rgba(118, 28, 33, 0.16), transparent 24rem),
    #020202 !important;
}

.hero::before,
.hero::after,
.page-hero::before,
.page-hero::after {
  display: none !important;
}

.mockup-hero .hero-grid {
  grid-template-columns: minmax(0, 900px) !important;
  justify-content: center !important;
}

.mockup-hero .hero-copy {
  max-width: 900px !important;
  margin-inline: auto !important;
  text-align: center !important;
}

.mockup-hero .hero-graphic {
  display: none !important;
}

.mockup-hero .hero-actions {
  justify-content: center !important;
}

.audience-grid {
  grid-template-columns: 210px repeat(3, minmax(0, 1fr)) 280px !important;
  align-items: start !important;
  gap: clamp(20px, 2vw, 28px) !important;
  padding-block: 42px !important;
}

.audience-mark,
.audience-grid article,
.mini-snapshot {
  min-height: 150px;
}

.audience-mark,
.audience-grid article {
  display: grid !important;
  align-content: start !important;
}

.audience-grid article {
  padding: 6px 24px 0 !important;
}

.audience-grid article h2 {
  min-height: 2.45em;
  margin-bottom: 10px !important;
}

.audience-grid article p {
  max-width: 30ch !important;
  line-height: 1.55;
}

.audience-grid article p:first-of-type {
  margin-bottom: 8px;
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mini-snapshot {
  display: grid;
  align-content: start;
  padding: 24px !important;
}

.page-hero {
  grid-template-columns: minmax(0, 860px) !important;
}

.page-hero > .eyebrow,
.page-hero > h1,
.page-hero > p,
.mockup-hero .hero-copy {
  position: relative !important;
  z-index: 1 !important;
}

.page-hero h1,
.page-hero p,
.mockup-hero h1,
.mockup-hero .hero-lede {
  text-shadow: 0 14px 46px rgba(0, 0, 0, 0.88), 0 0 28px rgba(0, 0, 0, 0.64) !important;
}

/* Final audience strip polish */
.audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  align-items: stretch !important;
  padding-block: 42px !important;
}

.audience-mark {
  grid-column: 1 / -1;
  min-height: 0 !important;
  padding-bottom: 22px;
}

.audience-mark .eyebrow {
  margin-bottom: 0;
}

.audience-grid article,
.mini-snapshot {
  min-height: 178px !important;
  padding: 24px 26px !important;
}

.audience-grid article {
  border-left: 1px solid rgba(216, 182, 111, 0.16);
}

.audience-grid article:nth-of-type(1) {
  border-left: 0;
  padding-left: 0 !important;
}

.audience-grid article h2 {
  min-height: 2.5em;
  margin-bottom: 10px !important;
}

.audience-grid article p {
  max-width: 32ch !important;
}

.mini-snapshot {
  align-content: start;
  margin-left: 24px;
}

@media (max-width: 1040px) {
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
  }

  .audience-grid article:nth-of-type(1),
  .audience-grid article {
    border-left: 0;
    padding-left: 0 !important;
  }

  .mini-snapshot {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .audience-grid {
    grid-template-columns: 1fr !important;
  }
}
