:root {
  color-scheme: light;
  --ink: #101411;
  --graphite: #202721;
  --muted: #5f6b62;
  --line: #d9dfd8;
  --paper: #f6f4ee;
  --panel: #fffdf8;
  --green: #1f6f52;
  --copper: #b3653f;
  --gold: #c49a4a;
  --blue: #2e6f88;
  --scarlet: #9f3e35;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid rgba(17, 21, 18, 0.14);
  background: rgba(246, 244, 238, 0.92);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  text-decoration: none;
}

.mark {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: var(--ink);
  color: #c8f5c2;
  display: grid;
  place-items: center;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-weight: 900;
  box-shadow: inset 0 -3px 0 rgba(196, 154, 74, 0.65);
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.navlinks a {
  text-decoration: none;
}

.button {
  min-height: 44px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  padding: 11px 16px;
  background: var(--ink);
  color: white;
  text-decoration: none;
  font-weight: 850;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

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

.hero {
  min-height: 680px;
  padding: 84px 0 34px;
  color: white;
  background:
    linear-gradient(90deg, rgba(12, 16, 13, 0.93) 0%, rgba(12, 16, 13, 0.76) 48%, rgba(12, 16, 13, 0.28) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid rgba(17, 21, 18, 0.16);
}

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

.hero .wrap {
  display: grid;
  align-content: space-between;
  gap: 48px;
}

.eyebrow,
.tag,
.command-line,
.mini-kicker {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.eyebrow {
  margin: 0 0 18px;
  color: #c8f5c2;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: 0;
}

.lede {
  max-width: 720px;
  margin: 24px 0 0;
  color: #e5ece6;
  font-size: clamp(18px, 2vw, 22px);
}

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

.hero .button.secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.76);
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.metric {
  min-height: 92px;
  padding: 18px 18px 14px 0;
  display: grid;
  align-content: end;
  gap: 6px;
}

.metric span {
  color: #c7d2ca;
  font-size: 13px;
}

.metric strong {
  color: #c8f5c2;
  font-size: 18px;
}

section {
  padding: 66px 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-head p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

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

.card {
  min-height: 250px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 18px 50px rgba(17, 21, 18, 0.05);
}

.card p,
li {
  color: var(--muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 18px;
  color: var(--ink);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
}

.tag::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 9px;
  background: var(--green);
}

.accent-copper .tag::before {
  background: var(--copper);
}

.accent-blue .tag::before {
  background: var(--blue);
}

.accent-gold .tag::before {
  background: var(--gold);
}

.band {
  background: var(--ink);
  color: white;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.band .section-head p,
.band li {
  color: #d6ded8;
}

.command {
  margin-top: 30px;
  border: 1px solid rgba(200, 245, 194, 0.35);
  border-radius: 8px;
  background: #080b09;
  color: #c8f5c2;
  overflow: hidden;
}

.command-line {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(200, 245, 194, 0.2);
  color: #f0fff0;
}

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

.command-step {
  padding: 18px 16px;
  border-right: 1px solid rgba(200, 245, 194, 0.18);
}

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

.command-step strong {
  display: block;
  color: white;
  margin-bottom: 8px;
}

.command-step span {
  color: #c8f5c2;
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: start;
}

.checklist {
  margin: 0;
  padding-left: 20px;
}

.checklist li {
  margin: 9px 0;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.proof {
  background: var(--panel);
  padding: 24px;
}

.proof strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
}

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

.service-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.mini-kicker {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.cta {
  background: var(--graphite);
  color: white;
  padding: 60px 0;
}

.cta p {
  color: #dce5df;
}

.cta .card {
  background: #f8f3e7;
  color: var(--ink);
}

footer {
  padding: 28px 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 860px) {
  .navlinks {
    display: none;
  }

  .hero {
    min-height: 650px;
    padding-top: 56px;
    background:
      linear-gradient(180deg, rgba(12, 16, 13, 0.94), rgba(12, 16, 13, 0.72)),
      var(--hero-image);
    background-size: cover;
    background-position: center;
  }

  .grid,
  .grid.two,
  .split,
  .proof-strip,
  .signal-row,
  .command-grid {
    grid-template-columns: 1fr;
  }

  .command-step {
    border-right: 0;
    border-bottom: 1px solid rgba(200, 245, 194, 0.18);
  }

  .metric {
    min-height: 70px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
}
