:root {
  --ink: #10202f;
  --muted: #607080;
  --line: #d9e2e9;
  --paper: #f7fafb;
  --white: #ffffff;
  --steel: #24445f;
  --teal: #137f86;
  --amber: #e2a43b;
  --red: #b4473f;
  --coal: #0b1217;
  --green: #7fc9a6;
  --shadow: 0 28px 90px rgba(15, 31, 47, 0.2);
  --font-sans: ABBvoice, "Helvetica Neue", Arial, "Liberation Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -5;
  content: "";
  background:
    linear-gradient(rgba(16, 32, 47, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 32, 47, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(16, 32, 47, 0.94);
  box-shadow: 0 12px 36px rgba(6, 17, 27, 0.22);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: clamp(54px, 7vw, 78px);
  height: clamp(54px, 7vw, 78px);
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.36));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: clamp(15px, 2.5vw, 18px);
}

.brand small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
}

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

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--amber);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  padding: 11px;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  padding: 140px clamp(18px, 6vw, 80px) 44px;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 14, 19, 0.96), rgba(13, 28, 38, 0.78) 48%, rgba(13, 28, 38, 0.36)),
    linear-gradient(0deg, rgba(11, 18, 23, 0.94), rgba(11, 18, 23, 0) 54%);
}

.hero-content {
  align-self: center;
  min-width: 0;
  width: min(1060px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 1080px;
  margin-bottom: 20px;
  font-size: clamp(27px, 5.3vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-intel {
  display: grid;
  grid-template-columns: minmax(130px, 0.4fr) minmax(120px, 0.32fr) minmax(280px, 1fr);
  gap: 14px;
  align-items: center;
  width: min(780px, 100%);
  margin-top: 20px;
  min-width: 0;
  border: 1px solid rgba(217, 226, 233, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(11, 18, 23, 0.7);
  padding: clamp(14px, 2vw, 18px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.intel-top {
  display: grid;
  gap: 16px;
  margin-bottom: 0;
}

.intel-top span,
.intel-metrics span {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.intel-top strong {
  color: var(--white);
  font-size: clamp(18px, 2.5vw, 28px);
  line-height: 1;
}

.radar {
  position: relative;
  display: grid;
  width: min(120px, 100%);
  aspect-ratio: 1;
  place-items: center;
  margin: 0 auto;
  border: 1px solid rgba(127, 201, 166, 0.4);
  border-radius: 50%;
  background:
    linear-gradient(rgba(127, 201, 166, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 201, 166, 0.13) 1px, transparent 1px);
  background-size: 34px 34px;
  overflow: hidden;
}

.radar::before,
.radar::after,
.radar i {
  position: absolute;
  border: 1px solid rgba(127, 201, 166, 0.32);
  border-radius: 50%;
  content: "";
}

.radar::before {
  inset: 16%;
}

.radar::after {
  inset: 31%;
}

.radar i {
  inset: 46%;
  background: var(--green);
  box-shadow: 0 0 34px rgba(127, 201, 166, 0.82);
}

.radar b {
  position: absolute;
  width: 48%;
  height: 3px;
  background: linear-gradient(90deg, var(--green), transparent);
  transform-origin: left;
  animation: sweep 5s linear infinite;
  -webkit-animation: sweep 5s linear infinite;
  will-change: transform;
}

.radar em {
  position: absolute;
  right: 23%;
  top: 34%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 24px rgba(226, 164, 59, 0.8);
}

.intel-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(217, 226, 233, 0.18);
}

.intel-metrics div {
  min-width: 0;
  background: rgba(16, 32, 47, 0.78);
  padding: 12px;
}

.intel-metrics strong {
  display: block;
  margin-top: 5px;
  font-size: 13px;
}

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

.button {
  display: inline-flex;
  max-width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  overflow-wrap: anywhere;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: var(--amber);
  color: #172534;
}

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

.button.secondary.dark {
  border-color: rgba(16, 32, 47, 0.24);
  color: var(--ink);
}

.hero-panel {
  grid-column: 1 / -1;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1000px, 100%);
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: var(--shadow);
}

.hero-panel div {
  min-width: 0;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(16, 32, 47, 0.86);
  backdrop-filter: blur(18px);
}

.hero-panel span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
}

.hero-panel strong {
  display: block;
  margin: 8px 0;
  font-size: 18px;
}

.hero-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

section,
.site-footer {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 6vw, 80px);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  background: var(--coal);
}

.signal-strip span {
  min-width: 0;
  padding: 18px 16px;
  border-top: 1px solid rgba(226, 164, 59, 0.36);
  background: linear-gradient(180deg, #141f26, #0b1217);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.band {
  background: var(--white);
}

.intro,
.industries,
.dga,
.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
}

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

.section-heading.narrow {
  max-width: 820px;
  margin-bottom: 34px;
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
}

.decision-room {
  background: #0b1217;
  color: var(--white);
}

.decision-room .section-heading {
  color: var(--white);
}

.decision-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.decision-map {
  min-width: 0;
  max-width: 680px;
  border: 1px solid rgba(217, 226, 233, 0.16);
  background: #10202f;
  box-shadow: var(--shadow);
}

.decision-map img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1100 / 760;
  object-fit: contain;
}

.decision-steps {
  display: grid;
  gap: 14px;
}

.decision-steps article {
  border-left: 4px solid var(--amber);
  background: rgba(255, 255, 255, 0.07);
  padding: clamp(18px, 3vw, 26px);
}

.decision-steps span,
.card-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.decision-steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.expertise {
  background:
    linear-gradient(135deg, rgba(19, 127, 134, 0.11), transparent 40%),
    #edf3f6;
}

.expertise .section-heading.narrow {
  max-width: 980px;
}

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

.service-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  background: var(--white);
  box-shadow: 0 16px 48px rgba(21, 45, 66, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(21, 45, 66, 0.16);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div {
  padding: 22px;
}

.card-kicker {
  color: var(--teal);
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.industry-list a {
  position: relative;
  display: flex;
  min-height: 70px;
  align-items: center;
  border-left: 4px solid var(--teal);
  background: #eef5f6;
  padding: 18px;
  color: var(--steel);
  font-weight: 800;
  overflow: hidden;
}

.industry-list a::after {
  position: absolute;
  right: 16px;
  color: var(--amber);
  content: ">";
  font-weight: 900;
}

.strategy {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 6vw, 84px);
  background:
    linear-gradient(135deg, rgba(226, 164, 59, 0.16), transparent 34%),
    linear-gradient(315deg, rgba(19, 127, 134, 0.12), transparent 38%),
    #111b23;
  color: var(--white);
}

.strategy .section-heading {
  max-width: 760px;
}

.strategy-content > p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.strategy-infographic {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr);
  gap: 14px;
  margin-top: 28px;
}

.strategy-flow,
.strategy-matrix,
.strategy-bars {
  border: 1px solid rgba(217, 226, 233, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045)),
    rgba(5, 12, 17, 0.34);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.strategy-flow {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr);
  align-items: center;
  gap: 0;
  padding: 18px;
}

.strategy-flow div {
  min-height: 90px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.strategy-flow b,
.strategy-flow span {
  display: block;
}

.strategy-flow b {
  color: var(--white);
  font-size: 18px;
  line-height: 1;
}

.strategy-flow span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.strategy-flow i {
  position: relative;
  height: 2px;
  background: var(--amber);
}

.strategy-flow i::after {
  position: absolute;
  right: -1px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--amber);
  border-right: 2px solid var(--amber);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.strategy-matrix {
  position: relative;
  min-height: 260px;
  padding: 38px 22px 22px 48px;
}

.matrix-label {
  position: absolute;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.matrix-label.top {
  top: 16px;
  left: 48px;
}

.matrix-label.side {
  bottom: 58px;
  left: 16px;
  transform: rotate(-90deg);
  transform-origin: left center;
}

.matrix-grid {
  display: grid;
  height: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.matrix-grid span {
  display: grid;
  min-height: 86px;
  place-items: center;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.matrix-grid .low {
  background: rgba(127, 201, 166, 0.2);
}

.matrix-grid .mid {
  background: rgba(226, 164, 59, 0.24);
}

.matrix-grid .high {
  background: rgba(180, 71, 63, 0.34);
}

.strategy-bars {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 260px;
  padding: 24px;
}

.strategy-bars div {
  display: grid;
  gap: 8px;
}

.strategy-bars span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.strategy-bars i {
  display: block;
  height: 18px;
  background:
    linear-gradient(90deg, var(--green), var(--amber)) 0 / var(--bar) 100% no-repeat,
    rgba(255, 255, 255, 0.12);
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  background: rgba(217, 226, 233, 0.14);
  box-shadow: var(--shadow);
}

.strategy-grid article {
  min-width: 0;
  background: rgba(255, 255, 255, 0.075);
  padding: clamp(20px, 3vw, 28px);
}

.strategy-grid span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.strategy-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.engage {
  background:
    linear-gradient(135deg, rgba(19, 127, 134, 0.12), transparent 36%),
    #f7fafb;
}

.engage-grid,
.scenario-grid,
.case-grid,
.training-grid,
.insight-grid {
  display: grid;
  gap: 16px;
}

.engage-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 32px 0 26px;
}

.engage-grid article,
.scenario-grid article,
.case-grid article,
.training-grid span,
.insight-grid article {
  min-width: 0;
  background: var(--white);
  box-shadow: 0 16px 48px rgba(21, 45, 66, 0.08);
}

.engage-grid article,
.scenario-grid article,
.case-grid article,
.insight-grid article {
  padding: clamp(20px, 3vw, 28px);
}

.engage-grid span,
.scenario-grid span,
.case-grid span,
.insight-grid span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.engage-grid p,
.scenario-grid p,
.case-grid p,
.insight-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.decisions {
  background: #edf3f6;
}

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

.scenario-grid article {
  border-top: 4px solid var(--amber);
}

.scenario-grid a {
  display: inline-block;
  margin-top: 18px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 900;
}

.lifecycle {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 6vw, 84px);
  background: #0b1217;
  color: var(--white);
}

.lifecycle-content > p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.lifecycle-path {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-top: 30px;
}

.lifecycle-path span {
  display: grid;
  min-height: 76px;
  place-items: center;
  border: 1px solid rgba(217, 226, 233, 0.14);
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.lifecycle-path i {
  display: none;
}

.engagements,
.insights {
  background: var(--white);
}

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

.case-grid article {
  border-left: 4px solid var(--teal);
}

.case-grid p + p {
  margin-top: 12px;
}

.forensics {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 6vw, 84px);
  background:
    linear-gradient(120deg, rgba(180, 71, 63, 0.18), transparent 36%),
    #111b23;
  color: var(--white);
}

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

.forensic-panel {
  border: 1px solid rgba(217, 226, 233, 0.16);
  background: rgba(255, 255, 255, 0.07);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow);
}

.forensic-panel > p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.forensic-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.forensic-list span {
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
}

.training {
  background:
    linear-gradient(135deg, rgba(226, 164, 59, 0.13), transparent 38%),
    #dfe9ec;
}

.training-layout > p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.training-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 28px 0;
}

.training-grid span {
  display: grid;
  min-height: 78px;
  align-items: center;
  border-left: 4px solid var(--teal);
  padding: 16px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 900;
}

.difference {
  background: #edf3f6;
}

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

.comparison article {
  background: var(--white);
  box-shadow: 0 16px 48px rgba(21, 45, 66, 0.08);
  padding: clamp(24px, 4vw, 36px);
}

.comparison article:last-child {
  border-top: 5px solid var(--amber);
}

.comparison ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

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

.industries .section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.insight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 32px 0 26px;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
}

.contact-details a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.confidentiality {
  border-left: 4px solid var(--amber);
  padding-left: 16px;
}

.dga {
  align-items: center;
  background:
    linear-gradient(120deg, rgba(180, 71, 63, 0.12), transparent 34%),
    #dfe9ec;
}

.dga-copy {
  max-width: 650px;
}

.dga-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.app-preview {
  justify-self: end;
  width: min(620px, 100%);
  border: 1px solid rgba(16, 32, 47, 0.18);
  background: #101820;
  padding: clamp(18px, 4vw, 34px);
  box-shadow: var(--shadow);
  color: var(--white);
}

.preview-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
}

.preview-top span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--line);
}

.preview-top b {
  margin-left: auto;
  color: var(--green);
  font-size: 12px;
  text-transform: uppercase;
}

.console-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 18px;
  align-items: stretch;
}

.gauge {
  display: grid;
  min-height: 180px;
  place-items: center;
  border: 18px solid rgba(232, 239, 242, 0.18);
  border-top-color: var(--teal);
  border-right-color: var(--amber);
  border-radius: 999px;
  text-align: center;
}

.gauge strong,
.gauge span {
  display: block;
}

.gauge span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.gas-stack {
  display: grid;
  gap: 12px;
}

.gas-stack div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.gas-stack span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
}

.gas-stack i {
  display: block;
  height: 16px;
  background:
    linear-gradient(90deg, var(--green), var(--amber), var(--red)) 0 / var(--level) 100% no-repeat,
    rgba(255, 255, 255, 0.12);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0;
}

.metric-row div {
  background: rgba(255, 255, 255, 0.08);
  padding: 14px;
}

.metric-row b,
.metric-row span {
  display: block;
}

.metric-row span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
}

.chart-bars {
  display: grid;
  height: 150px;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 10px;
}

.chart-bars i {
  display: block;
  min-height: 24px;
  background: linear-gradient(180deg, var(--green), var(--teal));
}

@keyframes sweep {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes sweep {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--steel);
  padding-top: 0;
  padding-bottom: 0;
}

.proof-item {
  min-height: 160px;
  padding: clamp(24px, 4vw, 42px);
  background: #10202f;
  color: var(--white);
}

.proof-item span {
  display: block;
  margin-bottom: 12px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-item strong {
  font-size: clamp(21px, 3vw, 32px);
  line-height: 1.12;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  align-items: center;
}

.footer-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.site-footer h2 {
  margin-bottom: 18px;
}

.copyright {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 13px;
  width: 100%;
  padding: 0;
}

.form-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 4px;
}

.form-intro strong,
.form-intro span {
  display: block;
}

.form-intro strong {
  font-size: clamp(17px, 2.4vw, 22px);
  line-height: 1;
}

.form-intro span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 700;
}

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

.form-row.single {
  grid-template-columns: 1fr;
}

.contact-form label,
.contact-form span {
  display: grid;
  gap: 6px;
}

.contact-form span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form sup {
  color: var(--amber);
  font-size: 11px;
  line-height: 0;
}

.contact-form em {
  display: inline-block;
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(217, 226, 233, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: 500 13px/1.35 var(--font-sans);
  padding: 11px 12px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.contact-form select {
  color-scheme: light;
}

.contact-form option {
  background: var(--white);
  color: var(--ink);
}

.contact-form textarea {
  min-height: 108px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--amber);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(226, 164, 59, 0.24);
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  padding-top: 4px;
}

.form-footer p {
  min-height: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 600;
}

.contact-form .button {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 12px;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  line-height: 1.4;
}

.subscribe-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.subscribe-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.subscribe-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 17, 0.72);
  backdrop-filter: blur(10px);
}

.subscribe-dialog {
  position: relative;
  width: min(520px, 100%);
  border: 1px solid rgba(217, 226, 233, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055)),
    #101820;
  color: var(--white);
  padding: clamp(24px, 5vw, 38px);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42);
  transform: translateY(14px) scale(0.98);
  transition: transform 180ms ease;
}

.subscribe-modal.is-visible .subscribe-dialog {
  transform: translateY(0) scale(1);
}

.subscribe-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.subscribe-dialog h2 {
  margin-right: 28px;
  font-size: clamp(28px, 5vw, 44px);
}

.subscribe-dialog p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.subscribe-form {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.subscribe-form label,
.subscribe-form span {
  display: grid;
  gap: 6px;
}

.subscribe-form span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.subscribe-form input {
  width: 100%;
  border: 1px solid rgba(217, 226, 233, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: 500 13px/1.35 var(--font-sans);
  padding: 11px 12px;
  outline: none;
}

.subscribe-form input:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(226, 164, 59, 0.24);
}

.consent-line {
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
}

.consent-line input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.consent-line span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.35;
  text-transform: none;
}

.subscribe-form [data-subscribe-status] {
  min-height: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 700;
}

.site-footer .button.secondary.dark {
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
}

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .scenario-grid,
  .forensic-list,
  .lifecycle-path {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 80px 14px auto;
    display: grid;
    gap: 0;
    padding: 10px;
    background: rgba(16, 32, 47, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 15px;
  }

  .hero {
    min-height: auto;
    padding-top: 124px;
  }

  .hero-intel {
    grid-template-columns: minmax(120px, 0.45fr) minmax(120px, 0.55fr);
  }

  .intel-metrics {
    grid-column: 1 / -1;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(8, 20, 31, 0.94), rgba(8, 20, 31, 0.74)),
      linear-gradient(0deg, rgba(16, 32, 47, 0.9), rgba(16, 32, 47, 0) 48%);
  }

  .hero-panel,
  .intro,
  .decision-layout,
  .lifecycle,
  .forensics,
  .industries,
  .strategy,
  .dga,
  .site-footer,
  .proof {
    grid-template-columns: 1fr;
  }

  .footer-actions {
    justify-content: flex-start;
  }

  .decision-map img {
    min-height: 0;
  }
}

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

  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    max-width: none;
    font-size: 13px;
    overflow-wrap: normal;
    white-space: nowrap;
  }

  .brand small {
    font-size: 11px;
  }

  h1 {
    font-size: clamp(26px, 7.1vw, 32px);
    line-height: 1.04;
  }

  .hero-actions,
  .footer-actions,
  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-panel,
  .service-grid,
  .engage-grid,
  .scenario-grid,
  .case-grid,
  .training-grid,
  .forensic-list,
  .comparison,
  .insight-grid,
  .lifecycle-path,
  .industry-list,
  .strategy-grid,
  .strategy-infographic,
  .strategy-flow,
  .metric-row,
  .console-grid,
  .intel-metrics,
  .signal-strip,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-intel {
    grid-template-columns: 110px minmax(0, 1fr);
    align-items: center;
  }

  .hero-intel .intel-top {
    grid-column: 1 / -1;
  }

  .hero-intel .intel-metrics {
    grid-column: auto;
  }

  .radar {
    width: 110px;
  }

  .strategy-flow {
    gap: 10px;
  }

  .strategy-flow i {
    width: 2px;
    height: 22px;
    justify-self: center;
  }

  .strategy-flow i::after {
    right: auto;
    top: auto;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }

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

  .service-card img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 360px) {
  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 12px;
  }

  h1 {
    font-size: 24px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
