:root {
  --navy: #0f2442;
  --navy-deep: #07162c;
  --navy-soft: #17375f;
  --red: #b32634;
  --gray-25: #fbfcfd;
  --gray-50: #f5f7fa;
  --gray-100: #e8edf3;
  --gray-200: #d4dbe6;
  --gray-600: #586275;
  --gray-700: #3f4859;
  --ink: #151d2e;
  --white: #ffffff;
  --max-width: 1160px;
  --shadow: 0 18px 44px rgba(15, 36, 66, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

p {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 8px 28px rgba(15, 36, 66, 0.06);
}

.site-header::before {
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy) 78%, var(--red) 78%, var(--red) 100%);
  content: "";
}

.header-inner {
  display: flex;
  width: min(100%, var(--max-width));
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 0 auto;
  padding: 12px 24px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.08);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark::after {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  height: 4px;
  background: var(--red);
  border-radius: 999px;
  content: "";
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-name {
  color: var(--navy-deep);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.18;
}

.brand-subtitle {
  color: var(--gray-600);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

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

.site-nav a {
  padding: 9px 10px;
  border-radius: 4px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--navy);
  background: var(--gray-50);
}

.header-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: #941f2b;
}

.section-pad,
.section {
  padding: 74px 24px;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 48px;
  align-items: center;
  padding-top: 68px;
  padding-bottom: 68px;
}

.hero-content {
  max-width: 760px;
  min-width: 0;
}

.eyebrow,
.section-kicker,
.profile-label {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  color: var(--navy);
  background: var(--gray-50);
  border-left: 4px solid var(--red);
  border-radius: 4px;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 14px;
  color: var(--navy-deep);
  font-size: 4.28rem;
  line-height: 1;
}

h2 {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 2.45rem;
  line-height: 1.12;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.25;
}

.tagline {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 1.62rem;
  font-weight: 900;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--gray-700);
  font-size: 1.18rem;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 2px solid var(--navy);
  border-radius: 4px;
  font-weight: 900;
  text-decoration: none;
}

.button-primary {
  color: var(--white);
  background: var(--navy);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--navy-deep);
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--red);
  color: var(--red);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--gray-200);
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-700);
  font-size: 0.94rem;
  font-weight: 800;
}

.hero-proof span::before {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  content: "";
}

.hero-panel {
  overflow: hidden;
  background: var(--gray-25);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-width: 0;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
}

.panel-heading span {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.panel-heading strong {
  display: inline-grid;
  width: 44px;
  height: 34px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 3px solid var(--red);
  border-radius: 4px;
  font-size: 0.86rem;
}

.service-map {
  position: relative;
  min-height: 258px;
  background:
    linear-gradient(90deg, rgba(15, 36, 66, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(15, 36, 66, 0.07) 1px, transparent 1px),
    var(--gray-50);
  background-size: 32px 32px;
  border-bottom: 1px solid var(--gray-200);
}

.service-map::before {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(15, 36, 66, 0.13);
  border-radius: 6px;
  content: "";
}

.map-point {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  min-width: 94px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: var(--white);
  background: var(--navy);
  border-left: 5px solid var(--red);
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(15, 36, 66, 0.18);
  font-weight: 900;
}

.map-point::before {
  width: 9px;
  height: 9px;
  margin-right: 8px;
  background: var(--red);
  border-radius: 50%;
  content: "";
}

.map-point.kansas {
  top: 68px;
  left: 16%;
}

.map-point.oklahoma {
  right: 13%;
  bottom: 54px;
}

.map-line {
  position: absolute;
  top: 126px;
  left: 31%;
  width: 43%;
  height: 3px;
  background: var(--red);
  border-radius: 999px;
  transform: rotate(22deg);
  transform-origin: left center;
}

.profile-card {
  padding: 22px;
  background: var(--white);
}

.profile-card p:last-of-type {
  margin-bottom: 14px;
  color: var(--gray-700);
}

.profile-list {
  display: grid;
  gap: 8px;
  padding: 14px 0 0;
  margin: 0;
  border-top: 1px solid var(--gray-200);
  color: var(--gray-700);
  font-size: 0.94rem;
  list-style: none;
}

.profile-list li {
  position: relative;
  padding-left: 18px;
}

.profile-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  content: "";
}

.section-light {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.section-navy {
  color: var(--white);
  background: var(--navy);
}

.section-navy h2,
.section-navy .section-kicker {
  color: var(--white);
}

.section-navy .section-kicker {
  display: inline-block;
  padding-left: 12px;
  border-left: 4px solid var(--red);
}

.split,
.contracting-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 50px;
  align-items: start;
}

.split > *,
.contracting-grid > *,
.contact-grid > * {
  min-width: 0;
}

.copy-block p,
.contracting-note,
.contact-grid p {
  color: var(--gray-700);
  font-size: 1.04rem;
}

.status-list,
.differentiator-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.status-list li,
.differentiator-list li {
  position: relative;
  padding-left: 24px;
}

.status-list li::before,
.differentiator-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  content: "";
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

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

.capability-card {
  position: relative;
  min-height: 170px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(15, 36, 66, 0.06);
}

.capability-card::before {
  display: inline-flex;
  width: 38px;
  height: 28px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--red);
  background: #fff4f5;
  border-left: 4px solid var(--red);
  border-radius: 4px;
  font-size: 0.84rem;
  font-weight: 900;
  counter-increment: capability;
  content: "0" counter(capability);
}

.capability-card p {
  margin-bottom: 0;
  color: var(--gray-700);
}

.differentiator-list {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
}

.differentiator-list li {
  padding: 14px 0 14px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.differentiator-list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.differentiator-list li::before {
  background: var(--white);
}

.info-panel,
.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.info-panel {
  border-top: 5px solid var(--red);
}

.info-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--gray-200);
}

.info-row:last-child {
  border-bottom: 0;
}

.info-row dt {
  color: var(--gray-700);
  font-weight: 700;
}

.info-row dd {
  margin: 0;
  color: var(--navy);
  text-align: left;
  font-weight: 800;
}

.button-compact {
  margin-top: 10px;
}

.code-wrap {
  display: grid;
  gap: 28px;
  margin-top: 36px;
}

.code-block h3 {
  margin-bottom: 16px;
}

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

.code-item {
  display: grid;
  min-height: 100px;
  align-content: start;
  gap: 4px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
}

.code-item strong {
  color: var(--red);
  font-size: 1.25rem;
}

.code-item span {
  color: var(--gray-700);
}

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

.contact-card {
  display: grid;
  gap: 8px;
  padding: 28px;
  border-top: 5px solid var(--red);
  font-style: normal;
}

.contact-label {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--navy);
  font-size: 1.34rem;
}

.contact-card a {
  color: var(--red);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy-deep);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 980px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .header-right {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero,
  .split,
  .contracting-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.12rem;
  }

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

@media (max-width: 680px) {
  .header-inner {
    padding: 12px 18px;
  }

  .brand {
    gap: 11px;
  }

  .brand-mark {
    width: 54px;
    height: 54px;
    font-size: 0.95rem;
  }

  .brand-name {
    font-size: 0.94rem;
  }

  .brand-subtitle {
    font-size: 0.72rem;
  }

  .header-right {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .site-nav {
    width: 100%;
    gap: 2px;
    font-size: 0.9rem;
  }

  .site-nav a {
    padding: 8px 9px;
  }

  .header-cta {
    display: none;
  }

  .section-pad,
  .section {
    padding: 52px 18px;
  }

  .hero {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .eyebrow {
    display: flex;
    width: fit-content;
    max-width: 100%;
    align-items: flex-start;
  }

  h1 {
    font-size: 2.72rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 1.86rem;
  }

  .tagline {
    font-size: 1.34rem;
  }

  .hero-text {
    font-size: 1.05rem;
  }

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

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-content,
  .hero-panel {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    gap: 8px;
  }

  .service-map {
    min-height: 220px;
  }

  .map-point.kansas {
    left: 9%;
  }

  .map-point.oklahoma {
    right: 8%;
  }

  .capability-grid,
  .code-grid {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

}

@media (max-width: 420px) {
  .brand-copy {
    max-width: 230px;
  }

  h1 {
    font-size: 2.34rem;
  }

  .map-line {
    width: 38%;
  }

  .map-point {
    min-width: 82px;
    font-size: 0.92rem;
  }
}
