:root {
  color-scheme: light;
  --ink: #14130f;
  --ink-2: #252117;
  --muted: #68635a;
  --muted-2: #8f8676;
  --paper: #f4efe2;
  --paper-2: #fffdf7;
  --white: #ffffff;
  --field: #070a09;
  --field-2: #0c1110;
  --panel: #121714;
  --panel-2: #1a201b;
  --line: rgba(146, 111, 40, 0.18);
  --line-strong: rgba(168, 121, 36, 0.34);
  --gold: #d9b761;
  --gold-2: #fff0ba;
  --gold-3: #9c7227;
  --green: #0f8f5f;
  --green-soft: #8fe6bf;
  --shadow: 0 22px 64px rgba(15, 19, 17, 0.12);
  --shadow-dark: 0 28px 88px rgba(0, 0, 0, 0.42);
  --radius: 18px;
  --max: 1220px;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--field);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 9% 12%, rgba(217, 183, 97, 0.1), transparent 28rem),
    radial-gradient(circle at 86% 28%, rgba(15, 143, 95, 0.08), transparent 30rem),
    linear-gradient(180deg, #f7f1e4 0%, #eee4d2 100%);
  color: var(--ink);
  font-family: "Geist", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::selection {
  color: #17130a;
  background: var(--gold);
}

img,
canvas,
svg {
  display: block;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 90;
  padding: 10px 14px;
  color: #15100a;
  background: var(--gold);
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 80;
  width: var(--scroll, 0%);
  height: 2px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-3));
  box-shadow: 0 0 24px rgba(217, 183, 97, 0.48);
  pointer-events: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 10px clamp(20px, 4vw, 64px);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(6, 9, 8, 0.78);
  border-bottom: 1px solid rgba(217, 183, 97, 0.13);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.025), 0 18px 64px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px) saturate(1.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  box-shadow:
    0 14px 32px rgba(217, 183, 97, 0.16),
    0 0 0 1px rgba(255, 240, 186, 0.12);
}

.brand-mark svg {
  width: 42px;
  height: 42px;
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1.05;
}

.brand-copy strong {
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 720;
  letter-spacing: -0.01em;
}

.brand-copy span {
  color: rgba(255, 255, 255, 0.55);
  font: 650 10px/1.2 "Geist Mono", ui-monospace, monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 650;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-links a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transform: scaleX(0.66);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  color: #15100a;
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 55%, #bd8428);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(217, 183, 97, 0.14);
  font-weight: 760;
}

.nav-links .nav-cta::after {
  display: none;
}

.hero {
  position: relative;
  min-height: min(850px, 100svh);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  background:
    linear-gradient(110deg, rgba(5, 8, 7, 0.985), rgba(7, 11, 9, 0.89) 48%, rgba(9, 13, 11, 0.62)),
    url("assets/signal-field.png") center / cover,
    #070a09;
}

.hero::before {
  position: absolute;
  inset: 82px clamp(18px, 4vw, 56px) 42px;
  z-index: 2;
  content: "";
  border: 1px solid rgba(217, 183, 97, 0.15);
  border-bottom-color: rgba(217, 183, 97, 0.22);
  border-radius: 28px;
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    radial-gradient(circle at 69% 26%, rgba(217, 183, 97, 0.16), transparent 22rem),
    radial-gradient(circle at 19% 19%, rgba(15, 143, 95, 0.12), transparent 21rem),
    linear-gradient(180deg, transparent 46%, rgba(7, 10, 9, 0.96) 100%);
  pointer-events: none;
}

#signal-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.42;
}

.hero-glow {
  position: absolute;
  right: 8vw;
  bottom: 8vh;
  z-index: 1;
  width: 38vw;
  height: 38vw;
  background: radial-gradient(circle, rgba(217, 183, 97, 0.14), transparent 62%);
  filter: blur(12px);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.52fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  width: min(var(--max), calc(100% - 64px));
  min-height: inherit;
  margin: 0 auto;
  padding: 118px 0 88px;
}

.eyebrow,
.section-kicker,
.panel-label {
  margin: 0 0 16px;
  color: var(--gold);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(40px, 4.55vw, 72px);
  font-weight: 660;
  letter-spacing: -0.058em;
  line-height: 0.96;
  text-wrap: balance;
}

.hero-copy {
  max-width: 670px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.74;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border-radius: 999px;
  font: 760 13px/1 "Geist", ui-sans-serif, system-ui, sans-serif;
  text-decoration: none;
  transform: translate(var(--tx, 0), var(--ty, 0));
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translate(var(--tx, 0), calc(var(--ty, 0) - 1px));
}

.button-primary {
  color: #15100a;
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 54%, #bd8428);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 16px 40px rgba(217, 183, 97, 0.2);
}

.button-secondary {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(217, 183, 97, 0.24);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-trust span,
.contact-tags span,
.report-points span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.052);
  border: 1px solid rgba(217, 183, 97, 0.17);
  border-radius: 999px;
  font: 730 9.5px/1 "Geist Mono", ui-monospace, monospace;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-brief {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 2.6vw, 32px);
  background:
    radial-gradient(circle at 88% 6%, rgba(217, 183, 97, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.044));
  border: 1px solid rgba(217, 183, 97, 0.22);
  border-radius: 24px;
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(22px) saturate(1.08);
}

.hero-brief::after {
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), var(--green-soft), transparent);
  opacity: 0.62;
}

.brief-topline {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 9px;
  min-height: 30px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(217, 183, 97, 0.16);
  border-radius: 999px;
  font: 730 9.5px/1.15 "Geist Mono", ui-monospace, monospace;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--green-soft);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(142, 231, 191, 0.12);
}

.hero-brief h2 {
  margin: 26px 0 22px;
  color: #fff4cf;
  font-size: clamp(23px, 2.1vw, 31px);
  font-weight: 650;
  letter-spacing: -0.048em;
  line-height: 1.04;
}

.brief-list {
  display: grid;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  background: rgba(217, 183, 97, 0.15);
  border: 1px solid rgba(217, 183, 97, 0.15);
  border-radius: 17px;
}

.brief-list div {
  padding: 17px 19px;
  background: rgba(9, 13, 11, 0.5);
}

.brief-list dt {
  margin-bottom: 8px;
  color: var(--gold);
  font: 760 9.5px/1 "Geist Mono", ui-monospace, monospace;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.brief-list dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: 13.5px;
  line-height: 1.52;
}

.brief-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.brief-footer span {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.57);
  background: rgba(255, 255, 255, 0.052);
  border: 1px solid rgba(217, 183, 97, 0.12);
  border-radius: 999px;
  font: 650 9.5px/1 "Geist Mono", ui-monospace, monospace;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.signal-bar {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(var(--max), calc(100% - 64px));
  margin: -42px auto 0;
  overflow: hidden;
  background: rgba(146, 111, 40, 0.18);
  border: 1px solid rgba(217, 183, 97, 0.22);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.signal-bar div {
  min-height: 134px;
  padding: 23px 26px;
  background: rgba(255, 253, 247, 0.96);
  border-right: 1px solid rgba(146, 111, 40, 0.15);
}

.signal-bar div:last-child {
  border-right: 0;
}

.signal-bar span,
.card-index,
.service-card-head span,
.process-rail span,
.standards-grid span,
.finding-row span,
.finding-grid span,
.intake-template span,
.company-strip span {
  color: var(--gold-3);
  font: 760 9.5px/1 "Geist Mono", ui-monospace, monospace;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.signal-bar strong {
  display: block;
  margin-top: 17px;
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 660;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.signal-bar p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.section,
.process-section,
.report-section,
.standards-section {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
}

.section {
  padding: clamp(74px, 8vw, 112px) 0;
}

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

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.72fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: end;
}

.section-kicker {
  color: var(--gold-3);
}

.section-heading h2,
.scope-copy h2,
.process-heading h2,
.report-copy h2,
.contact-copy h2,
.standards-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.45vw, 48px);
  font-weight: 660;
  letter-spacing: -0.055em;
  line-height: 1.03;
  text-wrap: balance;
}

.section-heading p,
.scope-copy p,
.report-copy p,
.contact-copy p,
.standards-section .section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.68;
}

.outcome-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr 0.94fr;
  gap: 14px;
}

.outcome-card {
  position: relative;
  min-height: 242px;
  overflow: hidden;
  padding: clamp(23px, 2.8vw, 30px);
  background:
    radial-gradient(circle at 94% 10%, rgba(217, 183, 97, 0.13), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fbf8ef 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(19, 24, 21, 0.055);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.outcome-card:hover,
.service-card:hover,
.process-rail article:hover,
.standards-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 121, 36, 0.34);
  box-shadow: 0 26px 70px rgba(19, 24, 21, 0.1);
}

.outcome-card.featured-card {
  grid-row: span 2;
  min-height: 500px;
  color: #fff;
  background:
    radial-gradient(circle at 74% 12%, rgba(217, 183, 97, 0.18), transparent 34%),
    linear-gradient(180deg, #171c18 0%, #0b0e0d 100%);
  border-color: rgba(217, 183, 97, 0.23);
  box-shadow: var(--shadow-dark);
}

.featured-card .card-index,
.featured-card h3,
.featured-card li::marker {
  color: var(--gold);
}

.outcome-card h3 {
  margin: 30px 0 13px;
  font-size: clamp(21px, 1.8vw, 27px);
  font-weight: 660;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.featured-card h3 {
  margin-top: 68px;
  max-width: 360px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.02;
}

.outcome-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.62;
}

.featured-card p,
.featured-card li {
  color: rgba(255, 255, 255, 0.75);
}

.featured-card ul {
  display: grid;
  gap: 11px;
  margin: 30px 0 0;
  padding-left: 18px;
}

.featured-card li {
  font-size: 14.5px;
  line-height: 1.46;
}

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

.service-card {
  position: relative;
  min-height: 332px;
  padding: clamp(23px, 2.8vw, 32px);
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(217, 183, 97, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fbf8ef 100%);
  border: 1px solid var(--line);
  border-radius: 21px;
  box-shadow: 0 18px 56px rgba(19, 24, 21, 0.065);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card.accent-card {
  background:
    radial-gradient(circle at 88% 10%, rgba(15, 143, 95, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fbf8ef 100%);
}

.service-card-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.service-card-head strong {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  padding: 0 11px;
  color: #15100a;
  background: rgba(217, 183, 97, 0.45);
  border: 1px solid rgba(168, 121, 36, 0.18);
  border-radius: 999px;
  font: 760 9.5px/1 "Geist Mono", ui-monospace, monospace;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 520px;
  margin: 48px 0 15px;
  font-size: clamp(24px, 2.25vw, 33px);
  font-weight: 660;
  letter-spacing: -0.052em;
  line-height: 1.03;
}

.service-card p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.62;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 26px;
  overflow: hidden;
  background: rgba(168, 121, 36, 0.15);
  border: 1px solid rgba(168, 121, 36, 0.13);
  border-radius: 16px;
}

.service-detail-grid div {
  min-height: 96px;
  padding: 17px;
  background: rgba(244, 239, 226, 0.68);
}

.service-detail-grid span {
  color: var(--gold-3);
  font: 760 9.5px/1 "Geist Mono", ui-monospace, monospace;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.service-detail-grid strong {
  display: block;
  margin-top: 13px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 660;
  line-height: 1.42;
}

.mid-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto clamp(46px, 6vw, 78px);
  padding: clamp(26px, 3.4vw, 40px);
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(217, 183, 97, 0.16), transparent 34%),
    linear-gradient(135deg, #151a16, #080b0a);
  border: 1px solid rgba(217, 183, 97, 0.22);
  border-radius: 24px;
  box-shadow: var(--shadow-dark);
}

.mid-cta .section-kicker {
  color: var(--gold);
}

.mid-cta h2 {
  max-width: 760px;
  margin: 0;
  color: #fff4cf;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 660;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.scope-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: start;
  padding-bottom: clamp(72px, 9vw, 118px);
}

.scope-copy h2 {
  margin-bottom: 18px;
}

.scope-console {
  position: relative;
  min-height: 408px;
  overflow: hidden;
  padding: 22px;
  color: #fff;
  background:
    radial-gradient(circle at var(--lx, 72%) var(--ly, 30%), rgba(217, 183, 97, 0.16), transparent 34%),
    linear-gradient(180deg, #151a17 0%, #0d100f 100%);
  border: 1px solid rgba(217, 183, 97, 0.23);
  border-radius: 23px;
  box-shadow: 0 28px 80px rgba(19, 24, 21, 0.17);
}

.scope-console::before {
  position: absolute;
  inset: 20px;
  content: "";
  border: 1px solid rgba(217, 183, 97, 0.12);
  border-radius: 17px;
  pointer-events: none;
}

.scope-tabs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.scope-tab {
  min-height: 42px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(217, 183, 97, 0.14);
  border-radius: 999px;
  font: 760 9.5px/1 "Geist Mono", ui-monospace, monospace;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  cursor: pointer;
}

.scope-tab:hover,
.scope-tab:focus-visible,
.scope-tab.is-active {
  color: #15100a;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-color: var(--gold);
}

.scope-output {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  min-height: 296px;
  padding: 32px 18px 18px;
}

.scope-output span {
  color: rgba(217, 183, 97, 0.78);
  font: 760 11px/1 "Geist Mono", ui-monospace, monospace;
  letter-spacing: 0.085em;
}

.scope-output h3 {
  margin: 20px 0 17px;
  color: var(--gold);
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 660;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.scope-output p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.55;
}

.scope-output small {
  display: block;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.56);
  font: 720 11px/1.45 "Geist Mono", ui-monospace, monospace;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.process-section {
  padding: clamp(74px, 8vw, 112px) 0;
  border-top: 1px solid var(--line);
}

.process-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.7fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(168, 121, 36, 0.17);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.process-rail article {
  min-height: 244px;
  padding: 23px;
  background: rgba(255, 255, 255, 0.74);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.process-rail h3 {
  margin: 56px 0 12px;
  font-size: 22px;
  font-weight: 660;
  letter-spacing: -0.045em;
  line-height: 1;
}

.process-rail p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.56;
}

.report-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 0.92fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: center;
  padding: clamp(74px, 8vw, 112px) 0;
}

.report-copy h2 {
  margin-bottom: 20px;
}

.report-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.report-points span {
  color: #16120a;
  background: rgba(217, 183, 97, 0.68);
  border-color: rgba(168, 121, 36, 0.2);
}

.report-card {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.84);
  background:
    radial-gradient(circle at 76% 12%, rgba(217, 183, 97, 0.16), transparent 34%),
    linear-gradient(180deg, #151a17 0%, #0c0f0e 100%);
  border: 1px solid rgba(217, 183, 97, 0.24);
  border-radius: 23px;
  box-shadow: var(--shadow-dark);
}

.report-card-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 17px 20px;
  border-bottom: 1px solid rgba(217, 183, 97, 0.14);
}

.report-card-header span,
.report-card-header strong {
  color: rgba(255, 255, 255, 0.64);
  font: 760 9.5px/1 "Geist Mono", ui-monospace, monospace;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.finding-row {
  padding: 24px;
  border-bottom: 1px solid rgba(217, 183, 97, 0.14);
}

.finding-row span,
.finding-grid span {
  color: var(--gold);
}

.finding-row strong {
  display: block;
  margin-top: 12px;
  color: #fff3ca;
  font-size: clamp(23px, 2.2vw, 32px);
  font-weight: 660;
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.finding-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(217, 183, 97, 0.14);
}

.finding-grid div {
  min-height: 104px;
  padding: 19px;
  background: rgba(255, 255, 255, 0.045);
}

.finding-grid strong {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13.5px;
  font-weight: 660;
  line-height: 1.42;
}

.report-card pre {
  margin: 0;
  padding: 22px 24px 24px;
  overflow-x: auto;
}

.report-card code {
  color: #f3e7bd;
  font: 650 12.5px/1.7 "Geist Mono", ui-monospace, monospace;
}

.standards-section {
  padding: clamp(64px, 8vw, 106px) 0;
  border-top: 1px solid var(--line);
}

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

.standards-grid article {
  min-height: 232px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(19, 24, 21, 0.055);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.standards-grid h3 {
  margin: 52px 0 13px;
  font-size: 23px;
  font-weight: 660;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.standards-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.62;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(460px, 0.94fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
  padding: clamp(74px, 9vw, 122px) max(24px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 80% 14%, rgba(217, 183, 97, 0.16), transparent 28rem),
    radial-gradient(circle at 18% 36%, rgba(15, 143, 95, 0.12), transparent 24rem),
    linear-gradient(180deg, #111714 0%, #070a09 100%);
}

.contact-section .section-kicker {
  color: var(--gold);
}

.contact-copy h2 {
  color: #fff;
  font-size: clamp(34px, 4.1vw, 56px);
}

.contact-copy p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.intake-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 2.8vw, 32px);
  background:
    radial-gradient(circle at 92% 10%, rgba(217, 183, 97, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.044));
  border: 1px solid rgba(217, 183, 97, 0.22);
  border-radius: 24px;
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(18px);
}

.intake-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--green-soft), transparent);
  opacity: 0.72;
}

.intake-card-top strong {
  display: block;
  max-width: 540px;
  color: #fff4cf;
  font-size: clamp(23px, 2.2vw, 32px);
  font-weight: 660;
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.intake-template {
  display: grid;
  gap: 1px;
  margin-top: 26px;
  overflow: hidden;
  background: rgba(217, 183, 97, 0.16);
  border: 1px solid rgba(217, 183, 97, 0.14);
  border-radius: 18px;
}

.intake-template p {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  align-items: start;
  margin: 0;
  padding: 17px 19px;
  background: rgba(11, 15, 13, 0.52);
}

.intake-template span {
  color: var(--gold);
}

.intake-template strong {
  color: rgba(255, 255, 255, 0.84);
  font-size: 13.5px;
  font-weight: 620;
  line-height: 1.42;
}

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

.intake-actions .button-secondary {
  border: 1px solid rgba(217, 183, 97, 0.24);
  color: rgba(255, 255, 255, 0.86);
  font-family: inherit;
}

.contact-small {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.5;
}

.contact-small a {
  color: var(--gold-2);
  font-weight: 720;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 240, 186, 0.72);
}

.company-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(217, 183, 97, 0.14);
}

.company-strip span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  justify-content: flex-start;
  gap: 32px;
  padding: 30px clamp(20px, 4vw, 64px);
  color: rgba(255, 255, 255, 0.62);
  background: #070a09;
  border-top: 1px solid rgba(217, 183, 97, 0.12);
}

.site-footer div {
  display: grid;
  gap: 6px;
}

.site-footer strong {
  color: var(--gold-2);
  font-weight: 720;
  letter-spacing: -0.01em;
}

.site-footer span,
.site-footer p {
  margin: 0;
  max-width: none;
  font-size: 12px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.js .reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .hero-shell,
  .scope-section,
  .report-section,
  .contact-section,
  .split-heading,
  .process-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-shell {
    align-items: end;
    padding-top: 122px;
  }

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

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

  .outcome-card.featured-card {
    grid-row: auto;
    grid-column: span 2;
    min-height: 390px;
  }

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

  .process-rail article:last-child {
    grid-column: span 2;
  }

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

@media (max-width: 860px) {
  .site-header {
    min-height: 64px;
  }

  .brand-copy span,
  .nav-links a:not(.nav-cta):nth-child(n+3) {
    display: none;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .nav-links {
    gap: 16px;
  }

  .hero::before {
    inset: 76px 16px 30px;
    border-radius: 22px;
  }

  .signal-bar,
  .service-grid,
  .scope-tabs,
  .finding-grid {
    grid-template-columns: 1fr;
  }

  .signal-bar div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(146, 111, 40, 0.16);
  }

  .signal-bar div:last-child {
    border-bottom: 0;
  }

  .mid-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 10px 16px;
  }

  .brand-mark,
  .brand-mark svg {
    width: 34px;
    height: 34px;
  }

  .brand-copy strong {
    display: none;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    min-height: 36px;
    padding: 0 13px;
    font-size: 12px;
  }

  .hero-shell,
  .signal-bar,
  .section,
  .process-section,
  .report-section,
  .standards-section,
  .mid-cta {
    width: min(100% - 32px, var(--max));
  }

  .hero-shell {
    padding: 106px 0 60px;
  }

  .hero h1 {
    font-size: 40px;
    letter-spacing: -0.055em;
  }

  .hero-copy {
    font-size: 15.5px;
  }

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

  .hero-trust span,
  .contact-tags span,
  .report-points span {
    width: 100%;
    justify-content: center;
  }

  .hero-brief,
  .intake-card {
    padding: 22px;
    border-radius: 19px;
  }

  .outcome-grid,
  .service-grid,
  .process-rail {
    grid-template-columns: 1fr;
  }

  .outcome-card.featured-card,
  .process-rail article:last-child {
    grid-column: auto;
  }

  .outcome-card.featured-card {
    min-height: auto;
  }

  .featured-card h3 {
    margin-top: 44px;
  }

  .service-card {
    min-height: auto;
  }

  .service-detail-grid,
  .intake-template p {
    grid-template-columns: 1fr;
  }

  .service-detail-grid div {
    min-height: auto;
  }

  .scope-output {
    min-height: 280px;
    padding: 28px 12px 14px;
  }

  .section-heading h2,
  .scope-copy h2,
  .process-heading h2,
  .report-copy h2,
  .standards-section h2 {
    font-size: 34px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    padding: 64px 16px;
  }

  .contact-copy h2 {
    font-size: 38px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 26px 16px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 36px;
  }

  .section-heading h2,
  .scope-copy h2,
  .process-heading h2,
  .report-copy h2,
  .standards-section h2,
  .contact-copy h2 {
    font-size: 30px;
  }
}

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

  .button,
  .outcome-card,
  .service-card,
  .process-rail article,
  .standards-grid article {
    transition: none;
  }

  .button:hover,
  .button:focus-visible,
  .outcome-card:hover,
  .service-card:hover,
  .process-rail article:hover,
  .standards-grid article:hover {
    transform: none;
  }
}

#services,
#outcomes,
#process,
#reporting,
#contact {
  scroll-margin-top: 96px;
}
