:root {
  color-scheme: dark;
  --bg: #07090b;
  --bg-2: #0c1114;
  --panel: rgba(255, 255, 255, 0.065);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --text: #f5f7f8;
  --muted: #a4afb5;
  --line: rgba(255, 255, 255, 0.14);
  --teal: #54dbc6;
  --teal-2: #89fff0;
  --gold: #d8b36a;
  --ink: #11181d;
  --max: 1180px;
  --mx: 50vw;
  --my: 28vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(84, 219, 198, 0.08), transparent 26rem),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: -3;
  background:
    linear-gradient(rgba(84, 219, 198, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 219, 198, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent 0%, black 12%, black 86%, transparent 100%);
  animation: gridDrift 24s linear infinite;
}

body::after {
  z-index: -2;
  background:
    radial-gradient(circle at 16% 12%, rgba(35, 84, 255, 0.2), transparent 30rem),
    radial-gradient(circle at 84% 36%, rgba(84, 219, 198, 0.12), transparent 26rem),
    linear-gradient(180deg, rgba(7, 9, 11, 0.22), rgba(7, 9, 11, 0.86));
}

@keyframes gridDrift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 72px 72px;
  }
}

.ambient-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.5;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 36px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(84, 219, 198, 0.2);
  background:
    linear-gradient(120deg, rgba(12, 25, 52, 0.56), rgba(5, 11, 14, 0.5) 48%, rgba(8, 34, 31, 0.5)),
    rgba(7, 9, 11, 0.42);
  backdrop-filter: blur(18px) saturate(1.18);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(49, 115, 255, 0.12),
    0 0 28px rgba(84, 219, 198, 0.08);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

main,
.footer {
  position: relative;
  z-index: 1;
}

.site-header.is-scrolled {
  background:
    linear-gradient(120deg, rgba(8, 20, 48, 0.68), rgba(5, 9, 12, 0.62) 46%, rgba(9, 38, 34, 0.64)),
    rgba(7, 9, 11, 0.56);
  border-color: rgba(84, 219, 198, 0.32);
  box-shadow:
    0 20px 64px rgba(0, 0, 0, 0.45),
    0 0 34px rgba(49, 115, 255, 0.12),
    0 0 24px rgba(84, 219, 198, 0.1);
}

.brand,
.nav,
.hero-actions,
.hero-metrics,
.section-heading,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(226, 236, 255, 0.58)),
    rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(8px) saturate(1.12);
  box-shadow:
    inset 0 0 0 1px rgba(20, 72, 180, 0.08),
    0 12px 30px rgba(0, 0, 0, 0.2),
    0 0 22px rgba(49, 115, 255, 0.1);
}

.brand-logo {
  display: block;
  width: 198px;
  height: 53px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(12, 34, 82, 0.12));
}

.nav {
  gap: clamp(12px, 1.5vw, 22px);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.nav a,
.header-cta {
  transition: color 160ms ease, border-color 160ms ease;
}

.nav a:hover {
  color: var(--text);
}

.header-cta {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

.header-cta:hover {
  border-color: rgba(84, 219, 198, 0.5);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 118px 0 58px;
  background: rgba(3, 5, 6, 0.56);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.95;
}

.hero-shade {
  background:
    radial-gradient(circle at 78% 18%, rgba(84, 219, 198, 0.34), transparent 30%),
    radial-gradient(circle at 52% 4%, rgba(217, 185, 111, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(3, 5, 6, 0.96) 0%, rgba(4, 12, 20, 0.82) 36%, rgba(5, 19, 35, 0.4) 70%, rgba(2, 5, 8, 0.72) 100%),
    linear-gradient(180deg, rgba(3, 5, 6, 0.08) 0%, rgba(3, 5, 6, 0.95) 100%);
}

.hero-shade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(84, 219, 198, 0.12) 42%, transparent 58%);
  transform: translateX(-72%);
  animation: lightSweep 9s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.hero-intel {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(350px, 30vw);
  padding: 18px;
  border: 1px solid rgba(84, 219, 198, 0.22);
  background: rgba(7, 9, 11, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.intel-top,
.intel-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.intel-top {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.intel-top span,
.intel-line span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.intel-top strong,
.intel-line b {
  text-align: right;
  font-size: 0.88rem;
}

.intel-line {
  padding: 13px 0 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--teal-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.1vw, 5.75rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 26px;
  color: #d4dcdf;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: var(--text);
  color: var(--ink);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.button.full {
  width: 100%;
}

.hero-metrics {
  gap: 12px;
  flex-wrap: wrap;
}

.hero-metrics div {
  width: 168px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, transform 180ms ease;
}

.hero-metrics div:hover {
  border-color: rgba(84, 219, 198, 0.48);
  transform: translateY(-3px);
}

.hero-metrics dt {
  color: var(--gold);
  font-size: 1.7rem;
  font-weight: 800;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 13, 16, 0.72);
  backdrop-filter: blur(10px);
}

.trust-strip span {
  display: grid;
  place-items: center;
  min-height: 78px;
  padding: 16px;
  border-right: 1px solid var(--line);
  color: #c8d1d4;
  font-weight: 800;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 112px 0;
}

.story {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 112px;
}

.story-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  gap: 58px;
  align-items: end;
  margin-bottom: 34px;
}

.story-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.98;
}

.story-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 0.92fr;
  gap: 12px;
}

.story-card {
  min-height: 520px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 11, 0.12) 0%, rgba(5, 8, 11, 0.58) 48%, rgba(5, 8, 11, 0.94) 100%),
    radial-gradient(circle at 20% 18%, rgba(84, 219, 198, 0.18), transparent 22rem);
}

.story-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}

.story-card:hover img {
  transform: scale(1.035);
}

.story-card div {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.story-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--teal-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-card h3 {
  max-width: 470px;
  margin-bottom: 12px;
  font-size: 1.55rem;
  line-height: 1.08;
}

.story-card p {
  margin-bottom: 0;
  color: #d2dcdf;
}

.capability-map {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 52px;
  align-items: center;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 108px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-map h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.98;
}

.capability-map p {
  color: var(--muted);
  font-size: 1.05rem;
}

.map-visual {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(84, 219, 198, 0.18);
  background:
    radial-gradient(circle at center, rgba(84, 219, 198, 0.12), transparent 12rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  overflow: hidden;
}

.map-visual::before,
.map-visual::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(84, 219, 198, 0.18);
  transform: rotate(45deg);
}

.map-visual::after {
  inset: 25%;
  border-color: rgba(49, 115, 255, 0.25);
  animation: mapSpin 24s linear infinite;
}

@keyframes mapSpin {
  to {
    transform: rotate(405deg);
  }
}

.map-core {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 136px;
  height: 136px;
  border: 1px solid rgba(84, 219, 198, 0.5);
  background:
    radial-gradient(circle, rgba(84, 219, 198, 0.22), rgba(10, 18, 25, 0.92));
  color: #e8f8ff;
  font-weight: 900;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 60px rgba(84, 219, 198, 0.16);
}

.map-node {
  position: absolute;
  z-index: 3;
  min-width: 150px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(7, 9, 11, 0.72);
  color: #e8eef0;
  font-weight: 800;
  text-align: center;
  backdrop-filter: blur(12px);
}

.node-a { top: 12%; left: 9%; }
.node-b { top: 11%; right: 10%; }
.node-c { top: 45%; left: 5%; }
.node-d { top: 45%; right: 5%; }
.node-e { bottom: 12%; left: 12%; }
.node-f { bottom: 12%; right: 12%; }

.intro,
.services,
.process,
.contact {
  position: relative;
}

.intro::before,
.services::before,
.process::before,
.contact::before {
  content: "";
  position: absolute;
  inset: 48px -18px;
  z-index: -1;
  border: 1px solid rgba(84, 219, 198, 0.08);
  background:
    radial-gradient(circle at 20% 20%, rgba(84, 219, 198, 0.08), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.006));
  backdrop-filter: blur(2px);
}

.intro-grid,
.section-heading,
.systems,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 58px;
}

.intro h2,
.section-heading h2,
.systems h2,
.industries h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.intro p,
.section-heading p,
.systems p,
.contact p {
  color: var(--muted);
  font-size: 1.05rem;
}

.services {
  padding-top: 50px;
}

.service-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -10px 0 28px;
}

.chip,
.stack-tab {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.chip.is-active,
.stack-tab.is-active {
  border-color: rgba(84, 219, 198, 0.55);
  background: rgba(84, 219, 198, 0.13);
  color: var(--text);
}

.section-heading {
  align-items: end;
  margin-bottom: 38px;
}

.section-heading.compact {
  grid-template-columns: 1fr;
}

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

.service-card,
.process article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-strong), rgba(255, 255, 255, 0.035));
  transition: opacity 220ms ease, transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card:hover,
.process article:hover {
  border-color: rgba(84, 219, 198, 0.38);
  background: linear-gradient(180deg, rgba(84, 219, 198, 0.1), rgba(255, 255, 255, 0.04));
  transform: translateY(-4px);
}

.service-card.is-hidden {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
}

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

.service-card h3,
.process h3 {
  margin-bottom: 14px;
  font-size: 1.18rem;
}

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

.service-number,
.process span {
  display: block;
  margin-bottom: 54px;
  color: var(--gold);
  font-weight: 800;
}

.systems {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 22%, rgba(84, 219, 198, 0.1), transparent 22rem),
    rgba(7, 9, 11, 0.28);
}

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

.feature-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: #d8e0e2;
}

.system-panel {
  padding: 22px;
  border: 1px solid rgba(84, 219, 198, 0.22);
  background:
    linear-gradient(145deg, rgba(84, 219, 198, 0.12), rgba(216, 179, 106, 0.06)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.panel-top,
.signal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.panel-top {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.panel-top span,
.signal-row span {
  color: var(--muted);
  font-size: 0.88rem;
}

.signal-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.signal-row strong {
  color: var(--teal-2);
}

.signal-bars {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 160px;
  margin-top: 24px;
}

.signal-bars span {
  flex: 1;
  height: var(--level);
  background: linear-gradient(180deg, var(--teal-2), rgba(84, 219, 198, 0.18));
  animation: pulseBar 2.8s ease-in-out infinite;
}

@keyframes pulseBar {
  0%,
  100% {
    opacity: 0.68;
  }

  50% {
    opacity: 1;
  }
}

@keyframes lightSweep {
  0%,
  45% {
    transform: translateX(-72%);
    opacity: 0;
  }

  58% {
    opacity: 1;
  }

  76%,
  100% {
    transform: translateX(72%);
    opacity: 0;
  }
}

@keyframes statusPulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.92);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes dashboardScan {
  from {
    transform: translateY(-18px);
  }

  to {
    transform: translateY(18px);
  }
}

.engineering {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: 58px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 112px 0;
  align-items: start;
  position: relative;
}

.engineering::before {
  content: "";
  position: absolute;
  inset: 54px -18px;
  z-index: -1;
  border: 1px solid rgba(35, 84, 255, 0.1);
  background:
    linear-gradient(115deg, rgba(35, 84, 255, 0.09), transparent 42%),
    rgba(255, 255, 255, 0.01);
}

.engineering h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.engineering p {
  color: var(--muted);
  font-size: 1.05rem;
}

.stack-console {
  border: 1px solid rgba(84, 219, 198, 0.22);
  background:
    linear-gradient(145deg, rgba(7, 9, 11, 0.92), rgba(14, 23, 26, 0.86)),
    rgba(255, 255, 255, 0.05);
}

.stack-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.stack-tab {
  border: 0;
  border-right: 1px solid var(--line);
  min-height: 58px;
}

.stack-tab:last-child {
  border-right: 0;
}

.stack-panel {
  display: none;
  min-height: 300px;
  padding: 28px;
}

.stack-panel.is-active {
  display: block;
}

.stack-panel span {
  display: block;
  margin-bottom: 72px;
  color: var(--gold);
  font-weight: 800;
}

.stack-panel h3 {
  margin-bottom: 14px;
  font-size: 1.55rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.process article {
  min-height: 230px;
}

.delivery-timeline {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  margin-top: 14px;
  border: 1px solid rgba(84, 219, 198, 0.18);
  background: rgba(84, 219, 198, 0.18);
}

.delivery-timeline span {
  min-height: 92px;
  display: grid;
  align-items: end;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    #080c0f;
  color: #edf8f8;
  font-size: 0.82rem;
  font-weight: 900;
}

.industries {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  gap: 0;
  min-height: 760px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #080c0f;
  color: var(--text);
}

.industry-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.industry-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 12, 15, 0.1), rgba(8, 12, 15, 0.82)),
    linear-gradient(180deg, rgba(8, 12, 15, 0.08), rgba(8, 12, 15, 0.88));
}

.industry-media img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.industry-content {
  align-self: center;
  padding: 92px max(18px, calc((100vw - var(--max)) / 2)) 92px 64px;
}

.industries h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.98;
}

.industries p {
  max-width: 700px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.industry-grid article {
  position: relative;
  min-height: 168px;
  aspect-ratio: 1.55 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: #111820;
}

.industry-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 10, 0.04), rgba(2, 6, 10, 0.82)),
    linear-gradient(90deg, rgba(84, 219, 198, 0.08), transparent 56%);
}

.industry-grid img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms ease;
}

.industry-grid article:hover img {
  transform: scale(1.035);
}

.industry-grid article:hover {
  border-color: rgba(84, 219, 198, 0.34);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
}

.industry-grid span {
  position: absolute;
  z-index: 1;
  inset: auto 14px 42px 14px;
  min-height: 0;
  display: flex;
  align-items: end;
  padding: 0;
  color: #e8eef0;
  font-weight: 800;
  text-shadow: 0 12px 26px rgba(0, 0, 0, 0.8);
}

.industry-grid em {
  position: absolute;
  z-index: 1;
  inset: auto 14px 14px 14px;
  color: rgba(235, 247, 248, 0.78);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
}

.proof {
  border-bottom: 1px solid var(--line);
}

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

.proof-card {
  min-height: 290px;
  display: grid;
  align-content: start;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(20, 34, 49, 0.92), rgba(10, 13, 16, 0.92)),
    radial-gradient(circle at top right, rgba(84, 219, 198, 0.13), transparent 38%);
}

.speaker {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 8px;
}

.speaker img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border: 1px solid rgba(84, 219, 198, 0.32);
  border-radius: 50%;
}

.speaker span {
  color: #dce8ea;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-card p {
  color: #f3f7f8;
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  line-height: 1.45;
  font-weight: 800;
}

.proof-card span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.expertise-bench {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 112px 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: start;
}

.bench-copy {
  position: sticky;
  top: 120px;
}

.bench-copy h2 {
  margin: 16px 0 18px;
  font-size: clamp(2.1rem, 4.8vw, 4.6rem);
  line-height: 0.98;
}

.bench-copy p:not(.section-kicker) {
  max-width: 610px;
  color: var(--muted);
  font-size: 1.05rem;
}

.bench-media {
  margin-top: 28px;
}

.bench-media > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  border: 1px solid var(--line);
}

.staff-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.staff-strip img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.13);
  filter: saturate(0.9);
}

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

.bench-grid article {
  min-height: 240px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028));
}

.bench-grid span {
  color: var(--gold);
  font-weight: 900;
}

.bench-grid h3 {
  margin: 54px 0 14px;
  font-size: 1.2rem;
}

.bench-grid p {
  color: var(--muted);
}

.blueprint {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 112px 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 36px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.blueprint-copy h2 {
  margin: 16px 0 18px;
  font-size: clamp(2.1rem, 4.8vw, 4.6rem);
  line-height: 0.98;
}

.blueprint-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.blueprint-diagram {
  position: relative;
  min-height: 620px;
  border: 1px solid rgba(84, 219, 198, 0.2);
  background:
    radial-gradient(circle at 50% 50%, rgba(84, 219, 198, 0.16), transparent 28%),
    linear-gradient(145deg, rgba(8, 19, 34, 0.9), rgba(5, 8, 10, 0.95));
  overflow: hidden;
}

.blueprint-diagram::before,
.blueprint-diagram::after {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(84, 219, 198, 0.18);
  transform: rotate(45deg);
}

.blueprint-diagram::after {
  inset: 29%;
  border-color: rgba(217, 185, 111, 0.18);
}

.blueprint-diagram .blueprint-node::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  right: 10px;
  top: 10px;
  border-radius: 50%;
  background: rgba(84, 219, 198, 0.9);
  box-shadow: 0 0 18px rgba(84, 219, 198, 0.8);
  animation: statusPulse 2.8s ease-in-out infinite;
}

.blueprint-core,
.blueprint-node {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(9, 16, 22, 0.84);
  backdrop-filter: blur(10px);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.34);
}

.blueprint-core {
  inset: 38% 35%;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.blueprint-node {
  width: 154px;
  min-height: 76px;
  padding: 12px;
  color: #eaf8f8;
  font-size: 0.82rem;
  font-weight: 900;
}

.blueprint-node.primary {
  border-color: rgba(217, 185, 111, 0.48);
  color: var(--gold);
}

.blueprint-node.secure {
  border-color: rgba(84, 219, 198, 0.48);
}

.blueprint-node:nth-of-type(1) { left: 8%; top: 10%; }
.blueprint-node:nth-of-type(2) { left: 39%; top: 7%; }
.blueprint-node:nth-of-type(3) { right: 8%; top: 18%; }
.blueprint-node:nth-of-type(4) { right: 8%; top: 46%; }
.blueprint-node:nth-of-type(5) { right: 28%; bottom: 8%; }
.blueprint-node:nth-of-type(6) { left: 31%; bottom: 7%; }
.blueprint-node:nth-of-type(7) { left: 8%; bottom: 24%; }
.blueprint-node:nth-of-type(8) { left: 8%; top: 42%; }

.case-studies {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.case-card {
  min-height: 470px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.028)),
    radial-gradient(circle at 20% 0%, rgba(217, 185, 111, 0.16), transparent 34%);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.case-card:hover,
.engagement-grid article:hover,
.stack-wall-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(84, 219, 198, 0.34);
}

.case-card > span,
.portal-top span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-card h3 {
  margin-top: 42px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.1;
}

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

.case-card ul {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  color: #eaf4ff;
  font-weight: 800;
}

.case-card li {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.technology-wall,
.enterprise-layer,
.engagements,
.portal-preview {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 112px 0;
}

.technology-wall {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: start;
}

.stack-wall-copy {
  position: sticky;
  top: 120px;
}

.stack-wall-copy h2,
.portal-copy h2 {
  margin: 16px 0 18px;
  font-size: clamp(2.1rem, 4.8vw, 4.6rem);
  line-height: 0.98;
}

.stack-wall-copy p,
.portal-copy p,
.enterprise-panel p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.stack-wall-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(84, 219, 198, 0.18);
  background:
    linear-gradient(180deg, rgba(84, 219, 198, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.025);
}

.stack-wall-grid h3 {
  margin-bottom: 36px;
  font-size: 1.25rem;
}

.stack-wall-grid span {
  display: inline-flex;
  margin: 0 7px 9px 0;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: #e7f2f3;
  font-size: 0.82rem;
  font-weight: 800;
}

.enterprise-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 36px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(84, 219, 198, 0.2);
  background:
    radial-gradient(circle at top right, rgba(84, 219, 198, 0.16), transparent 30%),
    linear-gradient(140deg, rgba(16, 35, 42, 0.86), rgba(5, 8, 11, 0.92));
}

.enterprise-panel h2 {
  margin: 16px 0 18px;
  font-size: clamp(2rem, 4.4vw, 4.4rem);
  line-height: 0.98;
}

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

.governance-list span {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
  color: #eff8f8;
  font-weight: 850;
}

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

.engagement-grid article {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.engagement-grid span {
  color: var(--gold);
  font-weight: 900;
}

.engagement-grid h3 {
  margin: 74px 0 14px;
  font-size: 1.45rem;
}

.engagement-grid p {
  color: var(--muted);
}

.portal-preview {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.portal-copy .button {
  margin-top: 26px;
}

.portal-screen {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(84, 219, 198, 0.24);
  background:
    linear-gradient(145deg, rgba(11, 25, 44, 0.92), rgba(5, 8, 12, 0.94)),
    radial-gradient(circle at 88% 10%, rgba(49, 115, 255, 0.22), transparent 34%);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

.portal-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(84, 219, 198, 0.08), transparent),
    repeating-linear-gradient(180deg, transparent 0 34px, rgba(255, 255, 255, 0.025) 35px 36px);
  opacity: 0.75;
  pointer-events: none;
  animation: dashboardScan 7s linear infinite;
}

.portal-screen > * {
  position: relative;
  z-index: 1;
}

.portal-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.portal-top strong::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: #54dbc6;
  box-shadow: 0 0 18px rgba(84, 219, 198, 0.9);
  animation: statusPulse 2.4s ease-in-out infinite;
}

.portal-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.portal-metrics div {
  min-height: 120px;
  display: grid;
  align-content: end;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
}

.portal-metrics b {
  color: var(--gold);
  font-size: 2.1rem;
}

.portal-metrics span,
.portal-rows em {
  color: var(--muted);
  font-style: normal;
}

.portal-rows {
  display: grid;
  gap: 10px;
}

.portal-rows span {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 112px 0;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.hidden-field {
  display: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  padding: 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(84, 219, 198, 0.55);
}

.contact-form select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, rgba(235, 247, 248, 0.72) 50%) calc(100% - 18px) 52% / 7px 7px no-repeat,
    linear-gradient(135deg, rgba(235, 247, 248, 0.72) 50%, transparent 50%) calc(100% - 13px) 52% / 7px 7px no-repeat,
    rgba(255, 255, 255, 0.07);
}

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

.form-note {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.contact a,
.footer a {
  color: #eaf4ff;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid rgba(84, 219, 198, 0.45);
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.success-panel {
  width: min(720px, 100%);
  padding: clamp(32px, 7vw, 72px);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(10, 28, 50, 0.92), rgba(4, 8, 13, 0.96));
}

.success-panel h1 {
  margin: 14px 0 18px;
  font-size: clamp(2.3rem, 7vw, 5rem);
}

.success-panel p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.footer {
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer div {
  display: grid;
  gap: 7px;
}

.footer strong {
  color: var(--text);
}

@media (max-width: 900px) {
  .site-header {
    width: min(100% - 24px, var(--max));
  }

  .nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header.is-open .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    background: rgba(7, 9, 11, 0.96);
  }

  .site-header.is-open .nav a {
    padding: 14px;
  }

  .hero {
    min-height: 90vh;
    padding-top: 112px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 5, 6, 0.98), rgba(3, 5, 6, 0.72)),
      linear-gradient(180deg, rgba(3, 5, 6, 0.35), rgba(3, 5, 6, 0.98));
  }

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

  .intro-grid,
  .story-heading,
  .section-heading,
  .systems,
  .industries,
  .capability-map,
  .engineering,
  .contact {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section,
  .story,
  .systems,
  .capability-map,
  .engineering,
  .blueprint,
  .technology-wall,
  .enterprise-layer,
  .engagements,
  .portal-preview,
  .expertise-bench,
  .contact {
    padding: 76px 0;
  }

  .blueprint,
  .technology-wall,
  .enterprise-panel,
  .portal-preview,
  .expertise-bench {
    grid-template-columns: 1fr;
  }

  .bench-copy,
  .stack-wall-copy {
    position: static;
  }

  .proof-grid,
  .case-grid,
  .stack-wall-grid,
  .engagement-grid,
  .delivery-timeline,
  .bench-grid {
    grid-template-columns: 1fr;
  }

  .blueprint-diagram {
    min-height: 540px;
  }

  .hero-intel {
    position: static;
    width: 100%;
    margin-top: 28px;
  }

  .industries {
    min-height: 0;
    position: relative;
    overflow: hidden;
  }

  .industry-media {
    position: absolute;
    inset: 0;
  }

  .industry-media::after {
    background:
      linear-gradient(90deg, rgba(8, 12, 15, 0.88), rgba(8, 12, 15, 0.74)),
      linear-gradient(180deg, rgba(8, 12, 15, 0.48), rgba(8, 12, 15, 0.96));
  }

  .industry-media img {
    min-height: 100%;
  }

  .industry-content {
    position: relative;
    z-index: 1;
    padding: 56px 18px 76px;
  }

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

  .story-card {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .hero-content,
  .section,
  .systems,
  .engineering,
  .blueprint,
  .technology-wall,
  .enterprise-layer,
  .engagements,
  .portal-preview,
  .expertise-bench,
  .contact,
  .footer {
    width: calc(100% - 28px);
  }

  h1 {
    font-size: 2.7rem;
  }

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

  .hero-metrics div {
    width: 100%;
  }

  .trust-strip,
  .service-grid,
  .process-grid,
  .portal-metrics,
  .form-split,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .blueprint-diagram {
    min-height: 720px;
  }

  .blueprint-core {
    inset: 43% 20%;
  }

  .blueprint-node {
    width: min(172px, 42vw);
  }

  .blueprint-node:nth-of-type(1) { left: 8%; top: 5%; }
  .blueprint-node:nth-of-type(2) { right: 8%; left: auto; top: 12%; }
  .blueprint-node:nth-of-type(3) { left: 8%; right: auto; top: 25%; }
  .blueprint-node:nth-of-type(4) { right: 8%; top: 33%; }
  .blueprint-node:nth-of-type(5) { right: 8%; bottom: 18%; }
  .blueprint-node:nth-of-type(6) { left: 8%; bottom: 12%; }
  .blueprint-node:nth-of-type(7) { left: 8%; bottom: 29%; }
  .blueprint-node:nth-of-type(8) { right: 8%; left: auto; top: 55%; }

  .portal-top,
  .portal-rows span {
    display: grid;
  }

  .brand-logo {
    width: 154px;
    height: 41px;
  }

  .brand {
    padding: 8px 10px;
  }

  .map-visual {
    min-height: 470px;
  }

  .map-node {
    min-width: 132px;
    font-size: 0.88rem;
  }

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

  .stack-tab {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip span {
    min-height: 56px;
    justify-content: start;
  }

  .footer {
    display: grid;
  }
}

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

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

  .hero-shade::after,
  .blueprint-diagram .blueprint-node::after,
  .portal-screen::before,
  .portal-top strong::before {
    animation: none !important;
  }
}
