@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=Inter:wght@400;500;600;700&family=Rajdhani:wght@600;700&display=swap");

:root {
  --hunter-green: #6bff00;
  --signal-green: #9cff2e;
  --carbon: #050607;
  --graphite: #171a1d;
  --gunmetal: #252b31;
  --steel: #d8dee6;
  --muted: #94a0ad;
  --ice: #f5f7fa;
  --white: #ffffff;
  --cyan: #18d7ff;
  --amber: #ffb020;
  --red: #ff4d4f;
  --border: rgba(216, 222, 230, 0.17);
  --border-strong: rgba(216, 222, 230, 0.3);
  --page: 1180px;
  --header-height: 78px;
  --radius: 6px;
  --heading: "Rajdhani", "Arial Black", sans-serif;
  --body: "Inter", "Segoe UI", Arial, sans-serif;
  --mono: "IBM Plex Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--carbon);
  color: var(--ice);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--carbon);
  font-weight: 700;
}

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

.container {
  width: min(calc(100% - 48px), var(--page));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 48px), 820px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 104px 0;
}

.section-sm {
  padding: 72px 0;
}

.section-light {
  background: var(--ice);
  color: #11161a;
}

.section-graphite {
  background: var(--graphite);
}

.section-grid {
  background-color: var(--carbon);
  background-image:
    linear-gradient(rgba(216, 222, 230, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 222, 230, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
}

.eyebrow,
.data-label {
  margin: 0 0 15px;
  color: var(--hunter-green);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  margin: 0 10px 3px 0;
  background: currentColor;
}

.section-light .eyebrow {
  color: #376f0e;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--heading);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: 68px;
}

h2 {
  margin-bottom: 20px;
  font-size: 48px;
}

h3 {
  margin-bottom: 12px;
  font-size: 25px;
}

h4 {
  margin-bottom: 8px;
  font-size: 20px;
}

.lede {
  max-width: 720px;
  color: var(--steel);
  font-size: 19px;
  line-height: 1.65;
}

.section-light .lede,
.section-light .muted {
  color: #51606c;
}

.muted {
  color: var(--muted);
}

.accent {
  color: var(--hunter-green);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  font-weight: 700;
}

.text-link:hover {
  color: var(--hunter-green);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid var(--hunter-green);
  border-radius: 4px;
  background: var(--hunter-green);
  color: var(--carbon);
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--signal-green);
  border-color: var(--signal-green);
  transform: translateY(-2px);
}

.button.secondary {
  border-color: var(--border-strong);
  background: rgba(5, 6, 7, 0.58);
  color: var(--ice);
}

.button.secondary:hover {
  border-color: var(--hunter-green);
  color: var(--hunter-green);
}

.button.dark {
  border-color: var(--carbon);
  background: var(--carbon);
  color: var(--white);
}

.button svg,
.icon-button svg,
.service-icon svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke-width: 1.8;
}

.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: transparent;
  color: var(--ice);
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid var(--border);
  background: rgba(5, 6, 7, 0.94);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  width: 220px;
  align-items: center;
}

.brand img {
  width: 100%;
  height: 58px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav > a:not(.button) {
  position: relative;
  color: var(--steel);
  font-size: 14px;
  font-weight: 600;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--hunter-green);
  content: "";
  transition: transform 160ms ease;
}

.site-nav > a:not(.button):hover,
.site-nav > a[aria-current="page"] {
  color: var(--white);
}

.site-nav > a:not(.button):hover::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
}

.incident-strip {
  border-bottom: 1px solid rgba(107, 255, 0, 0.22);
  background: #0d120b;
}

.incident-strip .container {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hunter-green);
  box-shadow: 0 0 10px rgba(107, 255, 0, 0.7);
}

.incident-strip a {
  color: var(--hunter-green);
  font-weight: 700;
}

.hero {
  position: relative;
  display: flex;
  height: calc(100svh - var(--header-height) - 78px);
  min-height: 540px;
  max-height: 760px;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--carbon);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.75;
}

.hero::after {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 7, 0.58);
  content: "";
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

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

.hero h1 {
  max-width: 740px;
}

.hero .lede {
  max-width: 670px;
}

.hero-signal {
  position: absolute;
  right: max(24px, calc((100% - var(--page)) / 2));
  bottom: 56px;
  z-index: 3;
  width: 290px;
  padding-left: 18px;
  border-left: 2px solid var(--hunter-green);
}

.hero-signal .signal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.signal-value {
  color: var(--hunter-green);
}

.trust-strip {
  border-bottom: 1px solid var(--border);
  background: #0c0e10;
}

.trust-strip .container {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  align-items: stretch;
}

.trust-item {
  display: flex;
  min-height: 84px;
  align-items: center;
  padding: 18px 22px;
  border-left: 1px solid var(--border);
}

.trust-item:first-child {
  border-left: 0;
  padding-left: 0;
}

.trust-item strong {
  display: block;
  font-family: var(--heading);
  font-size: 17px;
  line-height: 1.15;
}

.trust-item span {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

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

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.loop-tabs {
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 460px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.loop-tab-list {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
}

.loop-tab {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border: 0;
  border-bottom: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 700;
  text-align: left;
}

.loop-tab:last-child {
  border-bottom: 0;
}

.loop-tab[aria-selected="true"] {
  background: var(--hunter-green);
  color: var(--carbon);
}

.loop-number {
  font-family: var(--mono);
  font-size: 11px;
}

.loop-panel {
  display: none;
  grid-template-columns: 1fr 240px;
  align-items: center;
  gap: 48px;
  padding: 56px;
}

.loop-panel.active {
  display: grid;
}

.loop-panel p {
  max-width: 620px;
  color: var(--steel);
}

.loop-panel ul,
.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.loop-panel li,
.check-list li {
  position: relative;
  padding-left: 27px;
  color: var(--steel);
}

.loop-panel li::before,
.check-list li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 6px;
  border-bottom: 2px solid var(--hunter-green);
  border-left: 2px solid var(--hunter-green);
  content: "";
  transform: rotate(-45deg);
}

.signal-graphic {
  position: relative;
  width: 220px;
  aspect-ratio: 1;
  border: 1px solid rgba(107, 255, 0, 0.5);
  border-radius: 50%;
}

.signal-graphic::before,
.signal-graphic::after {
  position: absolute;
  border: 1px solid rgba(24, 215, 255, 0.42);
  border-radius: 50%;
  content: "";
}

.signal-graphic::before {
  inset: 28px;
}

.signal-graphic::after {
  inset: 62px;
  background: var(--hunter-green);
  border: 0;
  border-radius: 4px;
  box-shadow: 0 0 36px rgba(107, 255, 0, 0.28);
}

.signal-graphic span {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  color: var(--carbon);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.service-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(23, 26, 29, 0.56);
  transition: background-color 160ms ease, transform 160ms ease;
}

.service-card:hover {
  z-index: 1;
  background: var(--gunmetal);
  transform: translateY(-4px);
}

.service-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 36px;
  place-items: center;
  border: 1px solid rgba(107, 255, 0, 0.5);
  border-radius: 4px;
  color: var(--hunter-green);
}

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

.service-card .text-link {
  position: absolute;
  bottom: 28px;
  left: 30px;
  font-size: 14px;
}

.microsoft-band {
  overflow: hidden;
  background: var(--ice);
  color: #11161a;
}

.microsoft-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 76px;
  align-items: center;
}

.microsoft-band .lede {
  color: #4e5d68;
}

.msft-mark {
  display: grid;
  grid-template-columns: repeat(2, 16px);
  gap: 3px;
  width: fit-content;
  margin-bottom: 24px;
}

.msft-mark span {
  width: 16px;
  height: 16px;
}

.msft-mark span:nth-child(1) { background: #f25022; }
.msft-mark span:nth-child(2) { background: #7fba00; }
.msft-mark span:nth-child(3) { background: #00a4ef; }
.msft-mark span:nth-child(4) { background: #ffb900; }

.coverage-board {
  border: 1px solid #bdc7cf;
  border-radius: var(--radius);
  background: var(--white);
}

.coverage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #d4dbe0;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.coverage-header span:last-child {
  color: #376f0e;
  font-weight: 700;
}

.coverage-row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid #e0e5e9;
}

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

.coverage-row svg {
  color: #376f0e;
}

.coverage-row strong,
.coverage-row small {
  display: block;
}

.coverage-row small {
  color: #697681;
}

.coverage-state {
  padding: 4px 7px;
  border: 1px solid #8fbe6b;
  border-radius: 3px;
  color: #376f0e;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
}

.industry-item {
  min-height: 250px;
  padding: 28px 22px;
  border-right: 1px solid var(--border);
}

.industry-item:last-child {
  border-right: 0;
}

.industry-item .data-label {
  margin-bottom: 70px;
  color: var(--cyan);
}

.industry-item p {
  color: var(--muted);
  font-size: 14px;
}

.metric-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.metric {
  min-height: 180px;
  padding: 34px;
  border-right: 1px solid var(--border);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  margin-bottom: 12px;
  color: var(--hunter-green);
  font-family: var(--heading);
  font-size: 44px;
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-size: 14px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.price-card {
  position: relative;
  display: flex;
  min-height: 530px;
  flex-direction: column;
  padding: 30px 26px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--graphite);
}

.price-card.featured {
  border-top: 4px solid var(--hunter-green);
  background: var(--gunmetal);
}

.price-card .data-label {
  min-height: 24px;
  color: var(--muted);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin: 22px 0 10px;
}

.price strong {
  font-family: var(--heading);
  font-size: 42px;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 12px;
}

.price-card > p {
  min-height: 86px;
  color: var(--muted);
  font-size: 14px;
}

.price-card .check-list {
  margin-bottom: 26px;
  font-size: 14px;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.price-note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--graphite);
  transition: border-color 160ms ease, transform 160ms ease;
}

.blog-card:hover {
  border-color: rgba(107, 255, 0, 0.55);
  transform: translateY(-4px);
}

.blog-visual {
  position: relative;
  display: grid;
  height: 164px;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background-color: #0c0f11;
  background-image:
    linear-gradient(rgba(107, 255, 0, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 255, 0, 0.08) 1px, transparent 1px);
  background-size: 26px 26px;
}

.blog-visual svg {
  width: 56px;
  height: 56px;
  color: var(--hunter-green);
  stroke-width: 1.2;
}

.blog-visual.cyan svg { color: var(--cyan); }
.blog-visual.amber svg { color: var(--amber); }

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 20px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.blog-card h3 {
  font-size: 24px;
}

.blog-card-body .text-link {
  margin-top: auto;
}

.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--hunter-green);
  color: var(--carbon);
}

.cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-layout h2 {
  max-width: 720px;
  margin-bottom: 8px;
}

.cta-layout p {
  margin-bottom: 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 96px;
  border-bottom: 1px solid var(--border);
  background-color: #0a0c0e;
}

.page-hero::after {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(107, 255, 0, 0.32);
  border-radius: 50%;
  content: "";
}

.page-hero h1 {
  max-width: 870px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.breadcrumb a:hover {
  color: var(--hunter-green);
}

.content-split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 80px;
  align-items: start;
}

.sticky-intro {
  position: sticky;
  top: 118px;
}

.service-detail-list {
  border-top: 1px solid var(--border);
}

.service-detail {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
}

.service-detail .service-icon {
  margin: 0;
}

.service-detail p {
  color: var(--muted);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pill {
  padding: 5px 9px;
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--steel);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
}

.process-step {
  position: relative;
  min-height: 230px;
  padding: 28px 22px;
  border-right: 1px solid var(--border);
}

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

.process-step .step-number {
  display: block;
  margin-bottom: 60px;
  color: var(--hunter-green);
  font-family: var(--mono);
  font-size: 12px;
}

.process-step p {
  color: var(--muted);
  font-size: 14px;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
  border-right: 0;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table th {
  background: var(--gunmetal);
  color: var(--white);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.comparison-table th:last-child {
  color: var(--hunter-green);
}

.comparison-table td {
  color: var(--muted);
}

.comparison-table td:first-child {
  color: var(--ice);
  font-weight: 600;
}

.comparison-table .yes {
  color: var(--hunter-green);
  font-weight: 700;
}

.form-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 74px;
  align-items: start;
}

.form-panel {
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--graphite);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--steel);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  background: #0d0f11;
  color: var(--white);
  outline: 0;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--hunter-green);
  box-shadow: 0 0 0 3px rgba(107, 255, 0, 0.1);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #697581;
}

.form-panel .button {
  width: 100%;
  margin-top: 24px;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 12px 14px;
  border-left: 3px solid var(--hunter-green);
  background: rgba(107, 255, 0, 0.08);
  color: var(--steel);
  font-size: 14px;
}

.form-status.visible {
  display: block;
}

.contact-details {
  display: grid;
  gap: 0;
  margin-top: 38px;
  border-top: 1px solid var(--border);
}

.contact-detail {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail span,
.contact-detail strong {
  display: block;
}

.contact-detail span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-family: var(--heading);
  font-size: 21px;
  font-weight: 700;
  text-align: left;
}

.faq-answer {
  display: none;
  max-width: 850px;
  padding: 0 48px 24px 0;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-question svg {
  flex: 0 0 auto;
  transition: transform 160ms ease;
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.article-hero {
  padding-bottom: 72px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 32px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 64px;
  justify-content: center;
}

.article-aside {
  position: sticky;
  top: 118px;
  height: fit-content;
}

.article-aside a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

.article-aside a:hover {
  color: var(--hunter-green);
}

.article-body {
  color: var(--steel);
  font-size: 17px;
}

.article-body h2 {
  margin-top: 58px;
  font-size: 34px;
}

.article-body h3 {
  margin-top: 38px;
}

.article-body a {
  color: var(--hunter-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body blockquote {
  margin: 38px 0;
  padding: 8px 0 8px 24px;
  border-left: 3px solid var(--hunter-green);
  color: var(--white);
  font-family: var(--heading);
  font-size: 25px;
  line-height: 1.3;
}

.article-callout {
  margin: 36px 0;
  padding: 24px;
  border: 1px solid rgba(107, 255, 0, 0.36);
  border-radius: var(--radius);
  background: rgba(107, 255, 0, 0.06);
}

.article-callout strong {
  display: block;
  margin-bottom: 8px;
  color: var(--hunter-green);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.article-callout p:last-child {
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #090b0c;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 52px;
  padding: 72px 0;
}

.footer-brand img {
  width: 260px;
  height: 94px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 360px;
  color: var(--muted);
}

.footer-col h3 {
  margin-bottom: 20px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  width: fit-content;
  margin: 10px 0;
  color: var(--steel);
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--hunter-green);
}

.footer-bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

@media (max-width: 1060px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav > a:not(.button) {
    font-size: 13px;
  }

  .brand {
    width: 190px;
  }

  .hero-signal {
    display: none;
  }

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

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

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

  .industry-item:nth-child(2) {
    border-right: 0;
  }

  .industry-item {
    border-bottom: 1px solid var(--border);
  }

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

  .footer-col:last-child {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 68px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 32px), var(--page));
  }

  .section {
    padding: 76px 0;
  }

  .section-sm {
    padding: 58px 0;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 39px;
  }

  .brand {
    width: 182px;
  }

  .site-header {
    backdrop-filter: none;
  }

  .nav-toggle {
    display: inline-grid;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    z-index: 101;
    display: none;
    height: calc(100svh - var(--header-height));
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 22px 16px;
    background: var(--carbon);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav > a:not(.button) {
    padding: 18px 10px;
    border-bottom: 1px solid var(--border);
    font-size: 19px;
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    margin-top: 22px;
  }

  .hero {
    height: calc(100svh - var(--header-height) - 70px);
    min-height: 500px;
  }

  .hero::after {
    background: rgba(5, 6, 7, 0.7);
  }

  .hero-content {
    max-width: 650px;
  }

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

  .trust-item:first-child {
    grid-column: 1 / -1;
    padding-left: 18px;
    border-bottom: 1px solid var(--border);
  }

  .trust-item:nth-child(2),
  .trust-item:nth-child(4) {
    border-left: 0;
  }

  .section-heading,
  .cta-layout {
    align-items: flex-start;
    flex-direction: column;
  }

  .loop-tabs {
    grid-template-columns: 1fr;
  }

  .loop-tab-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .loop-tab {
    min-height: 80px;
    justify-content: center;
    padding: 12px;
    border-right: 1px solid var(--border);
    border-bottom: 0;
    font-size: 17px;
  }

  .loop-number {
    display: none;
  }

  .loop-panel {
    padding: 40px 30px;
  }

  .signal-graphic {
    width: 180px;
  }

  .microsoft-layout,
  .content-split,
  .form-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sticky-intro {
    position: static;
  }

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

  .metric {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .metric:last-child {
    border-bottom: 0;
  }

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

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

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step {
    border-bottom: 1px solid var(--border);
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .article-aside {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
  }

  .article-aside .data-label {
    width: 100%;
  }

  .article-aside a {
    border: 0;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-col:last-child {
    grid-column: auto;
  }
}

@media (max-width: 580px) {
  .incident-strip .container {
    min-height: 42px;
    line-height: 1.35;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .lede {
    font-size: 17px;
  }

  .hero {
    height: calc(100svh - var(--header-height) - 54px);
    min-height: 450px;
    padding: 30px 0;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero .lede {
    font-size: 16px;
    line-height: 1.5;
  }

  .hero h1 {
    margin-bottom: 16px;
  }

  .hero .button-row {
    margin-top: 24px;
  }

  .hero .button {
    min-height: 44px;
    width: 100%;
  }

  .trust-strip .container,
  .service-grid,
  .industry-grid,
  .pricing-grid,
  .process-line,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:nth-child(2),
  .trust-item:nth-child(4) {
    min-height: 70px;
    padding-left: 12px;
    border-left: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-item:first-child {
    padding-left: 12px;
  }

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

  .loop-tab:nth-child(2) {
    border-right: 0;
  }

  .loop-tab:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .loop-panel,
  .loop-panel.active {
    grid-template-columns: 1fr;
    padding: 34px 22px;
  }

  .signal-graphic {
    display: none;
  }

  .industry-item,
  .industry-item:nth-child(2) {
    min-height: 210px;
    border-right: 0;
  }

  .industry-item .data-label {
    margin-bottom: 42px;
  }

  .coverage-row {
    grid-template-columns: 28px 1fr;
  }

  .coverage-state {
    grid-column: 2;
    width: fit-content;
  }

  .price-card {
    min-height: 500px;
  }

  .page-hero {
    padding: 74px 0 68px;
  }

  .page-hero::after {
    display: none;
  }

  .form-panel {
    padding: 24px 18px;
  }

  .field.full {
    grid-column: auto;
  }

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

  .process-step,
  .process-step:nth-child(2) {
    min-height: 190px;
    border-right: 0;
  }

  .process-step .step-number {
    margin-bottom: 35px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 56px 0;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }
}
