:root {
  --graphite: #111416;
  --graphite-2: #1a1f23;
  --navy: #182535;
  --steel: #7f8a92;
  --warm-grey: #d7d1c8;
  --off-white: #f3f0ea;
  --paper: #fbfaf7;
  --brass: #b69a61;
  --red: #9d3d35;
  --line: rgba(243, 240, 234, 0.16);
  --dark-line: rgba(17, 20, 22, 0.14);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  --max: 1180px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--graphite);
  background: var(--paper);
  font-family:
    Arial, "Helvetica Neue", Helvetica, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--off-white);
  color: var(--graphite);
  border-radius: 4px;
}

.skip-link:focus {
  top: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(243, 240, 234, 0.12);
  background: rgba(17, 20, 22, 0.82);
  backdrop-filter: blur(16px);
  color: var(--off-white);
}

.nav {
  width: min(100% - 32px, 1280px);
  height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(243, 240, 234, 0.28);
  color: var(--brass);
  font-size: 0.78rem;
}

.brand-text {
  color: var(--off-white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(243, 240, 234, 0.78);
  font-size: 0.92rem;
}

.nav-links a {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--off-white);
}

.nav-cta {
  padding: 10px 15px;
  border: 1px solid rgba(182, 154, 97, 0.65);
  color: var(--off-white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(243, 240, 234, 0.2);
  background: transparent;
  color: var(--off-white);
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  min-height: 100vh;
  padding: calc(var(--header-height) + 32px) 24px 32px;
  display: grid;
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(17, 20, 22, 0.95) 0%, rgba(17, 20, 22, 0.88) 48%, rgba(17, 20, 22, 0.76) 100%),
    repeating-linear-gradient(90deg, rgba(243, 240, 234, 0.04) 0 1px, transparent 1px 84px),
    repeating-linear-gradient(0deg, rgba(243, 240, 234, 0.035) 0 1px, transparent 1px 84px),
    var(--graphite);
  color: var(--off-white);
}

.hero-grid {
  width: min(100%, 1280px);
  min-height: calc(100vh - var(--header-height) - 64px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.86fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
}

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

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

h1 {
  margin-bottom: 20px;
  font-family: "Arial Narrow", "Helvetica Neue Condensed", "DIN Condensed", Impact, sans-serif;
  font-size: clamp(2.85rem, 5.2vw, 4.55rem);
  line-height: 0.92;
  letter-spacing: 0;
  max-width: 790px;
  text-transform: uppercase;
  font-weight: 900;
}

.hero-subhead {
  max-width: 690px;
  color: rgba(243, 240, 234, 0.78);
  font-size: clamp(1.02rem, 1.55vw, 1.18rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-weight: 760;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--brass);
  color: #11100d;
  border-color: var(--brass);
}

.text-link {
  color: var(--off-white);
  border-bottom: 1px solid rgba(243, 240, 234, 0.42);
  padding-bottom: 4px;
  font-weight: 650;
}

.credibility-line {
  margin-top: 22px;
  color: rgba(243, 240, 234, 0.62);
  max-width: 620px;
  font-size: 0.98rem;
}

.control-panel {
  position: relative;
  padding: clamp(18px, 2.8vw, 30px);
  border: 1px solid rgba(243, 240, 234, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02) 42%, rgba(157, 61, 53, 0.08)),
    rgba(26, 31, 35, 0.76);
  box-shadow: var(--shadow);
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 0 100%);
}

.control-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 52%, rgba(182, 154, 97, 0.16) 52.2%, transparent 52.5%),
    repeating-linear-gradient(90deg, rgba(243, 240, 234, 0.04) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(0deg, rgba(243, 240, 234, 0.04) 0 1px, transparent 1px 46px);
  pointer-events: none;
}

.control-panel > * {
  position: relative;
}

.panel-top,
.metric-head,
.action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.panel-title {
  margin: 0;
  color: var(--off-white);
  font-weight: 780;
}

.panel-status,
.metric-card span,
.owner-actions span,
.tension-card span {
  display: block;
  margin: 0;
  color: rgba(243, 240, 234, 0.58);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.signal {
  padding: 8px 10px;
  border: 1px solid rgba(157, 61, 53, 0.6);
  color: #f0c4bf;
  background: rgba(157, 61, 53, 0.18);
  font-size: 0.8rem;
  white-space: nowrap;
}

.tension-grid,
.dashboard-grid,
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.control-map {
  position: relative;
  min-height: 430px;
  margin-top: 28px;
}

.control-map::before,
.control-map::after {
  content: "";
  position: absolute;
  inset: 22% 12% 20%;
  border: 1px solid rgba(182, 154, 97, 0.36);
  transform: skew(-10deg);
}

.control-map::after {
  inset: 38% 24% 33%;
  border-color: rgba(157, 61, 53, 0.34);
}

.control-node {
  position: absolute;
  width: 178px;
  min-height: 118px;
  padding: 16px;
  border: 1px solid rgba(243, 240, 234, 0.2);
  background: rgba(17, 20, 22, 0.78);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}

.control-node::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: -7px;
  width: 14px;
  height: 14px;
  background: var(--brass);
  transform: rotate(45deg);
}

.control-node.risk {
  border-color: rgba(157, 61, 53, 0.7);
}

.control-node.risk::after {
  background: var(--red);
}

.control-node span,
.control-feed span {
  display: block;
  color: rgba(243, 240, 234, 0.58);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.control-node strong {
  display: block;
  margin-top: 10px;
  color: var(--off-white);
  font-family: "Arial Narrow", "Helvetica Neue Condensed", "DIN Condensed", Impact, sans-serif;
  font-size: 2.1rem;
  line-height: 0.9;
  text-transform: uppercase;
}

.control-node small {
  display: block;
  margin-top: 8px;
  color: rgba(243, 240, 234, 0.66);
}

.node-quotes {
  top: 0;
  left: 2%;
}

.node-jobs {
  top: 34px;
  right: 2%;
}

.node-margin {
  top: 148px;
  left: 33%;
}

.node-variations {
  bottom: 56px;
  left: 7%;
}

.node-cash {
  right: 9%;
  bottom: 12px;
}

.control-feed {
  display: grid;
  gap: 0;
  margin-top: 8px;
  border-top: 1px solid rgba(243, 240, 234, 0.2);
}

.control-feed div {
  display: grid;
  grid-template-columns: minmax(120px, 0.46fr) 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(243, 240, 234, 0.16);
}

.control-feed b {
  color: rgba(243, 240, 234, 0.86);
  font-weight: 720;
}

.tension-grid {
  margin-top: 24px;
}

.tension-card,
.metric-card,
.owner-actions {
  border: 1px solid rgba(243, 240, 234, 0.14);
  background: rgba(17, 20, 22, 0.62);
}

.tension-card {
  padding: 16px;
}

.tension-card strong,
.metric-card b {
  display: block;
  color: var(--off-white);
  margin-top: 8px;
  font-size: 1.08rem;
}

.tension-card small {
  display: block;
  color: rgba(243, 240, 234, 0.64);
  margin-top: 10px;
}

.controlled {
  border-color: rgba(182, 154, 97, 0.42);
}

.dashboard-grid {
  margin-top: 12px;
}

.metric-card {
  min-height: 108px;
  padding: 16px;
}

.metric-card.large {
  grid-column: 1 / -1;
}

.pipeline-bars {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.pipeline-bars span {
  display: block;
  width: var(--w);
  height: 9px;
  background: linear-gradient(90deg, var(--brass), rgba(157, 61, 53, 0.72));
}

.owner-actions {
  margin-top: 20px;
  padding: 0;
  border: 0;
  background: transparent;
}

.owner-actions p {
  margin: 8px 0 0;
  color: rgba(243, 240, 234, 0.76);
}

.owner-actions b {
  color: var(--brass);
  font-size: 2rem;
  line-height: 1;
}

.action-row p {
  margin: 0;
  color: rgba(243, 240, 234, 0.76);
}

.section {
  padding: clamp(72px, 10vw, 132px) 24px;
}

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

.two-column {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
}

.reverse {
  grid-template-columns: 1fr 0.85fr;
}

h2 {
  margin-bottom: 20px;
  font-family: "Arial Narrow", "Helvetica Neue Condensed", "DIN Condensed", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 4.15rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 900;
}

h3 {
  margin-bottom: 18px;
  font-size: 1.18rem;
}

.section-lead p,
.audit-header p,
.difference-copy p,
.proof-grid p,
.final-cta p {
  color: rgba(17, 20, 22, 0.72);
  font-size: 1.08rem;
}

.problem-section {
  background: var(--off-white);
}

.problem-section .section-inner {
  position: relative;
}

.problem-section .section-inner::before {
  content: "CONTROL BREAKS HERE";
  position: absolute;
  top: -42px;
  left: 0;
  color: rgba(157, 61, 53, 0.9);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.breakdown-list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--dark-line);
  border-left: 0;
}

.breakdown-list article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: baseline;
  min-height: 0;
  padding: 18px 0;
  border-right: 0;
  border-bottom: 1px solid var(--dark-line);
  background: transparent;
}

.breakdown-list span {
  color: var(--red);
  font-weight: 780;
  font-size: 0.8rem;
}

.breakdown-list p {
  margin: 0;
  font-size: 1rem;
}

.audit-section {
  background:
    linear-gradient(90deg, rgba(17, 20, 22, 0.96), rgba(24, 37, 53, 0.94)),
    var(--graphite);
  color: var(--off-white);
}

.audit-header {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 360px);
  gap: 36px;
  align-items: end;
  margin-bottom: 44px;
}

.audit-header p {
  max-width: 760px;
  color: rgba(243, 240, 234, 0.7);
}

.price-card {
  padding: 0 0 0 24px;
  border: 0;
  border-left: 4px solid var(--brass);
  background: transparent;
}

.price-card span {
  color: rgba(243, 240, 234, 0.66);
  font-size: 0.85rem;
}

.price-card strong {
  display: block;
  margin: 6px 0 10px;
  color: var(--brass);
  font-size: 1.75rem;
}

.price-card p {
  margin: 0;
  color: rgba(243, 240, 234, 0.68);
  font-size: 0.95rem;
}

.audit-areas {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 0;
}

.audit-areas article {
  min-height: 84px;
  display: flex;
  align-items: flex-end;
  padding: 18px 18px 18px 0;
  border-right: 0;
  border-bottom: 1px solid var(--line);
  color: rgba(243, 240, 234, 0.86);
  background: transparent;
}

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

.deliverable-board {
  display: grid;
  gap: 0;
  border-top: 2px solid var(--graphite);
}

.deliverable-board article {
  padding: 22px 0;
  min-height: 0;
  border-left: 0;
  border-bottom: 1px solid var(--dark-line);
  background: transparent;
  color: var(--graphite);
}

.deliverable-board span {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.deliverable-board strong {
  font-family: "Arial Narrow", "Helvetica Neue Condensed", "DIN Condensed", Impact, sans-serif;
  font-size: 1.65rem;
  text-transform: uppercase;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--red);
}

.different-section {
  background: var(--warm-grey);
}

.split-band {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.difference-copy {
  border-left: 1px solid rgba(17, 20, 22, 0.18);
  padding-left: clamp(24px, 4vw, 48px);
}

.fit-section {
  background: var(--graphite);
  color: var(--off-white);
}

.compact {
  max-width: 860px;
  margin-bottom: 34px;
}

.fit-card {
  padding: clamp(20px, 3vw, 30px) 0 0;
  border: 0;
  border-top: 2px solid rgba(243, 240, 234, 0.22);
  background: transparent;
}

.fit-card.muted {
  background: transparent;
}

.fit-card h3 {
  font-family: "Arial Narrow", "Helvetica Neue Condensed", "DIN Condensed", Impact, sans-serif;
  font-size: 1.75rem;
  text-transform: uppercase;
}

.fit-card ul {
  margin: 0;
  padding-left: 20px;
  color: rgba(243, 240, 234, 0.75);
}

.fit-card li + li {
  margin-top: 10px;
}

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

.proof-grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.proof-points {
  display: grid;
  gap: 12px;
}

.proof-points article {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  padding: 22px;
  border-top: 1px solid var(--dark-line);
}

.proof-points strong {
  color: var(--red);
  font-size: 1.12rem;
}

.proof-points span {
  color: rgba(17, 20, 22, 0.74);
}

.final-cta {
  padding: clamp(72px, 10vw, 128px) 24px;
  background:
    linear-gradient(90deg, rgba(17, 20, 22, 0.96), rgba(17, 20, 22, 0.86)),
    repeating-linear-gradient(90deg, rgba(243, 240, 234, 0.035) 0 1px, transparent 1px 78px),
    var(--graphite);
  color: var(--off-white);
}

.final-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.final-cta p {
  color: rgba(243, 240, 234, 0.72);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px) 0 0;
  border: 0;
  border-top: 2px solid rgba(182, 154, 97, 0.48);
  background: transparent;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form span {
  color: rgba(243, 240, 234, 0.72);
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(243, 240, 234, 0.18);
  border-radius: 2px;
  background: rgba(17, 20, 22, 0.7);
  color: var(--off-white);
  padding: 13px 14px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(182, 154, 97, 0.78);
  outline-offset: 2px;
}

.form-note {
  margin: 0;
  color: rgba(243, 240, 234, 0.54);
  font-size: 0.88rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  color: rgba(243, 240, 234, 0.66);
  background: #0c0e10;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--off-white);
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .two-column,
  .reverse,
  .split-band,
  .proof-grid,
  .final-inner,
  .audit-header {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
  }

  .control-panel {
    max-width: 720px;
  }

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

  .difference-copy {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  .nav {
    width: min(100% - 24px, 1280px);
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 18px;
    background: var(--graphite);
    border-bottom: 1px solid rgba(243, 240, 234, 0.14);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.34);
  }

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

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(243, 240, 234, 0.1);
  }

  .nav-cta {
    margin-top: 12px;
    padding: 13px 14px;
    text-align: center;
    border-bottom: 1px solid rgba(182, 154, 97, 0.65) !important;
  }

  .hero {
    padding: calc(var(--header-height) + 34px) 18px 42px;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.4rem);
  }

  .section,
  .final-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .breakdown-list,
  .tension-grid,
  .dashboard-grid,
  .fit-grid,
  .audit-areas {
    grid-template-columns: 1fr;
  }

  .breakdown-list article {
    min-height: auto;
  }

  .proof-points article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
