:root {
  --white: #fffaf0;
  --paper: #fffaf0;
  --ink: #171717;
  --charcoal-brown: #171717;
  --gray-50: #fff4d8;
  --gray-100: #eadfca;
  --gray-200: #d1c5af;
  --gray-500: #625f57;
  --gray-700: #282826;
  --gray-900: var(--ink);
  --blue-gray-dark: #081331;
  --blue-dark: #081331;
  --blue: #0057ff;
  --blue-soft: #d7f2ff;
  --powder-blue: var(--blue-soft);
  --orange: #ff4d00;
  --orange-soft: #ffe000;
  --pink: #ff2a8a;
  --acid: #ccff00;
  --cyan: #00e5ff;
  --shadow: 10px 10px 0 var(--ink);
  --shadow-small: 6px 6px 0 var(--ink);
  --radius-lg: 0;
  --radius-md: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(8, 19, 49, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 19, 49, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
  padding-bottom: 88px;
}

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

p { color: var(--gray-700); line-height: 1.62; }

img { max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 250, 240, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--ink);
  transform: translateY(0);
  transition: transform 180ms ease, padding 180ms ease, box-shadow 180ms ease;
}

.site-header.is-hidden { transform: translateY(-115%); }

.site-header.is-condensed {
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0 5px 0 var(--ink);
}

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

.brand strong { display: block; font-size: 1.05rem; }
.brand small { display: block; color: var(--gray-500); font-size: 0.78rem; margin-top: 2px; }

.logo-placeholder {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  letter-spacing: -0.06em;
  background: var(--blue);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-small);
  object-fit: contain;
}

.site-logo-picture {
  display: inline-flex;
  flex: 0 0 auto;
}

.site-logo {
  width: clamp(125px, 13vw, 210px);
  height: auto;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
  transition: width 180ms ease;
}

.site-header.is-condensed .site-logo { width: clamp(95px, 9vw, 150px); }

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.8vw, 24px);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a {
  padding-bottom: 4px;
  border-bottom: 3px solid transparent;
}

.main-nav a:hover {
  color: var(--blue);
  border-color: var(--orange);
}

.header-actions { display: flex; align-items: center; gap: 10px; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  min-height: 46px;
  padding: 0;
  border: 3px solid var(--ink);
  background: var(--orange-soft);
  cursor: pointer;
  gap: 5px;
  flex-direction: column;
  box-shadow: var(--shadow-small);
}

.menu-toggle span {
  width: 22px;
  height: 3px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 0;
  font-weight: 900;
  border: 3px solid var(--ink);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.button:hover { transform: translate(-2px, -2px); }

.button.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: var(--shadow-small);
}

.button.primary:hover { background: var(--blue-dark); }

.button.orange {
  color: var(--ink);
  background: var(--orange-soft);
  box-shadow: var(--shadow-small);
}

.button.dark-blue {
  color: var(--white);
  background: var(--blue-gray-dark);
  box-shadow: var(--shadow-small);
}

.button.ghost {
  color: var(--ink);
  background: var(--paper);
  box-shadow: none;
}

.button.ghost:hover {
  background: var(--cyan);
  box-shadow: var(--shadow-small);
}

.section,
.hero {
  padding: clamp(70px, 9vw, 116px) clamp(20px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: center;
  min-height: 740px;
  border-bottom: 3px solid var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  background: var(--orange-soft);
  padding: 8px 10px;
  border: 3px solid var(--ink);
  font-weight: 900;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  box-shadow: 4px 4px 0 var(--ink);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.065em;
  line-height: 0.96;
}

h1 {
  max-width: 1040px;
  margin-top: 24px;
  font-size: clamp(3.2rem, 8vw, 7.25rem);
}

h2 { font-size: clamp(2.25rem, 5vw, 5rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.85rem); letter-spacing: -0.04em; }

.lede {
  max-width: 790px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  margin: 26px 0 0;
  color: var(--gray-700);
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  padding: clamp(26px, 4vw, 42px);
}

.insight-panel {
  isolation: isolate;
  background:
    linear-gradient(90deg, transparent 0 69%, var(--pink) 69% 72%, transparent 72%),
    linear-gradient(180deg, var(--cyan) 0 18%, var(--paper) 18% 100%);
}

.insight-panel::before {
  content: '';
  position: absolute;
  inset: auto 0 0 auto;
  width: 42%;
  height: 26%;
  z-index: -1;
  background: var(--orange-soft);
  border-left: 3px solid var(--ink);
  border-top: 3px solid var(--ink);
}

.insight-panel h3 {
  margin-top: 24px;
  max-width: 520px;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
}

.insight-panel p {
  max-width: 560px;
  margin: 18px 0 0;
}

.insight-panel .eyebrow {
  background: var(--orange);
  color: var(--white);
}

.insight-orb { display: none; }

.outcome-list {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 3px solid var(--ink);
}

.outcome-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 3px solid var(--ink);
  background: transparent;
}

.outcome-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue-gray-dark);
  border: 3px solid var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.outcome-item:nth-child(2) .outcome-icon { color: var(--ink); background: var(--orange-soft); }
.outcome-item:nth-child(3) .outcome-icon { background: var(--blue); }
.outcome-item strong { display: block; margin-bottom: 5px; font-size: 1.03rem; }
.outcome-item span { line-height: 1.5; }
.outcome-icon { color: var(--white); }

.signal-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 28px;
  border: 3px solid var(--ink);
  background: var(--ink);
}

.signal-row div {
  padding: 16px;
  background: var(--blue-gray-dark);
  border-right: 3px solid var(--ink);
}

.signal-row div:nth-child(2) { background: var(--orange); }
.signal-row div:nth-child(3) { background: var(--pink); border-right: 0; }

.signal-row strong {
  display: block;
  color: var(--white);
  font-size: 1.8rem;
  letter-spacing: -0.05em;
}

.signal-row span {
  color: rgba(255, 250, 240, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-item,
.card,
.blog-card {
  border-top: 3px solid var(--ink);
  border-bottom: 1px solid var(--gray-200);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background: transparent;
  padding: 24px 0;
}

.card p,
.blog-card p { margin-bottom: 0; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.3fr) minmax(0, 1fr);
  gap: clamp(20px, 5vw, 72px);
  align-items: start;
  max-width: none;
  margin-bottom: 38px;
  padding-bottom: 0;
  border-bottom: 0;
}

.section-heading h2 { max-width: 980px; }
.section-heading p { max-width: 760px; margin: 18px 0 0; font-size: 1.08rem; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px);
}

.card.accent-blue,
.card.accent-orange { background: transparent; }

.card-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: var(--white);
  border: 3px solid var(--ink);
  font-weight: 900;
  margin-bottom: 20px;
  box-shadow: var(--shadow-small);
}

.card:nth-child(even) .card-icon { background: var(--orange-soft); color: var(--ink); }
.card:nth-child(3n) .card-icon { background: var(--pink); color: var(--white); }
.card:last-child .card-icon { background: var(--blue-gray-dark); color: var(--white); }

.split-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 0;
  border: 3px solid var(--ink);
  background: var(--blue-gray-dark);
  color: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-panel h2,
.split-panel h3 { color: var(--white); }
.split-panel p { color: #d7f2ff; font-size: 1.08rem; }

.check-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  border-top: 2px solid rgba(255, 250, 240, 0.55);
}

.check-list li {
  position: relative;
  display: block;
  padding: 14px 0 14px 38px;
  border-bottom: 2px solid rgba(255, 250, 240, 0.55);
  color: var(--gray-700);
}

.check-list li::before {
  content: '■';
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--orange-soft);
  background: transparent;
  width: auto;
  height: auto;
  display: block;
  font-size: 1rem;
  font-weight: 900;
}

.split-panel .check-list li { color: var(--white); }

.page-hero {
  padding: clamp(78px, 10vw, 134px) clamp(20px, 5vw, 72px) clamp(42px, 6vw, 76px);
  background:
    linear-gradient(90deg, var(--cyan) 0 18px, transparent 18px),
    var(--paper);
  border-bottom: 3px solid var(--ink);
}

.page-hero p { max-width: 820px; font-size: 1.22rem; }

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 4vw, 48px);
}

.blog-card time,
.article-meta {
  color: var(--blue);
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-card-image,
.blog-card-image picture,
.article-featured-image {
  display: block;
}

.blog-card-image {
  margin-bottom: 18px;
  border: 3px solid var(--ink);
  background: var(--gray-100);
  overflow: hidden;
}

.blog-card-image img,
.article-featured-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blog-card-image img {
  aspect-ratio: 3 / 2;
}

.article {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(52px, 8vw, 104px) 20px;
}

.article-featured-image {
  margin: clamp(28px, 5vw, 48px) 0;
  border: 3px solid var(--ink);
  background: var(--gray-100);
  box-shadow: var(--shadow-small);
}

.article :global(p),
.article p { font-size: 1.08rem; }
.article :global(h2),
.article h2 { margin-top: 44px; font-size: 2rem; }

.service-area-section { background: transparent; }

.service-area-panel {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.service-area-panel .section-heading { margin-bottom: 24px; }

.service-area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 3px solid var(--ink);
  border-left: 3px solid var(--ink);
}

.service-area-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  color: var(--ink);
  background: var(--paper);
  font-weight: 900;
}

.service-area-grid span:nth-child(3n + 1) { background: var(--cyan); }
.service-area-grid span:nth-child(3n + 2) { background: var(--orange-soft); }
.service-area-grid span:nth-child(3n) { background: var(--pink); color: var(--white); }


.pricing-section { background: transparent; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px);
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 100%;
  padding: 28px;
  border: 3px solid var(--ink);
  border-radius: 0;
  background: var(--paper);
  box-shadow: var(--shadow-small);
  overflow: visible;
}

.pricing-card.featured {
  border-color: var(--ink);
  background: var(--orange-soft);
  box-shadow: var(--shadow);
}

.pricing-card.monitor { background: var(--cyan); }
.pricing-card.complete { background: #e7ddff; }

.pricing-card.monitor,
.pricing-card.secure,
.pricing-card.complete { padding-top: 28px; }

.pricing-card.monitor .pricing-header,
.pricing-card.secure .pricing-header,
.pricing-card.complete .pricing-header {
  position: relative;
  z-index: 1;
}

.pricing-card::before { content: none; }

.pricing-header {
  display: grid;
  gap: 14px;
  padding-top: 0;
}

.pricing-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 0;
  color: var(--white);
  background: var(--paper);
  border: 3px solid var(--ink);
  font-weight: 900;
  font-size: 1.12rem;
  letter-spacing: -0.04em;
  box-shadow: var(--shadow-small);
  overflow: hidden;
}

.pricing-icon img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  display: block;
}

.pricing-card.monitor .pricing-icon,
.pricing-card.secure .pricing-icon,
.pricing-card.complete .pricing-icon {
  position: static;
  width: 70px;
  height: 70px;
  transform: none;
  background: var(--paper);
  box-shadow: var(--shadow-small);
  overflow: hidden;
  pointer-events: none;
}

.pricing-card.monitor .pricing-icon img,
.pricing-card.secure .pricing-icon img,
.pricing-card.complete .pricing-icon img {
  width: 78%;
  height: 78%;
}

.pricing-header h3 {
  font-size: clamp(2.45rem, 4.4vw, 4.25rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  color: var(--ink);
}

.pricing-description {
  min-height: 3.2em;
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.48;
}

.pricing-label {
  width: max-content;
  color: var(--ink);
  background: var(--orange-soft);
  padding: 7px 10px;
  border: 3px solid var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card.complete .pricing-label { color: var(--ink); background: var(--cyan); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  padding: 16px 0;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.pricing-header strong {
  color: var(--ink);
  font-size: clamp(2.7rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.07em;
}

.pricing-header span { color: var(--gray-700); font-weight: 800; }

.pricing-features {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
  border-top: 2px solid var(--ink);
}

.pricing-features li {
  position: relative;
  display: block;
  min-height: 22px;
  padding: 12px 0 12px 30px;
  border-bottom: 2px solid var(--ink);
  color: var(--ink);
  line-height: 1.45;
  font-weight: 650;
}

.pricing-features li::before {
  content: '■';
  position: absolute;
  top: 12px;
  left: 0;
  width: auto;
  height: auto;
  display: block;
  color: var(--blue);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 900;
}

.pricing-card.secure .pricing-features li::before { color: var(--orange); }
.pricing-card.complete .pricing-features li::before { color: var(--blue-gray-dark); }

.pricing-features li span { display: inline; }

.text-blue { color: var(--blue); font-weight: 900; }
.text-orange { color: var(--orange); font-weight: 900; }

.pricing-card .button { width: 100%; }
.pricing-note { margin: 22px 0 0; font-size: 0.94rem; }

.pricing-hero {
  background:
    linear-gradient(90deg, var(--pink) 0 18px, transparent 18px),
    var(--blue-gray-dark);
}

.pricing-hero h1,
.pricing-hero p { color: var(--white); }

.pricing-hero .eyebrow {
  color: var(--ink);
  background: var(--orange-soft);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  padding: 48px clamp(20px, 5vw, 72px) 120px;
  border-top: 3px solid var(--ink);
  background: var(--paper);
}

.footer-links {
  display: grid;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
}

.footer-location,
.footer-legal {
  margin: 10px 0 0;
  color: var(--gray-500);
  font-size: 0.92rem;
  font-weight: 800;
}

.footer-legal {
  color: var(--gray-700);
}

.remote-support-popup {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 30;
  width: min(920px, calc(100% - 28px));
  transform: translate(-50%, calc(100% + 42px));
  opacity: 0;
  pointer-events: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border: 3px solid var(--ink);
  border-radius: 0;
  color: var(--white);
  background: var(--blue-gray-dark);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, opacity 220ms ease;
}

.remote-support-popup.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.remote-support-popup div { display: grid; gap: 2px; }
.remote-support-popup span { color: #d7f2ff; }

.remote-support-popup a {
  min-width: max-content;
  color: var(--ink);
  background: var(--orange-soft);
  border: 3px solid var(--ink);
  border-radius: 0;
  padding: 12px 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.remote-support-close {
  width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  border: 3px solid var(--white);
  border-radius: 0;
  color: var(--white);
  background: transparent;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.remote-support-close:hover { background: rgba(255, 255, 255, 0.18); }

@media (max-width: 980px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: 2;
    margin-left: auto;
  }

  .main-nav {
    order: 4;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 4px;
    padding: 0;
    border: 3px solid var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow-small);
  }

  .main-nav.is-open { display: grid; }

  .main-nav a {
    padding: 14px 12px;
    border-bottom: 2px solid var(--ink);
  }

  .main-nav a:hover { background: var(--cyan); }

  .header-actions { order: 3; }
  .hero,
  .split-panel,
  .grid-2 { grid-template-columns: 1fr; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .grid-3, .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  body { padding-bottom: 118px; }
  .header-actions { order: 5; width: 100%; }
  .header-actions .button { flex: 1; }
  .hero { min-height: auto; }
  .grid-3,
  .pricing-grid,
  .kpi-row,
  .signal-row { grid-template-columns: 1fr; }
  .signal-row div { border-right: 0; border-bottom: 3px solid var(--ink); }
  .signal-row div:last-child { border-bottom: 0; }
  .remote-support-popup { align-items: stretch; grid-template-columns: auto 1fr; }
  .remote-support-popup a { grid-column: 1 / -1; text-align: center; }
}

/* Dark Blade Runner override - no pop art */
:root {
  --white: #eef7ff;
  --paper: #0b1220;
  --ink: #eef7ff;
  --charcoal-brown: #eef7ff;
  --gray-50: #121c2f;
  --gray-100: #1a2740;
  --gray-200: #2d4162;
  --gray-500: #8fa4bd;
  --gray-700: #c5d5e6;
  --gray-900: #f4fbff;
  --blue-gray-dark: #070b14;
  --blue-dark: #0a1f3f;
  --blue: #18a8ff;
  --blue-soft: #0f2741;
  --powder-blue: var(--blue-soft);
  --orange: #ff6a1a;
  --orange-soft: #311b12;
  --pink: #12314f;
  --acid: #42f5ff;
  --cyan: #42f5ff;
  --edge: rgba(82, 185, 255, 0.34);
  --edge-strong: rgba(66, 245, 255, 0.78);
  --shadow: 10px 10px 0 rgba(255, 106, 26, 0.72);
  --shadow-small: 5px 5px 0 rgba(255, 106, 26, 0.58);
  --glow-blue: 0 0 24px rgba(24, 168, 255, 0.22), 0 0 80px rgba(24, 168, 255, 0.12);
  --glow-orange: 0 0 28px rgba(255, 106, 26, 0.24), 0 0 90px rgba(255, 106, 26, 0.10);
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 5%, rgba(24, 168, 255, 0.18), transparent 26rem),
    radial-gradient(circle at 85% 16%, rgba(255, 106, 26, 0.13), transparent 24rem),
    linear-gradient(90deg, rgba(66, 245, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(66, 245, 255, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, #070b14 0%, #0b1220 48%, #080d17 100%);
  background-size: auto, auto, 76px 76px, 76px 76px, auto;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: repeating-linear-gradient(180deg, rgba(238, 247, 255, 0.025) 0 1px, transparent 1px 7px);
}

p { color: var(--gray-700); }
.site-header { background: rgba(7, 11, 20, 0.88); border-bottom: 1px solid var(--edge); box-shadow: 0 1px 0 rgba(255, 106, 26, 0.28); backdrop-filter: blur(16px); }
.site-header.is-condensed { box-shadow: 0 12px 36px rgba(0, 0, 0, 0.42), 0 1px 0 rgba(255, 106, 26, 0.45); }
.site-logo { filter: drop-shadow(0 0 12px rgba(24, 168, 255, 0.24)); }
.logo-placeholder { background: var(--blue-dark); border: 1px solid var(--edge-strong); box-shadow: var(--glow-blue); }
.main-nav { color: var(--gray-700); }
.main-nav a { border-bottom: 1px solid transparent; }
.main-nav a:hover { color: var(--cyan); border-color: var(--orange); text-shadow: 0 0 14px rgba(66, 245, 255, 0.6); }
.menu-toggle { border: 1px solid var(--edge-strong); background: #0d1829; box-shadow: var(--shadow-small); }
.menu-toggle span { height: 2px; background: var(--cyan); }
.button, button { border: 1px solid var(--edge-strong); letter-spacing: 0.04em; }
.button.primary { color: #06101f; background: linear-gradient(135deg, var(--cyan), var(--blue)); border-color: rgba(66, 245, 255, 0.95); box-shadow: var(--shadow-small), var(--glow-blue); }
.button.primary:hover { background: linear-gradient(135deg, #8ffbff, var(--blue)); }
.button.orange { color: #130a06; background: linear-gradient(135deg, #ffb067, var(--orange)); border-color: rgba(255, 106, 26, 0.95); box-shadow: var(--shadow-small), var(--glow-orange); }
.button.dark-blue { color: var(--white); background: linear-gradient(135deg, #12223a, #070b14); border-color: var(--edge); box-shadow: var(--shadow-small); }
.button.ghost { color: var(--gray-700); background: rgba(7, 11, 20, 0.38); border-color: rgba(143, 164, 189, 0.34); }
.button.ghost:hover { color: var(--cyan); background: rgba(24, 168, 255, 0.12); border-color: var(--edge-strong); box-shadow: var(--shadow-small); }
.hero { position: relative; border-bottom: 1px solid var(--edge); }
.hero::after { content: ''; position: absolute; left: clamp(20px, 5vw, 72px); right: clamp(20px, 5vw, 72px); bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--orange), var(--cyan), transparent); }
.eyebrow { color: var(--cyan); background: rgba(24, 168, 255, 0.09); border: 1px solid var(--edge); box-shadow: 4px 4px 0 rgba(255, 106, 26, 0.58); }
h1 { text-shadow: 0 0 28px rgba(24, 168, 255, 0.12); }
.lede { color: var(--gray-700); }
.hero-card { background: linear-gradient(180deg, rgba(16, 31, 52, 0.94), rgba(8, 13, 23, 0.94)); border: 1px solid var(--edge); box-shadow: var(--shadow), var(--glow-blue); }
.insight-panel { background: linear-gradient(90deg, transparent 0 70%, rgba(255, 106, 26, 0.16) 70% 71%, transparent 71%), linear-gradient(180deg, rgba(24, 168, 255, 0.20) 0 17%, rgba(16, 31, 52, 0.94) 17% 100%); }
.insight-panel::before { background: linear-gradient(135deg, rgba(255, 106, 26, 0.16), rgba(24, 168, 255, 0.08)); border-left: 1px solid rgba(255, 106, 26, 0.38); border-top: 1px solid rgba(255, 106, 26, 0.38); }
.insight-panel .eyebrow { background: rgba(255, 106, 26, 0.12); color: #ffb067; border-color: rgba(255, 106, 26, 0.45); }
.outcome-list { border-top: 1px solid var(--edge); }
.outcome-item { border-bottom: 1px solid rgba(82, 185, 255, 0.24); }
.outcome-icon { color: var(--cyan); background: rgba(7, 11, 20, 0.78); border: 1px solid var(--edge); box-shadow: inset 0 0 18px rgba(24, 168, 255, 0.14); }
.outcome-item:nth-child(2) .outcome-icon { color: #ffb067; background: rgba(7, 11, 20, 0.78); border-color: rgba(255, 106, 26, 0.48); }
.outcome-item:nth-child(3) .outcome-icon { color: var(--white); background: rgba(24, 168, 255, 0.2); }
.outcome-item span { color: var(--gray-700); }
.signal-row { border: 1px solid var(--edge); background: rgba(7, 11, 20, 0.76); }
.signal-row div { background: rgba(24, 168, 255, 0.09); border-right: 1px solid var(--edge); }
.signal-row div:nth-child(2) { background: rgba(255, 106, 26, 0.12); }
.signal-row div:nth-child(3) { background: rgba(24, 168, 255, 0.14); }
.signal-row span { color: var(--gray-500); }
.status-item, .card, .blog-card { border-top: 1px solid var(--edge); border-bottom: 1px solid rgba(82, 185, 255, 0.16); }
.section-heading { border-bottom: 1px solid var(--edge); }
.card-icon { background: rgba(24, 168, 255, 0.14); color: var(--cyan); border: 1px solid var(--edge); box-shadow: var(--shadow-small), inset 0 0 20px rgba(24, 168, 255, 0.12); }
.card:nth-child(even) .card-icon { background: rgba(255, 106, 26, 0.12); color: #ffb067; border-color: rgba(255, 106, 26, 0.4); }
.card:nth-child(3n) .card-icon { background: rgba(24, 168, 255, 0.18); color: var(--white); }
.card:last-child .card-icon { background: rgba(7, 11, 20, 0.9); color: var(--cyan); }
.split-panel { border: 1px solid var(--edge); background: linear-gradient(90deg, rgba(255, 106, 26, 0.13) 0 12px, transparent 12px), linear-gradient(135deg, rgba(16, 31, 52, 0.98), rgba(7, 11, 20, 0.98)); box-shadow: var(--shadow), var(--glow-orange); }
.split-panel p { color: var(--gray-700); }
.check-list { border-top: 1px solid rgba(82, 185, 255, 0.32); }
.check-list li { border-bottom: 1px solid rgba(82, 185, 255, 0.32); }
.check-list li::before { content: '▰'; color: var(--orange); }
.page-hero { background: linear-gradient(90deg, rgba(24, 168, 255, 0.2) 0 10px, transparent 10px), linear-gradient(135deg, rgba(24, 168, 255, 0.11), rgba(255, 106, 26, 0.055) 45%, transparent 70%); border-bottom: 1px solid var(--edge); }
.blog-card time, .article-meta { color: var(--orange); }
.service-area-grid { border-top: 1px solid var(--edge); border-left: 1px solid var(--edge); }
.service-area-grid span { border-right: 1px solid var(--edge); border-bottom: 1px solid var(--edge); color: var(--gray-700); background: rgba(16, 31, 52, 0.68); }
.service-area-grid span:nth-child(3n + 1) { background: rgba(24, 168, 255, 0.12); color: var(--cyan); }
.service-area-grid span:nth-child(3n + 2) { background: rgba(255, 106, 26, 0.10); color: #ffb067; }
.service-area-grid span:nth-child(3n) { background: rgba(7, 11, 20, 0.72); color: var(--white); }
.pricing-card { border: 1px solid var(--edge); background: linear-gradient(180deg, rgba(16, 31, 52, 0.94), rgba(7, 11, 20, 0.94)); box-shadow: var(--shadow-small); }
.pricing-card.featured { border-color: rgba(255, 106, 26, 0.72); background: linear-gradient(180deg, rgba(55, 27, 14, 0.92), rgba(12, 16, 26, 0.96)); box-shadow: var(--shadow), var(--glow-orange); }
.pricing-card.monitor { background: linear-gradient(180deg, rgba(13, 42, 65, 0.94), rgba(7, 11, 20, 0.96)); }
.pricing-card.complete { background: linear-gradient(180deg, rgba(16, 31, 52, 0.96), rgba(7, 11, 20, 0.98)); }
.pricing-icon, .pricing-card.monitor .pricing-icon, .pricing-card.secure .pricing-icon, .pricing-card.complete .pricing-icon { background: rgba(7, 11, 20, 0.78); border: 1px solid var(--edge); box-shadow: var(--shadow-small), inset 0 0 22px rgba(24, 168, 255, 0.11); }
.pricing-icon img { filter: drop-shadow(0 0 10px rgba(66, 245, 255, 0.34)); }
.pricing-header h3 { color: var(--white); }
.pricing-description { color: var(--gray-700); }
.pricing-price { border-top: 1px solid var(--edge); border-bottom: 1px solid var(--edge); }
.pricing-header strong { color: var(--cyan); text-shadow: 0 0 18px rgba(66, 245, 255, 0.24); }
.pricing-header span { color: var(--gray-500); }
.pricing-features { border-top: 1px solid rgba(82, 185, 255, 0.3); }
.pricing-features li { border-bottom: 1px solid rgba(82, 185, 255, 0.22); color: var(--gray-700); }
.pricing-features li::before { content: '▰'; color: var(--cyan); }
.pricing-card.secure .pricing-features li::before { color: var(--orange); }
.pricing-card.complete .pricing-features li::before { color: var(--blue); }
.text-blue { color: var(--cyan); }
.text-orange { color: var(--orange); }
.pricing-hero { background: linear-gradient(90deg, rgba(255, 106, 26, 0.26) 0 10px, transparent 10px), linear-gradient(135deg, rgba(16, 31, 52, 0.92), rgba(7, 11, 20, 0.98)); }
.pricing-hero .eyebrow { color: #ffb067; background: rgba(255, 106, 26, 0.12); border-color: rgba(255, 106, 26, 0.45); }
.site-footer { border-top: 1px solid var(--edge); background: rgba(7, 11, 20, 0.72); }
.footer-links { color: var(--gray-700); }
.remote-support-popup { border: 1px solid var(--edge-strong); background: rgba(7, 11, 20, 0.95); box-shadow: var(--shadow), var(--glow-blue); }
.remote-support-popup span { color: var(--gray-500); }
.remote-support-popup a { color: #06101f; background: linear-gradient(135deg, var(--cyan), var(--blue)); border: 1px solid var(--edge-strong); }
.remote-support-close { border: 1px solid var(--edge); }
.remote-support-close:hover { background: rgba(255, 255, 255, 0.08); }
@media (max-width: 980px) {
  .main-nav { border: 1px solid var(--edge); background: rgba(7, 11, 20, 0.95); box-shadow: var(--shadow-small); }
  .main-nav a { border-bottom: 1px solid rgba(82, 185, 255, 0.24); }
  .main-nav a:hover { background: rgba(24, 168, 255, 0.12); }
}
@media (max-width: 640px) {
  .signal-row div { border-bottom: 1px solid var(--edge); }
}

/* Editorial layout refinement: flatter magazine rhythm */
.section,
.hero {
  padding-left: clamp(22px, 6vw, 96px);
  padding-right: clamp(22px, 6vw, 96px);
}

.hero {
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
  align-items: end;
  min-height: 680px;
  gap: clamp(34px, 5vw, 72px);
}

.hero > div:first-child {
  align-self: center;
  padding-top: clamp(28px, 5vw, 70px);
}

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

.hero-card.insight-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 520px;
  border-width: 0 0 0 1px;
  border-color: var(--edge);
  box-shadow: none;
  padding-left: clamp(24px, 4vw, 48px);
  background:
    linear-gradient(90deg, rgba(255, 106, 26, 0.26) 0 4px, transparent 4px),
    linear-gradient(180deg, rgba(16, 31, 52, 0.92), rgba(16, 31, 52, 0.92));
}

.insight-panel::before { display: none; }

.outcome-list {
  margin-top: 34px;
  border-top: 1px solid var(--edge-strong);
}

.outcome-item {
  grid-template-columns: 46px 1fr;
  padding: 20px 0;
}

.outcome-icon {
  width: auto;
  height: auto;
  place-items: start;
  border: 0;
  box-shadow: none;
  background: transparent;
  color: var(--orange);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

.signal-row {
  margin-top: 34px;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  background: transparent;
}

.signal-row div {
  padding: 16px 18px 14px 0;
  background: transparent !important;
}

.section-heading {
  grid-template-columns: minmax(130px, 0.18fr) minmax(0, 0.82fr);
  gap: clamp(24px, 6vw, 96px);
  margin-bottom: clamp(28px, 4vw, 56px);
}

.section-heading > .eyebrow {
  width: 100%;
  justify-content: flex-start;
  box-shadow: none;
  background: transparent;
  border-width: 1px 0 0;
  padding: 12px 0 0;
}

.section-heading p {
  max-width: 900px;
}

.grid-3 {
  gap: 0;
  border-top: 1px solid var(--edge);
  border-left: 1px solid var(--edge);
}

.grid-3 .card,
.grid-3 .blog-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  column-gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  border-top: 0;
  border-left: 0;
  border-right: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
  background: rgba(7, 11, 20, 0.18);
}

.grid-3 .card-icon {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  margin: 2px 0 0;
  box-shadow: none;
}

.grid-3 .card h3,
.grid-3 .blog-card h3 {
  margin-top: 0;
}

.grid-3 .card p,
.grid-3 .blog-card p {
  margin-top: 10px;
}
.service-area-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-area-grid span {
  justify-content: flex-start;
  min-height: 48px;
}

.split-panel {
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
}

.partners-section {
  padding-top: clamp(48px, 7vw, 86px);
  padding-bottom: clamp(48px, 7vw, 86px);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--edge);
  border-left: 1px solid var(--edge);
  background: rgba(7, 11, 20, 0.18);
}

.partner-item {
  min-height: 132px;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 30px);
  border-right: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
  background: rgba(16, 31, 52, 0.36);
}

.partner-item img {
  max-width: min(213px, 96%);
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(1.08) contrast(0.98);
  opacity: 1;
}

.partner-item:hover img {
  filter: brightness(1.12) contrast(1);
  opacity: 1;
}


@media (max-width: 980px) {
  .hero,
  .split-panel { grid-template-columns: 1fr; }
  .hero-card.insight-panel {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid var(--edge);
    padding-left: 0;
    padding-top: 28px;
  }
  .grid-3 { grid-template-columns: 1fr; }
  .service-area-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partner-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}


@media (max-width: 640px) {
  .section-heading,
  .grid-3 .card,
  .grid-3 .blog-card { grid-template-columns: 1fr; }
  .grid-3 .card-icon { grid-row: auto; margin-bottom: 14px; }
  .service-area-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
  .partner-item { min-height: 108px; }
}

/* Contact capture */
.lead-capture-section {
  padding-top: clamp(42px, 6vw, 78px);
  padding-bottom: clamp(42px, 6vw, 78px);
}

.contact-form {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--edge-strong);
  background:
    linear-gradient(90deg, rgba(255, 106, 26, 0.24) 0 10px, transparent 10px),
    linear-gradient(135deg, rgba(16, 31, 52, 0.96), rgba(7, 11, 20, 0.98));
  box-shadow: var(--shadow), var(--glow-blue);
}

.contact-form-compact {
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr) auto;
  align-items: start;
}

.contact-form-compact .button {
  align-self: end;
}

.contact-form-copy h2 {
  margin-top: 18px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.contact-form-copy p {
  max-width: 720px;
  margin: 16px 0 0;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--gray-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--edge);
  border-radius: 0;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(7, 11, 20, 0.74);
  font: inherit;
  box-shadow: inset 0 0 18px rgba(24, 168, 255, 0.08);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
  border-color: var(--edge-strong);
}

.form-field-wide {
  grid-column: 1 / -1;
}

.contact-form .button {
  min-width: 190px;
  cursor: pointer;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(255, 106, 26, 0.28) 0 10px, transparent 10px),
    linear-gradient(135deg, rgba(24, 168, 255, 0.14), rgba(255, 106, 26, 0.08) 44%, rgba(7, 11, 20, 0.18));
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 40px);
  border-left: 1px solid var(--edge-strong);
  background: rgba(7, 11, 20, 0.26);
}

.contact-details h2 {
  font-size: clamp(2.3rem, 4.6vw, 4.2rem);
}

.contact-methods {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--edge);
}

.contact-method {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid var(--edge);
}

.contact-method span {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-method strong {
  color: var(--white);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  overflow-wrap: anywhere;
}

.contact-method:hover strong {
  color: var(--cyan);
}

@media (max-width: 980px) {
  .contact-form-compact,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .contact-form .button {
    width: 100%;
  }
}

/* Homepage pricing CTA: full-width editorial section */
.pricing-teaser.section-alt {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: clamp(22px, 6vw, 96px);
  padding-right: clamp(22px, 6vw, 96px);
  border-top: 1px solid rgba(82, 185, 255, 0.24);
  border-bottom: 1px solid rgba(82, 185, 255, 0.24);
  background: rgba(16, 31, 52, 0.34);
}

.pricing-teaser.section-alt::after {
  content: '';
  position: absolute;
  left: clamp(22px, 6vw, 96px);
  right: clamp(22px, 6vw, 96px);
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--cyan), transparent);
}

.pricing-editorial {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: stretch;
}

.pricing-editorial-copy {
  max-width: 980px;
  align-self: center;
}

.pricing-editorial-copy h2 {
  margin-top: 24px;
  max-width: 980px;
  font-size: clamp(2.6rem, 6vw, 6.2rem);
}

.pricing-editorial-copy p {
  max-width: 820px;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.pricing-strip {
  display: grid;
  grid-template-columns: 1fr;
  align-self: stretch;
  padding-left: clamp(20px, 3vw, 34px);
  border-left: 1px solid rgba(82, 185, 255, 0.24);
  background: transparent;
}

.pricing-strip-item {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-areas:
    "number name"
    "number meta";
  gap: 8px 18px;
  align-content: center;
  align-items: end;
  padding: 22px 0 22px 22px;
  border-bottom: 1px solid rgba(82, 185, 255, 0.24);
  background: transparent;
}

.pricing-strip-item:first-child {
  border-top: 1px solid rgba(82, 185, 255, 0.24);
}

.pricing-strip-item span {
  grid-area: number;
  align-self: start;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pricing-strip-item strong {
  grid-area: name;
  color: var(--white);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.pricing-strip-item small {
  grid-area: meta;
  max-width: 310px;
  color: var(--gray-500);
  font-weight: 800;
}

.pricing-strip-item.featured strong,
.pricing-strip-item:hover strong {
  color: var(--cyan);
  text-shadow: 0 0 14px rgba(66, 245, 255, 0.22);
}

.pricing-strip-item.featured span {
  color: var(--cyan);
}

@media (max-width: 980px) {
  .pricing-editorial {
    grid-template-columns: 1fr;
  }

  .pricing-strip {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(82, 185, 255, 0.24);
  }

  .pricing-strip-item:first-child {
    border-top: 0;
  }
}

@media (max-width: 640px) {
  .pricing-strip {
    grid-template-columns: 1fr;
  }
}

/* Service detail pages */
.breadcrumb {
  display: inline-flex;
  width: max-content;
  margin-bottom: 18px;
  color: var(--cyan);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 2px solid currentColor;
}

.breadcrumb:hover { color: var(--orange); }

.service-detail-hero {
  position: relative;
  overflow: hidden;
}

.service-detail-hero::after {
  content: '';
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--cyan), transparent);
}

.service-card-link {
  display: block;
  height: 100%;
  color: inherit;
}

.service-card-link:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow), 0 0 26px rgba(0, 229, 255, 0.18);
}

.service-card-link:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.card-link-label {
  display: inline-flex;
  margin-top: 18px;
  color: var(--orange);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
}

.service-problem-panel,
.service-outcomes-panel {
  border: 1px solid var(--edge-strong);
  background: linear-gradient(135deg, rgba(16, 31, 52, 0.96), rgba(7, 11, 20, 0.98));
  box-shadow: var(--shadow), var(--glow-blue);
  padding: clamp(28px, 5vw, 56px);
}

.service-problem-panel {
  border-left: 10px solid var(--orange);
}

.service-problem-panel h2 {
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 5.2rem);
}

.service-problem-panel p,
.service-outcomes-panel p {
  color: var(--gray-100);
}

.outcome-stack {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(82, 185, 255, 0.24);
}

.service-outcome {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(82, 185, 255, 0.24);
}

.service-outcome span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.service-outcome strong {
  color: var(--white);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.08;
}

.service-feature-grid {
  align-items: stretch;
}

.service-feature-card h3 {
  font-size: clamp(1.05rem, 1.55vw, 1.34rem);
  line-height: 1.2;
}

.service-fit-section {
  background: rgba(0, 87, 255, 0.05);
  border-top: 1px solid rgba(8, 19, 49, 0.12);
  border-bottom: 1px solid rgba(8, 19, 49, 0.12);
}

.service-fit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.service-fit-list span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--orange-soft);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-small);
  font-weight: 900;
}

.related-services-section {
  padding-top: clamp(50px, 7vw, 88px);
}

@media (max-width: 980px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
}

/* Style drift correction: reuse homepage section/card/CTA language across pages */
.page-hero {
  position: relative;
  padding: clamp(88px, 10vw, 132px) clamp(20px, 5vw, 72px) clamp(58px, 7vw, 88px);
  background:
    linear-gradient(90deg, rgba(8, 19, 49, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 19, 49, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
  border-bottom: 3px solid var(--ink);
}

.page-hero::after,
.service-detail-hero::after {
  content: '';
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--cyan), transparent);
}

.page-hero h1 { max-width: 1100px; }
.page-hero p { max-width: 860px; font-size: clamp(1.05rem, 1.8vw, 1.22rem); }

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-trigger::after {
  content: '▾';
  margin-left: 6px;
  color: var(--orange);
  font-size: 0.76em;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 40;
  display: grid;
  min-width: 320px;
  padding: 10px;
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-small);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 140ms ease, transform 140ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--gray-200);
  color: var(--ink);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--ink);
  background: var(--cyan);
  border-color: var(--ink);
}

.nav-dropdown-menu a:last-child { border-bottom: 0; }
.nav-dropdown-menu small {
  color: var(--gray-500);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.nav-dropdown-all {
  background: var(--orange-soft);
  font-weight: 900;
}

.service-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.service-card-link:hover {
  transform: translate(-2px, -2px);
  box-shadow: none;
}

.card-link-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 38px;
  margin-top: auto;
  margin-left: auto;
  padding: 0 14px;
  color: var(--ink);
  background: var(--cyan);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-small);
  font-weight: 900;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card-link:hover .card-link-label,
.service-card-link:focus-visible .card-link-label {
  background: var(--orange-soft);
}

.service-detail-hero {
  position: relative;
  overflow: hidden;
}

.service-detail-hero .hero-card {
  align-self: stretch;
}

.service-feature-card h3 {
  font-size: clamp(1.05rem, 1.55vw, 1.34rem);
  line-height: 1.2;
}

.service-fit-list {
  display: grid;
}

.service-fit-list span {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 14px 16px;
  border: 3px solid var(--ink);
  box-shadow: none;
}

.service-fit-list span:nth-child(3n + 1) { background: var(--cyan); color: var(--ink); }
.service-fit-list span:nth-child(3n + 2) { background: var(--orange-soft); color: var(--ink); }
.service-fit-list span:nth-child(3n) { background: var(--pink); color: var(--white); }

.service-problem-panel,
.service-outcomes-panel {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

@media (max-width: 1100px) {
  .nav-dropdown-menu {
    left: auto;
    right: 0;
    transform: translate(0, 8px);
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: translate(0, 0);
  }
}

@media (max-width: 760px) {
  .nav-dropdown {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .nav-dropdown-menu {
    position: static;
    display: grid;
    min-width: 0;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    border-width: 2px;
  }

  .nav-dropdown-menu a {
    padding: 10px 12px;
    font-size: 0.72rem;
  }

  .card-link-label {
    margin-left: 0;
    width: 100%;
  }
}

/* User correction: service card CTAs use approved homepage button styles; dropdown has no hover gap */
.nav-dropdown {
  padding: 12px 0;
  margin: -12px 0;
}

.nav-dropdown-menu {
  top: 100%;
  transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: block;
}

.card-link-label.button.ghost {
  width: max-content;
  min-height: 46px;
  margin-top: auto;
  margin-left: auto;
  padding: 0 18px;
  color: var(--ink);
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: none;
}

.service-card-link:hover .card-link-label.button.ghost,
.service-card-link:focus-visible .card-link-label.button.ghost {
  color: var(--ink);
  background: var(--cyan);
  box-shadow: var(--shadow-small);
}

@media (max-width: 760px) {
  .nav-dropdown {
    padding: 0;
    margin: 0;
  }

  .card-link-label.button.ghost {
    width: 100%;
    margin-left: 0;
  }
}

/* Service editorial correction: flat pages, one CTA color combo, no cyan blocks */
.service-page-hero {
  min-height: 0;
}


.service-card-link {
  box-shadow: none;
}

.service-card-link:hover {
  transform: none;
  box-shadow: none;
}

.card-link-label.button.orange {
  width: max-content;
  min-height: 46px;
  margin-top: auto;
  margin-left: auto;
  padding: 0 18px;
  letter-spacing: 0.03em;
}

.service-editorial-section .card {
  background: transparent;
  box-shadow: none;
}

.service-feature-card h3 {
  max-width: 620px;
}

.service-fit-editorial {
  background: transparent;
  border-top: 0;
  border-bottom: 0;
}

.service-fit-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border-top: 3px solid var(--ink);
}

.service-fit-list span,
.service-fit-list span:nth-child(3n + 1),
.service-fit-list span:nth-child(3n + 2),
.service-fit-list span:nth-child(3n) {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 60px;
  padding: 16px 18px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: none;
  font-weight: 900;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--ink);
  background: var(--orange-soft);
  border-color: var(--ink);
}

@media (max-width: 760px) {
  .card-link-label.button.orange {
    width: 100%;
    margin-left: 0;
  }
}

/* Service user correction: ghost service links, flatter headers, cyan underline dropdown */
.service-editorial-section .section-heading {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: clamp(18px, 3vw, 30px);
}

.service-editorial-section {
  padding-top: clamp(52px, 7vw, 86px);
  padding-bottom: clamp(52px, 7vw, 86px);
}

.service-editorial-section + .service-editorial-section {
  border-top: 1px solid var(--gray-200);
}

.service-editorial-section .card,
.service-card-link.card {
  border-top: 3px solid var(--ink);
  border-bottom: 1px solid var(--gray-200);
  background: transparent;
  box-shadow: none;
}


.card-link-label.button.ghost,
.service-card-link .button.ghost.card-link-label {
  width: max-content;
  min-height: 46px;
  margin-top: auto;
  margin-left: auto;
  padding: 0 18px;
  color: var(--ink);
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: none;
  letter-spacing: 0.03em;
}

.service-card-link:hover .button.ghost.card-link-label,
.service-card-link:focus-visible .button.ghost.card-link-label {
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow-small);
}

.nav-dropdown-trigger:hover,
.nav-dropdown:focus-within .nav-dropdown-trigger {
  color: var(--cyan);
  border-color: var(--orange);
  text-shadow: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--cyan);
  background: transparent;
  border-bottom-color: var(--orange);
  text-shadow: none;
}

.nav-dropdown-all:hover,
.nav-dropdown-all:focus-visible {
  background: transparent;
}

@media (max-width: 760px) {
  .card-link-label.button.ghost,
  .service-card-link .button.ghost.card-link-label {
    width: 100%;
    margin-left: 0;
  }
}

.nav-dropdown-all {
  background: transparent;
}

/* Service magazine correction: fewer dividers, tighter editorial blocks */
.service-editorial-section {
  padding-top: clamp(54px, 7vw, 88px);
  padding-bottom: clamp(54px, 7vw, 88px);
}

.service-editorial-section + .service-editorial-section {
  border-top: 0;
}

.service-editorial-section .section-heading {
  grid-template-columns: minmax(130px, 0.22fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: start;
  margin-bottom: clamp(24px, 4vw, 42px);
  padding-bottom: 0;
  border-bottom: 0;
}

.service-editorial-section .section-heading h2 {
  max-width: 1050px;
}

.service-editorial-section .section-heading p {
  max-width: 880px;
}

.service-editorial-section .grid-2,
.service-editorial-section .grid-3 {
  gap: clamp(28px, 4vw, 54px);
}

.service-editorial-section .card,
.service-editorial-section .service-card-link.card {
  padding: 0;
  border-top: 0;
  border-bottom: 0;
  background: transparent;
  box-shadow: none;
}

.service-editorial-grid .card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  column-gap: 22px;
  align-items: start;
}

.service-feature-grid {
  counter-reset: service-feature;
}

.service-feature-card {
  counter-increment: service-feature;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
}

.service-feature-card .card-icon {
  width: 48px;
  height: 48px;
  font-size: 0.72rem;
  box-shadow: none;
}

.service-feature-card h3 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(1.08rem, 1.5vw, 1.34rem);
}

.service-fit-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(18px, 3vw, 34px);
  border-top: 0;
}

.service-fit-list span,
.service-fit-list span:nth-child(3n + 1),
.service-fit-list span:nth-child(3n + 2),
.service-fit-list span:nth-child(3n) {
  min-height: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  box-shadow: none;
  line-height: 1.35;
}

.service-fit-list span::before {
  content: '—';
  margin-right: 10px;
  color: var(--orange);
  font-weight: 900;
}

.related-services-section .service-card-link {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  row-gap: 12px;
}

.related-services-section .service-card-link p,
.service-editorial-section .card p {
  max-width: 680px;
}

.related-services-section .card-link-label {
  margin-top: 12px;
}

@media (max-width: 760px) {
  .service-editorial-section .section-heading,
  .service-editorial-grid .card,
  .service-feature-card {
    grid-template-columns: 1fr;
  }

  .service-editorial-grid .card,
  .service-feature-card {
    row-gap: 12px;
  }
}

/* Service card grid fix: keep paragraphs with text column, not under icons */
.service-editorial-grid .card .card-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.service-editorial-grid .card h3,
.service-editorial-grid .card p {
  grid-column: 2;
}

.service-editorial-grid .card h3 {
  margin-top: 0;
}

.service-editorial-grid .card p {
  margin-top: 10px;
  max-width: 760px;
}

@media (max-width: 760px) {
  .service-editorial-grid .card .card-icon,
  .service-editorial-grid .card h3,
  .service-editorial-grid .card p {
    grid-column: auto;
    grid-row: auto;
  }
}

/* Service feature grid cleanup: remove box/icon borders */
.service-feature-grid .service-feature-card,
.service-feature-grid .card,
.service-editorial-section .service-feature-card {
  border: 0;
  border-top: 0;
  border-bottom: 0;
  outline: 0;
  box-shadow: none;
  background: transparent;
}

.service-feature-grid .service-feature-card .card-icon,
.service-feature-card .card-icon {
  border: 0;
  box-shadow: none;
  background: transparent;
  color: var(--orange);
  width: auto;
  height: auto;
  place-items: start;
  justify-content: start;
}

.service-feature-grid .service-feature-card h3 {
  border: 0;
}

/* Service grid border cleanup: remove top/left grid lines */
.service-editorial-section .grid-2,
.service-editorial-section .grid-3,
.service-feature-grid,
.service-editorial-grid,
.related-services-section .grid-3 {
  border: 0;
  border-top: 0;
  border-left: 0;
  box-shadow: none;
  background: transparent;
}

.service-editorial-section .grid-2 > *,
.service-editorial-section .grid-3 > *,
.service-feature-grid > *,
.service-editorial-grid > *,
.related-services-section .grid-3 > * {
  border: 0;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  box-shadow: none;
  background: transparent;
}

.service-editorial-section .card::before,
.service-editorial-section .card::after,
.service-feature-card::before,
.service-feature-card::after,
.service-card-link::before,
.service-card-link::after {
  display: none;
  content: none;
}


/* Related services connected-stack cards */
.related-services-section .grid-3 {
  align-items: stretch;
}

.related-services-section .service-card-link.card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  row-gap: 14px;
  height: 100%;
  padding: clamp(22px, 3vw, 32px);
  border: 3px solid var(--white);
  background: rgba(255, 250, 240, 0.08);
  box-shadow: var(--shadow-small);
}

.related-services-section .service-card-link.card:hover,
.related-services-section .service-card-link.card:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow);
}

.related-services-section .service-card-link .card-icon {
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--orange);
}

.related-services-section .service-card-link .card-link-label {
  justify-self: center;
  margin: 18px auto 0;
}


/* Service card link scope and heading alignment */
.service-editorial-section > .grid-2,
.service-editorial-section > .grid-3,
.service-editorial-section > .service-fit-list {
  margin-left: clamp(168px, 23vw, 330px);
}

.related-services-section .related-service-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  row-gap: 14px;
  height: 100%;
  padding: clamp(22px, 3vw, 32px);
  border: 3px solid var(--white);
  background: rgba(255, 250, 240, 0.08);
  box-shadow: var(--shadow-small);
  transform: none;
}

.related-services-section .related-service-card:hover,
.related-services-section .related-service-card:focus-within {
  transform: none;
  box-shadow: var(--shadow-small);
}

.related-services-section .related-service-card .card-icon {
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--orange);
}

.related-services-section .related-service-card .card-link-label {
  justify-self: center;
  margin: 18px auto 0;
}

.related-services-section .related-service-card .card-link-label:hover,
.related-services-section .related-service-card .card-link-label:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-small);
}

@media (max-width: 980px) {
  .service-editorial-section > .grid-2,
  .service-editorial-section > .grid-3,
  .service-editorial-section > .service-fit-list {
    margin-left: 0;
  }
}


/* Related service button fixed CTA size */
.related-services-section .related-service-card .card-link-label.button.ghost {
  width: 168px;
  min-width: 168px;
  height: 46px;
  min-height: 46px;
  padding: 0 18px;
  justify-self: center;
  margin: 18px auto 0;
}


/* Individual service card icons use main services card-icon treatment */
.service-feature-grid .card-icon,
.related-services-section .related-service-card .card-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: grid;
  place-items: center;
  padding: 0;
  margin-bottom: 20px;
  border: 1px solid var(--edge);
  background: rgba(24, 168, 255, 0.14);
  color: var(--cyan);
  box-shadow: var(--shadow-small), inset 0 0 20px rgba(24, 168, 255, 0.12);
  font-weight: 900;
}

.service-feature-grid .card:nth-child(even) .card-icon,
.related-services-section .related-service-card:nth-child(even) .card-icon {
  background: rgba(255, 106, 26, 0.12);
  color: #ffb067;
  border-color: rgba(255, 106, 26, 0.4);
}

.service-feature-grid .card:nth-child(3n) .card-icon,
.related-services-section .related-service-card:nth-child(3n) .card-icon {
  background: rgba(24, 168, 255, 0.18);
  color: var(--white);
}

.service-feature-grid .card:last-child .card-icon,
.related-services-section .related-service-card:last-child .card-icon {
  background: rgba(7, 11, 20, 0.9);
  color: var(--cyan);
}


/* Individual service card icons no shadow */
.service-feature-grid .card-icon,
.related-services-section .related-service-card .card-icon {
  box-shadow: none;
}


/* Service card View Service bottom alignment */
.related-services-section .grid-3 {
  align-items: stretch;
}

.related-services-section .related-service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.related-services-section .related-service-card p {
  margin-bottom: clamp(20px, 3vw, 32px);
}

.related-services-section .related-service-card .card-link-label.button.ghost {
  margin-top: auto;
  margin-bottom: 0;
  align-self: center;
}


/* Service card equal row height for bottom-aligned buttons */
.related-services-section .grid-3 {
  display: grid;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.related-services-section .related-service-card {
  min-height: 100%;
  height: 100%;
}

.related-services-section .related-service-card .card-link-label.button.ghost {
  margin-top: auto;
}


/* Service detail solves icons and numbered handles list */
.service-editorial-grid .card-icon {
  background: transparent;
  background-image: none;
  box-shadow: none;
}

.service-feature-list {
  counter-reset: service-feature;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  margin: 0;
  margin-left: clamp(168px, 23vw, 330px);
  padding: 0;
}

.service-feature-item {
  counter-increment: service-feature;
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.service-feature-item::before {
  content: counter(service-feature, decimal-leading-zero);
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid var(--edge);
  background: transparent;
  color: var(--cyan);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.service-feature-item h3 {
  margin: 0;
  align-self: center;
}

@media (max-width: 980px) {
  .service-feature-list {
    grid-template-columns: 1fr;
    margin-left: 0;
  }
}


/* Service feature list numbers no border */
.service-feature-item::before {
  border: 0;
}


/* Mobile footer stack and breadcrumb removal */
.breadcrumb {
  display: none;
}

@media (max-width: 760px) {
  .site-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    width: 100%;
    max-width: 100%;
    padding: 36px clamp(18px, 6vw, 28px) 96px;
    overflow-wrap: anywhere;
  }

  .footer-brand {
    align-items: flex-start;
    max-width: 100%;
  }

  .footer-brand span,
  .footer-brand small,
  .site-footer p,
  .footer-location,
  .footer-legal {
    max-width: 100%;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .footer-links a {
    display: block;
    width: 100%;
    padding: 12px 0;
    border-top: 1px solid var(--edge);
  }

  .footer-links a:last-child {
    border-bottom: 1px solid var(--edge);
  }
}


/* Mobile dropdown containment and collapsed submenu behavior */
@media (max-width: 980px) {
  .main-nav .nav-dropdown {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
  }

  .main-nav .nav-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
  }

  .main-nav .nav-dropdown-trigger::after {
    transition: transform 160ms ease;
  }

  .main-nav .nav-dropdown.is-dropdown-open .nav-dropdown-trigger::after {
    transform: rotate(180deg);
  }

  .main-nav .nav-dropdown-menu,
  .main-nav .nav-dropdown:hover .nav-dropdown-menu,
  .main-nav .nav-dropdown:focus-within .nav-dropdown-menu {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    display: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border-left: 0;
    border-right: 0;
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav .nav-dropdown.is-dropdown-open .nav-dropdown-menu,
  .main-nav .nav-dropdown.is-dropdown-open:hover .nav-dropdown-menu,
  .main-nav .nav-dropdown.is-dropdown-open:focus-within .nav-dropdown-menu {
    display: grid;
  }

  .main-nav .nav-dropdown-menu a {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    overflow-wrap: anywhere;
    padding-left: 24px;
  }
}


/* Mobile nav overlay: do not push page content */
@media (max-width: 980px) {
  .site-header {
    position: sticky;
    z-index: 90;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: clamp(20px, 5vw, 72px);
    right: clamp(20px, 5vw, 72px);
    width: auto;
    max-width: calc(100vw - (clamp(20px, 5vw, 72px) * 2));
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 100;
    margin-top: 0;
  }

  .main-nav.is-open {
    display: grid;
  }
}

@media (max-width: 640px) {
  .main-nav {
    left: 18px;
    right: 18px;
    max-width: calc(100vw - 36px);
    max-height: calc(100vh - 132px);
  }
}


/* Mobile menu overlay scroll lock */
@media (max-width: 980px) {
  body.mobile-menu-open {
    overflow: hidden;
    touch-action: none;
  }

  body.mobile-menu-open .main-nav.is-open {
    position: absolute;
    top: calc(100% + 8px);
    left: clamp(20px, 5vw, 72px);
    right: clamp(20px, 5vw, 72px);
    width: auto;
    max-width: calc(100vw - (clamp(20px, 5vw, 72px) * 2));
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 100;
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  body.mobile-menu-open .main-nav.is-open {
    left: 18px;
    right: 18px;
    max-width: calc(100vw - 36px);
    max-height: calc(100vh - 132px);
  }
}


/* All Services hub section correction */
.services-hub-section .section-heading {
  padding-bottom: 0;
  border-bottom: 0;
}


/* All Services hub card spacing */
.services-hub-section .grid-3 {
  max-width: 1180px;
  margin-inline: auto;
  gap: clamp(22px, 3vw, 36px);
  align-items: stretch;
  justify-items: stretch;
}

.services-hub-section .related-service-card {
  width: 100%;
  max-width: 380px;
  justify-self: center;
}

@media (max-width: 980px) {
  .services-hub-section .grid-3 {
    max-width: 820px;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .services-hub-section .grid-3 {
    max-width: 420px;
    gap: 22px;
  }

  .services-hub-section .related-service-card {
    max-width: 100%;
  }
}


/* Mobile homepage hero insight containment */
@media (max-width: 640px) {
  .hero,
  .hero > *,
  .hero-card,
  .insight-panel {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-card.insight-panel {
    width: 100%;
    overflow: hidden;
    padding-inline: clamp(18px, 5vw, 26px);
  }

  .insight-panel h3,
  .insight-panel p,
  .outcome-list,
  .outcome-item,
  .outcome-item > div,
  .signal-row {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .outcome-item {
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 12px;
  }

  .outcome-item strong,
  .outcome-item span,
  .signal-row span {
    overflow-wrap: anywhere;
    word-break: normal;
  }
}


/* Mobile partner logo layout */
@media (max-width: 640px) {
  .partners-section .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    border: 0;
    background: transparent;
  }

  .partners-section .partner-item {
    min-height: 142px;
    padding: 22px 16px;
    border: 1px solid var(--edge);
    background: rgba(16, 31, 52, 0.52);
  }

  .partners-section .partner-item:last-child {
    grid-column: 1 / -1;
    min-height: 132px;
  }

  .partners-section .partner-item img {
    max-width: min(240px, 90%);
    max-height: 102px;
  }

  .partners-section .partner-item:last-child img {
    max-width: min(280px, 84%);
    max-height: 108px;
  }
}

@media (max-width: 380px) {
  .partners-section .partner-grid {
    gap: 12px;
  }

  .partners-section .partner-item {
    min-height: 124px;
    padding: 18px 12px;
  }

  .partners-section .partner-item img {
    max-width: 94%;
    max-height: 92px;
  }
}


/* Homepage section divider cleanup */
.homepage-section .section-heading {
  padding-bottom: 0;
  border-bottom: 0;
}

.homepage-section .section-heading::after {
  display: none;
  content: none;
}


/* Pricing page general guidance */
.pricing-guidance-grid,
.pricing-service-links {
  align-items: stretch;
}

.pricing-guidance-grid .card {
  height: 100%;
}


/* Pricing services card spacing */
.pricing-service-links-section .grid-3 {
  max-width: 1180px;
  margin-inline: auto;
  gap: clamp(22px, 3vw, 36px);
  align-items: stretch;
  justify-items: stretch;
}

.pricing-service-links-section .related-service-card {
  width: 100%;
  max-width: 380px;
  justify-self: center;
}

@media (max-width: 980px) {
  .pricing-service-links-section .grid-3 {
    max-width: 820px;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .pricing-service-links-section .grid-3 {
    max-width: 420px;
    gap: 22px;
  }

  .pricing-service-links-section .related-service-card {
    max-width: 100%;
  }
}


/* Network and operations review CTA */
.footer-review-cta.button {
  width: max-content;
  margin: 4px 0;
  padding: 0 16px;
  font-size: 0.78rem;
  text-align: center;
}

.operations-review-section {
  padding-top: clamp(36px, 5vw, 64px);
  padding-bottom: clamp(36px, 5vw, 64px);
}

.operations-review-cta {
  display: grid;
  grid-template-columns: minmax(160px, 0.3fr) minmax(0, 1fr) auto;
  gap: clamp(20px, 5vw, 72px);
  align-items: start;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--edge-strong);
  background:
    linear-gradient(90deg, rgba(255, 106, 26, 0.22) 0 10px, transparent 10px),
    linear-gradient(135deg, rgba(16, 31, 52, 0.94), rgba(7, 11, 20, 0.98));
  box-shadow: var(--shadow-small), var(--glow-blue);
}

.operations-review-cta > .eyebrow {
  justify-self: start;
}

.operations-review-cta > .button {
  align-self: center;
}

.operations-review-cta h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 3.4rem);
}

.operations-review-cta p {
  max-width: 860px;
  margin: 10px 0 0;
}

.contact-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--edge);
  border-radius: 0;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(7, 11, 20, 0.74);
  font: inherit;
  box-shadow: inset 0 0 18px rgba(24, 168, 255, 0.08);
}

.contact-form select:focus {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
  border-color: var(--edge-strong);
}

@media (max-width: 980px) {
  .operations-review-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .operations-review-cta .button {
    width: max-content;
  }
}

@media (max-width: 640px) {
  .footer-review-cta.button,
  .operations-review-cta .button {
    width: 100%;
  }
}


/* Present the standalone server package as a horizontal pricing section. */
.pricing-server-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 1.14fr);
  column-gap: clamp(34px, 6vw, 92px);
  align-items: start;
}

.pricing-server-section .section-heading {
  display: block;
  grid-column: 1;
  margin-bottom: 0;
  width: 100%;
}

.pricing-server-section .section-heading > div {
  margin-top: 18px;
}

.pricing-server-section .section-heading h2,
.pricing-server-section .section-heading p {
  max-width: 620px;
}

.pricing-server-section .pricing-server-grid,
.pricing-server-section .pricing-note {
  grid-column: 2;
}

.pricing-server-section .pricing-server-grid {
  width: 100%;
  grid-template-columns: minmax(0, 1fr);
}

.pricing-server-section .pricing-card.server {
  min-height: auto;
}

@media (max-width: 980px) {
  .pricing-server-section {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .pricing-server-section .section-heading,
  .pricing-server-section .pricing-server-grid,
  .pricing-server-section .pricing-note {
    grid-column: 1;
  }
}

/* Pricing page section heading divider cleanup */
.pricing-guidance-section .section-heading,
.pricing-section .section-heading,
.pricing-service-links-section .section-heading {
  padding-bottom: 0;
  border-bottom: 0;
}

.pricing-guidance-section .section-heading::after,
.pricing-section .section-heading::after,
.pricing-service-links-section .section-heading::after {
  display: none;
}

/* Match page hero dividers to the index hero gradient rule */
.page-hero,
.service-detail-hero {
  position: relative;
  border-bottom: 1px solid var(--edge);
}

.page-hero::after,
.service-detail-hero::after {
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--cyan), transparent);
}


/* Global section heading divider cleanup */
.section-heading,
.homepage-section .section-heading,
.pricing-guidance-section .section-heading,
.pricing-section .section-heading,
.pricing-service-links-section .section-heading,
.services-hub-section .section-heading,
.service-editorial-section .section-heading,
.related-services-section .section-heading {
  padding-bottom: 0;
  border-bottom: 0;
}

.section-heading::after,
.homepage-section .section-heading::after,
.pricing-guidance-section .section-heading::after,
.pricing-section .section-heading::after,
.pricing-service-links-section .section-heading::after,
.services-hub-section .section-heading::after,
.service-editorial-section .section-heading::after,
.related-services-section .section-heading::after {
  display: none;
  content: none;
}


/* Interactive network dust hero */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero > :not(.network-insight) {
  position: relative;
  z-index: 4;
}

.network-insight {
  position: absolute;
  inset: -340px 0 0 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  opacity: 1;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 74%, rgba(0, 0, 0, 0.72) 88%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 74%, rgba(0, 0, 0, 0.72) 88%, transparent 100%);
}

.network-insight::before,
.network-insight::after {
  content: '';
  position: absolute;
  inset: -12%;
  z-index: -1;
  pointer-events: none;
}

.network-insight::before {
  background:
    radial-gradient(circle at 28% 28%, rgba(37, 188, 236, 0.12), transparent 30%),
    radial-gradient(circle at 78% 44%, rgba(245, 153, 29, 0.1), transparent 34%),
    radial-gradient(circle at 48% 82%, rgba(37, 188, 236, 0.11), transparent 34%),
    radial-gradient(ellipse at 50% 92%, rgba(37, 188, 236, 0.07), transparent 54%),
    linear-gradient(180deg, transparent 0%, rgba(37, 188, 236, 0.035) 68%, rgba(245, 153, 29, 0.04) 100%);
}

.network-insight::after {
  background:
    linear-gradient(90deg, rgba(37, 188, 236, 0.022) 1px, transparent 1px),
    linear-gradient(180deg, rgba(245, 153, 29, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.42;
}

.network-insight canvas {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  filter: drop-shadow(0 0 6px rgba(37, 188, 236, 0.34));
}

@media (max-width: 640px) {
  .network-insight {
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    opacity: 0.78;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 82%, rgba(0, 0, 0, 0.74) 93%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 82%, rgba(0, 0, 0, 0.74) 93%, transparent 100%);
  }

  .network-insight canvas {
    width: 100%;
    height: 100%;
    min-height: 100%;
  }
}


/* Keep the header/navigation above the hero dust layer without breaking sticky scroll behavior */
.site-header {
  z-index: 90;
}

/* Keep the hero gradient border above the dust canvas */
.hero::after {
  z-index: 10;
  pointer-events: none;
}


/* Remote support step flow */
.remote-support-steps-section .section-heading {
  max-width: 920px;
}

.remote-support-steps-section .section-heading p {
  margin-top: 10px;
}

.remote-support-steps {
  align-items: stretch;
}

.remote-support-steps .remote-support-step.card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  min-height: 420px;
}

.remote-support-steps .remote-support-step .card-icon {
  grid-row: auto;
  flex: 0 0 auto;
  margin: 0 0 6px;
}

.remote-support-steps .remote-support-step .eyebrow,
.remote-support-steps .remote-support-step h3,
.remote-support-steps .remote-support-step p,
.remote-support-steps .remote-support-step .button {
  grid-column: auto;
  grid-row: auto;
}

.remote-support-steps .remote-support-step .eyebrow {
  width: fit-content;
}

.remote-support-steps .remote-support-step h3 {
  margin: 0;
}

.remote-support-steps .remote-support-step p {
  flex: 1 1 auto;
  margin: 0;
}

.remote-support-steps .remote-support-step .button {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

@media (max-width: 760px) {
  .remote-support-steps-section .section-heading p {
    grid-column: auto;
  }

  .remote-support-steps .remote-support-step.card {
    min-height: 0;
  }
}


/* Contact page remote support callout */
.contact-section {
  padding-bottom: clamp(18px, 3vw, 34px);
}

.contact-remote-support-section {
  padding-top: clamp(24px, 4vw, 44px);
  padding-bottom: clamp(54px, 8vw, 96px);
}

.contact-remote-support-heading {
  margin-bottom: 0;
}

.contact-remote-support-heading h2 {
  max-width: 900px;
}

.contact-remote-support-heading p {
  max-width: 840px;
}

.contact-remote-support-heading .inline-actions {
  margin-top: clamp(20px, 3vw, 30px);
}

@media (max-width: 760px) {
  .contact-remote-support-heading .button {
    width: 100%;
    justify-content: center;
  }
}


/* Partner pages */
.partner-hero {
  position: relative;
  overflow: hidden;
}

.partner-hero-image {
  display: block;
  margin-top: clamp(34px, 5vw, 58px);
  max-width: 980px;
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow-small);
}

.partner-hero-image img,
.partner-media-card img,
.partner-feature-card img {
  display: block;
  width: 100%;
  height: auto;
}

.partner-showcase-grid,
.partner-benefits-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.partner-media-card {
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow-small);
  overflow: hidden;
}

.partner-proof-list,
.partner-benefits-copy {
  display: grid;
  gap: 22px;
}

.partner-feature-grid {
  align-items: stretch;
}

.partner-feature-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 24px 0;
  border-top: 3px solid var(--ink);
  border-bottom: 1px solid var(--gray-200);
}

.partner-feature-card img {
  border: 3px solid var(--ink);
  background: var(--paper);
  object-fit: contain;
}

.partner-split-panel .eyebrow {
  color: var(--ink);
}

.partner-check-list li {
  color: var(--white);
}

@media (max-width: 860px) {
  .partner-showcase-grid,
  .partner-benefits-grid,
  .partner-feature-card {
    grid-template-columns: 1fr;
  }
}


.partner-logo-hero {
  display: grid;
  place-items: center;
  width: min(300px, 72vw);
  margin-top: clamp(34px, 5vw, 58px);
  padding: clamp(22px, 4vw, 36px);
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow-small);
}

.partner-logo-hero img {
  display: block;
  width: min(220px, 100%);
  height: auto;
  object-fit: contain;
}


.article-related-links {
  margin-top: clamp(44px, 7vw, 72px);
  padding: clamp(24px, 4vw, 34px);
  border: 3px solid var(--ink);
  background: var(--gray-50);
  color: var(--ink);
  box-shadow: var(--shadow-small);
}

.article-related-links h2 {
  margin: 8px 0 18px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

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

.article-related-card {
  display: grid;
  gap: 8px;
  min-height: 100%;
  padding: 18px;
  border: 3px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  background: var(--paper);
  box-shadow: var(--shadow-small);
}

.article-related-card strong {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.25;
}

.article-related-card:hover,
.article-related-card:focus-visible {
  border-color: var(--blue);
  color: var(--ink);
  background: var(--blue-soft);
  transform: translateY(-2px);
}

.article-related-card span {
  color: var(--gray-700);
  font-size: 0.94rem;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .article-related-grid {
    grid-template-columns: 1fr;
  }
}


/* SEO helpers */
.breadcrumbs {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px clamp(20px, 5vw, 48px) 0;
  color: var(--gray-100);
  font-size: 0.9rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: var(--orange-soft);
}

.breadcrumbs a {
  color: var(--blue-soft);
  text-decoration: none;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--white);
  text-decoration: underline;
}

.breadcrumbs span {
  color: var(--gray-100);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border-bottom: 1px solid rgba(15, 23, 42, 0.18);
  background: transparent;
  color: var(--ink);
  padding: 0;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 18px 0;
  color: var(--ink);
  font-size: clamp(1rem, 2vw, 1.12rem);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(15, 23, 42, 0.24);
  border-radius: 999px;
  color: var(--blue);
  font-size: 1.15rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
  color: var(--orange);
}

.faq-item p {
  max-width: 880px;
  margin: -4px 48px 18px 0;
  color: var(--gray-700);
}

.faq-item summary:focus-visible {
  outline: 3px solid var(--orange-soft);
  outline-offset: 4px;
}


.partner-item a {
  display: grid;
  place-items: center;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.partner-item a:focus-visible {
  outline: 3px solid var(--orange-soft);
  outline-offset: 4px;
}


.page-hero .breadcrumbs,
.article .breadcrumbs {
  max-width: none;
  margin: 0 0 18px;
  padding: 0;
}

.page-hero .breadcrumbs ol,
.article .breadcrumbs ol {
  justify-content: flex-start;
}


/* Breadcrumb-in-hero spacing polish */
.page-hero {
  padding-top: clamp(46px, 7vw, 88px);
}

.page-hero .breadcrumbs,
.article .breadcrumbs {
  color: var(--gray-500);
  font-size: 0.84rem;
  font-weight: 700;
  opacity: 0.86;
}

.page-hero .breadcrumbs a,
.article .breadcrumbs a {
  color: var(--gray-500);
}

.page-hero .breadcrumbs span,
.article .breadcrumbs span {
  color: var(--gray-500);
}

.page-hero .breadcrumbs li:not(:last-child)::after,
.article .breadcrumbs li:not(:last-child)::after {
  color: var(--gray-500);
  opacity: 0.75;
}

.page-hero .breadcrumbs a:hover,
.page-hero .breadcrumbs a:focus-visible,
.article .breadcrumbs a:hover,
.article .breadcrumbs a:focus-visible {
  color: var(--blue);
}

@media (max-width: 720px) {
  .page-hero {
    padding-top: 38px;
  }
}


.article-review-note {
  margin-top: clamp(34px, 5vw, 52px);
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.18);
  color: var(--gray-700);
  font-size: 0.92rem;
  line-height: 1.65;
}

.article-review-note h2 {
  margin: 0 0 8px;
  color: var(--gray-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.article-review-note p {
  margin: 0;
}

.article-review-note strong {
  color: var(--ink);
}
