:root {
  color-scheme: dark;
  --ink: #fff3d6;
  --ink-soft: #f2d69a;
  --muted: #bba478;
  --paper: #0c0a07;
  --surface: #120e09;
  --surface-2: #1a1208;
  --line: #3a270f;
  --line-dark: rgba(255, 255, 255, 0.16);
  --graphite: #070707;
  --graphite-2: #17110b;
  --signal: #ffc928;
  --signal-soft: #33240c;
  --copper: #f26a1b;
  --copper-dark: #b84510;
  --steel: #f29b21;
  --field: #100c08;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  --shadow-soft: 0 16px 42px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 201, 40, 0.022) 1px, transparent 1px),
    linear-gradient(rgba(255, 201, 40, 0.018) 1px, transparent 1px),
    linear-gradient(120deg, #070707 0%, #0d0905 46%, #170b03 100%);
  background-size: 54px 54px, 54px 54px, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    repeating-linear-gradient(100deg, transparent 0 42px, rgba(255, 201, 40, 0.014) 43px, transparent 44px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 6px);
  opacity: 0.42;
}

img,
svg {
  display: block;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 80;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

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

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 90;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), #ff9c2b, var(--signal));
  transform: scaleX(0);
  transform-origin: left;
  box-shadow: 0 0 18px rgba(255, 201, 40, 0.52);
}

.site-ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.site-ambient span {
  position: absolute;
  height: 1px;
  width: min(42vw, 560px);
  background: linear-gradient(90deg, transparent, rgba(255, 201, 40, 0.48), rgba(242, 106, 27, 0.62), transparent);
  opacity: 0.24;
  transform: rotate(-16deg);
  animation: ambientTrace 16s linear infinite;
}

.site-ambient span:nth-child(1) {
  left: -8vw;
  top: 18vh;
}

.site-ambient span:nth-child(2) {
  right: -12vw;
  top: 48vh;
  animation-delay: -5s;
}

.site-ambient span:nth-child(3) {
  left: 22vw;
  bottom: 14vh;
  animation-delay: -9s;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(8, 7, 5, 0.94);
  border-color: var(--line);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(100% - 32px, var(--max));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  padding: 6px 0;
}

.brand-logo {
  width: clamp(188px, 17vw, 248px);
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.3));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.88rem;
  font-weight: 760;
}

.site-nav a {
  position: relative;
  padding-block: 6px;
}

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

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 4px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94svh;
  color: #fff;
  background: var(--graphite);
  overflow: clip;
}

.hero picture,
.hero img,
.hero-overlay,
.neural-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: 58% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 7, 5, 0.98) 0%, rgba(9, 8, 6, 0.86) 38%, rgba(15, 10, 5, 0.44) 74%),
    linear-gradient(0deg, rgba(10, 7, 4, 0.74) 0%, rgba(10, 7, 4, 0.06) 52%);
}

.hero-tech-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.22;
  background:
    linear-gradient(rgba(255, 201, 40, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 201, 40, 0.075) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.78) 38%, transparent 76%);
}

.neural-canvas {
  z-index: 1;
  pointer-events: none;
  opacity: 0.48;
  mix-blend-mode: screen;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  background:
    repeating-linear-gradient(90deg, transparent 0 94px, rgba(255, 201, 40, 0.045) 95px, transparent 96px),
    repeating-linear-gradient(0deg, transparent 0 94px, rgba(255, 201, 40, 0.035) 95px, transparent 96px);
  opacity: 0.24;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.78) 52%, transparent 92%);
}

.hero::after {
  display: none;
}

.hero-tech-layer::before {
  display: none;
}

.hero-tech-layer span {
  display: none;
}

.hero-tech-layer span:nth-child(1) {
  left: 8%;
  top: 26%;
}

.hero-tech-layer span:nth-child(2) {
  left: 18%;
  top: 62%;
  animation-delay: 1.2s;
}

.hero-tech-layer span:nth-child(3) {
  left: 42%;
  top: 43%;
  animation-delay: 2.1s;
}

.hero-tech-layer span:nth-child(4) {
  right: 11%;
  top: 31%;
  animation-delay: 3.2s;
}

.hero-tech-layer span:nth-child(5) {
  right: 18%;
  bottom: 21%;
  animation-delay: 4.4s;
}

.hero-horizon {
  position: absolute;
  left: 50%;
  right: 0;
  bottom: 34px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 201, 40, 0.16);
  border-bottom: 1px solid rgba(255, 201, 40, 0.16);
  background: rgba(7, 5, 3, 0.44);
  backdrop-filter: blur(10px);
}

.hero-horizon span {
  min-height: 46px;
  display: grid;
  place-items: center;
  color: rgba(255, 226, 106, 0.82);
  font-size: 0.68rem;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-left: 1px solid rgba(255, 201, 40, 0.12);
  animation: horizonBlink 4.8s ease-in-out infinite;
}

.hero-horizon span:nth-child(even) {
  color: rgba(255, 177, 47, 0.82);
  animation-delay: 1.2s;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, var(--max));
  min-height: 94svh;
  margin: 0 auto;
  padding: 124px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(40px, 7vw, 104px);
  align-items: center;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--copper);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.bsp-section .eyebrow {
  color: #ffb12f;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.8rem, 8vw, 8.6rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero h1 span + span {
  margin-top: 0.06em;
  font-size: 0.52em;
}

.brand-expansion {
  width: fit-content;
  max-width: 100%;
  margin: 18px 0 0;
  padding: 8px 12px;
  color: #ffc928;
  font-size: clamp(0.82rem, 1.3vw, 1.08rem);
  font-weight: 920;
  line-height: 1.2;
  text-transform: uppercase;
  border-left: 3px solid var(--copper);
  background:
    linear-gradient(90deg, rgba(242, 106, 27, 0.18), rgba(255, 201, 40, 0.04)),
    rgba(8, 6, 4, 0.54);
}

.hero-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 1.8vw, 1.42rem);
}

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

.hero-metrics {
  width: min(100%, 720px);
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 201, 40, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 201, 40, 0.2);
}

.hero-metrics div {
  position: relative;
  min-height: 86px;
  padding: 16px;
  background: rgba(8, 6, 4, 0.78);
  overflow: hidden;
}

.hero-metrics div::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 201, 40, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 201, 40, 0.06) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.24;
}

.hero-metrics span,
.hero-metrics strong {
  position: relative;
  z-index: 1;
  display: block;
}

.hero-metrics span {
  color: rgba(255, 177, 47, 0.84);
  font-size: 0.72rem;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-metrics strong {
  margin-top: 10px;
  font-size: 1.08rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 18px;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 880;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--copper);
  border-color: var(--copper);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--copper-dark);
  border-color: var(--copper-dark);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.hero-panel {
  align-self: end;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(10, 8, 5, 0.72);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.panel-topline {
  min-height: 58px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.panel-topline span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  font-weight: 760;
}

.panel-topline strong {
  color: #ffd84d;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: statusPulse 2.2s ease-in-out infinite;
}

.hero-panel dl {
  margin: 0;
}

.hero-panel dl > div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  padding: 18px;
}

.hero-panel dl > div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-panel dt {
  color: #ffb12f;
  font-weight: 920;
}

.hero-panel dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.panel-spectrum {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  gap: 5px;
  padding: 16px 18px 18px;
  border-top: 1px solid rgba(255, 201, 40, 0.18);
}

.panel-spectrum span {
  min-height: 18px;
  background: linear-gradient(0deg, rgba(242, 106, 27, 0.86), rgba(255, 201, 40, 0.82));
  opacity: 0.58;
  transform-origin: bottom;
}

.panel-spectrum span:nth-child(2n) {
  min-height: 32px;
  animation-delay: 0.22s;
}

.panel-spectrum span:nth-child(3n) {
  min-height: 44px;
  animation-delay: 0.38s;
}

.panel-spectrum span:nth-child(5n) {
  min-height: 26px;
  animation-delay: 0.62s;
}

.mission-strip {
  position: relative;
  z-index: 4;
  width: min(100% - 32px, var(--max));
  margin: -54px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mission-strip::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 201, 40, 0.8), rgba(242, 106, 27, 0.9), transparent);
  opacity: 0.72;
}

.strip-item {
  position: relative;
  min-height: 178px;
  padding: 28px;
  overflow: hidden;
  transition: background 180ms ease, transform 180ms ease;
}

.strip-item::before {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 201, 40, 0.18);
  background:
    linear-gradient(90deg, rgba(255, 201, 40, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(255, 201, 40, 0.14) 1px, transparent 1px);
  background-size: 11px 11px;
  opacity: 0.22;
  transform: skew(-8deg);
}

.strip-item:hover {
  background: #171009;
  transform: translateY(-2px);
}

.strip-item + .strip-item {
  border-left: 1px solid var(--line);
}

.strip-item span {
  display: block;
  color: var(--signal);
  font-size: 0.8rem;
  font-weight: 920;
}

.strip-item strong {
  display: block;
  margin-top: 13px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.strip-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.section {
  position: relative;
  padding: 110px 0;
  scroll-margin-top: 74px;
  overflow: hidden;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.intro-section {
  background:
    linear-gradient(116deg, rgba(255, 201, 40, 0.04), transparent 34%),
    var(--surface);
}

.tech-visual-band {
  position: relative;
  color: #fff;
  padding: 86px 0 96px;
  background:
    linear-gradient(110deg, rgba(242, 106, 27, 0.14), transparent 34%),
    linear-gradient(250deg, rgba(255, 201, 40, 0.12), transparent 38%),
    #080705;
  overflow: hidden;
}

.tech-visual-band::before,
.tech-visual-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tech-visual-band::before {
  background:
    repeating-linear-gradient(90deg, transparent 0 78px, rgba(255, 201, 40, 0.08) 79px, transparent 80px),
    repeating-linear-gradient(0deg, transparent 0 78px, rgba(255, 201, 40, 0.06) 79px, transparent 80px);
  opacity: 0.28;
}

.tech-visual-band::after {
  display: none;
}

.tech-ticker {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-block: 1px solid rgba(255, 201, 40, 0.18);
  background: rgba(8, 6, 4, 0.68);
}

.tech-ticker div {
  width: min(100% - 32px, var(--max));
  min-width: 0;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
  padding: 12px 0;
  color: rgba(255, 226, 106, 0.82);
  font-size: 0.72rem;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tech-ticker span {
  position: relative;
  padding-left: 18px;
}

.tech-ticker span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.ops-layer {
  position: relative;
  z-index: 1;
  margin-top: 58px;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.ops-copy h2 {
  max-width: 680px;
  color: #fff;
  font-size: clamp(2.35rem, 4.6vw, 5.1rem);
}

.ops-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 243, 214, 0.84);
  font-size: 1.08rem;
}

.ops-pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.ops-pill-grid span {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  color: #ffe26a;
  border: 1px solid rgba(255, 201, 40, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.82rem;
  font-weight: 820;
}

.ops-console {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 201, 40, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 201, 40, 0.08), transparent 42%),
    linear-gradient(315deg, rgba(242, 106, 27, 0.14), transparent 36%),
    #070604;
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.36);
}

.ops-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 201, 40, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(255, 201, 40, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.28;
  pointer-events: none;
}

.ops-console-header,
.ops-system,
.ops-telemetry {
  position: relative;
  z-index: 1;
}

.ops-console-header {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 201, 40, 0.16);
}

.ops-console-header span,
.ops-telemetry span,
.ops-node span {
  color: rgba(255, 243, 214, 0.62);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ops-console-header strong {
  color: #ffc928;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ops-system {
  min-height: 470px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, 1fr);
  padding: 26px;
}

.ops-mark {
  grid-column: 5 / 9;
  grid-row: 3 / 7;
  align-self: center;
  justify-self: center;
  width: min(150px, 30vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 201, 40, 0.28);
  border-radius: var(--radius);
  background: rgba(8, 6, 4, 0.82);
  box-shadow: 0 0 52px rgba(242, 106, 27, 0.14);
}

.ops-mark img {
  width: 72%;
}

.ops-node {
  position: relative;
  z-index: 2;
  min-height: 116px;
  padding: 16px;
  border: 1px solid rgba(255, 201, 40, 0.22);
  border-radius: var(--radius);
  background: rgba(10, 8, 5, 0.9);
}

.ops-node strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.12;
}

.ops-node p {
  margin: 8px 0 0;
  color: rgba(255, 243, 214, 0.72);
  font-size: 0.88rem;
  line-height: 1.35;
}

.node-prototype {
  grid-column: 1 / 5;
  grid-row: 1 / 3;
}

.node-logic {
  grid-column: 9 / 13;
  grid-row: 1 / 3;
}

.node-connect {
  grid-column: 1 / 5;
  grid-row: 7 / 9;
}

.node-intel {
  grid-column: 9 / 13;
  grid-row: 7 / 9;
}

.ops-path {
  position: relative;
  z-index: 1;
  height: 1px;
  align-self: center;
  background: linear-gradient(90deg, transparent, rgba(255, 201, 40, 0.46), rgba(242, 106, 27, 0.38), transparent);
}

.path-a {
  grid-column: 4 / 7;
  grid-row: 3;
  transform: rotate(18deg);
}

.path-b {
  grid-column: 7 / 10;
  grid-row: 3;
  transform: rotate(-18deg);
}

.path-c {
  grid-column: 4 / 7;
  grid-row: 7;
  transform: rotate(-18deg);
}

.path-d {
  grid-column: 7 / 10;
  grid-row: 7;
  transform: rotate(18deg);
}

.ops-telemetry {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 201, 40, 0.16);
}

.ops-telemetry div {
  min-height: 92px;
  padding: 16px;
  border-right: 1px solid rgba(255, 201, 40, 0.16);
}

.ops-telemetry div:last-child {
  border-right: 0;
}

.ops-telemetry strong {
  display: block;
  margin-top: 10px;
  color: #ffc928;
  line-height: 1.22;
}

.ai-section {
  position: relative;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 201, 40, 0.18), transparent 44%),
    linear-gradient(315deg, rgba(242, 106, 27, 0.24), transparent 38%),
    var(--graphite);
  overflow: hidden;
}

.current-projects-section {
  position: relative;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 201, 40, 0.12), transparent 36%),
    linear-gradient(315deg, rgba(242, 106, 27, 0.18), transparent 42%),
    #090806;
}

.akces-section {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(242, 106, 27, 0.16), transparent 38%),
    linear-gradient(290deg, rgba(255, 201, 40, 0.1), transparent 42%),
    #080706;
}

.akces-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 201, 40, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 201, 40, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.42;
}

.current-projects-section::before,
.ai-section::before,
.systems-section::before,
.project-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, transparent 0 88px, rgba(255, 201, 40, 0.06) 89px, transparent 90px),
    repeating-linear-gradient(0deg, transparent 0 88px, rgba(255, 201, 40, 0.04) 89px, transparent 90px);
  opacity: 0.42;
}

.current-project-grid,
.akces-grid,
.ai-grid,
.project-grid,
.systems-section .container {
  position: relative;
  z-index: 1;
}

.intro-grid,
.bsp-grid,
.project-grid,
.ai-grid,
.current-project-grid,
.akces-grid,
.contact-grid {
  display: grid;
  gap: clamp(36px, 6vw, 88px);
}

.intro-grid {
  grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 1fr);
  align-items: start;
}

.ai-grid {
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1fr);
  align-items: center;
}

.current-project-grid {
  grid-template-columns: minmax(320px, 0.96fr) minmax(320px, 0.9fr);
  align-items: center;
}

.akces-grid {
  grid-template-columns: minmax(320px, 0.82fr) minmax(360px, 1fr);
  align-items: center;
}

.program-chip {
  width: min(100%, 720px);
  margin-top: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 201, 40, 0.28);
  border-radius: var(--radius);
  background: rgba(8, 6, 4, 0.64);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.program-chip:hover,
.program-chip:focus-visible {
  background: rgba(255, 201, 40, 0.08);
  border-color: rgba(255, 201, 40, 0.5);
  transform: translateY(-1px);
}

.program-chip span,
.program-chip strong {
  display: block;
}

.program-chip span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 820;
}

.program-chip strong {
  color: var(--signal);
  font-size: 0.84rem;
  font-weight: 920;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: right;
}

.akces-logo-card {
  position: relative;
}

.akces-logo-plate {
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(255, 201, 40, 0.22);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.akces-logo-plate img {
  width: 100%;
  height: auto;
}

.akces-logo-meta {
  margin-top: 14px;
  min-height: 60px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(255, 201, 40, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.akces-logo-meta span {
  color: #ffb12f;
  font-size: 0.78rem;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.akces-logo-meta strong {
  color: var(--signal);
  font-size: 1.08rem;
}

.akces-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.akces-copy .akces-note {
  padding: 16px 18px;
  color: #ffe26a;
  border: 1px solid rgba(255, 201, 40, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 201, 40, 0.075);
}

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

.akces-points div {
  min-height: 124px;
  padding: 18px;
  border: 1px solid rgba(255, 201, 40, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.akces-points span {
  display: block;
  color: #ffb12f;
  font-size: 0.76rem;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.akces-points strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  line-height: 1.24;
}

.project-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 201, 40, 0.24);
  border-radius: var(--radius);
  background: #050403;
  box-shadow: var(--shadow);
}

.project-visual::before {
  display: none;
}

.project-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.34), transparent 44%),
    linear-gradient(120deg, rgba(242, 106, 27, 0.12), transparent 42%);
  pointer-events: none;
}

.project-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.mesh-overlay {
  display: none;
}

.mesh-overlay::before,
.mesh-overlay::after {
  content: "";
  position: absolute;
  background: rgba(255, 201, 40, 0.7);
}

.mesh-overlay::before {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  opacity: 0.36;
}

.mesh-overlay::after {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  opacity: 0.36;
}

.mesh-overlay span {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 201, 40, 0.86);
  background: rgba(242, 106, 27, 0.54);
  transform: rotate(45deg);
  animation: nodeFlicker 3.2s ease-in-out infinite;
}

.mesh-overlay span:nth-child(1) {
  left: 24%;
  top: 30%;
}

.mesh-overlay span:nth-child(2) {
  right: 22%;
  top: 26%;
  animation-delay: 0.6s;
}

.mesh-overlay span:nth-child(3) {
  left: 39%;
  bottom: 24%;
  animation-delay: 1.2s;
}

.mesh-overlay span:nth-child(4) {
  right: 34%;
  bottom: 31%;
  animation-delay: 1.8s;
}

.project-visual-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 201, 40, 0.22);
  border-radius: var(--radius);
  background: rgba(8, 6, 4, 0.78);
  backdrop-filter: blur(14px);
}

.project-visual-caption span {
  color: #fff;
  font-weight: 920;
}

.project-visual-caption strong {
  color: var(--signal);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.current-project-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.current-project-copy strong {
  color: var(--signal);
}

.project-funding {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 201, 40, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 201, 40, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.055);
}

.project-funding img {
  width: 100%;
  padding: 10px;
  border-radius: var(--radius);
  background: #fff;
}

.project-funding span {
  display: block;
  color: #ffb12f;
  font-size: 0.76rem;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-funding strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 1.12rem;
}

.project-funding p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.project-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.project-meta div {
  position: relative;
  overflow: hidden;
  min-height: 158px;
  padding: 18px;
  border: 1px solid rgba(255, 201, 40, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.project-meta div::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--signal), transparent);
  opacity: 0.82;
}

.project-meta span {
  display: block;
  color: #ffb12f;
  font-size: 0.78rem;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-meta strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 1.16rem;
}

.project-meta p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.project-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.project-highlights span {
  padding: 8px 10px;
  color: #ffe26a;
  background: rgba(255, 201, 40, 0.08);
  border: 1px solid rgba(255, 201, 40, 0.22);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 820;
}

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

h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.section-kicker > p:not(.eyebrow),
.section-heading p,
.intro-copy > p,
.ai-copy > p,
.project-copy > p,
.contact-lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.ai-section .ai-copy > p {
  color: rgba(255, 255, 255, 0.76);
}

.intro-copy .brand-definition {
  margin-top: 20px;
  padding: 18px 20px;
  color: rgba(255, 243, 214, 0.86);
  border: 1px solid rgba(255, 201, 40, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 201, 40, 0.08), transparent 48%),
    rgba(255, 255, 255, 0.04);
}

.brand-definition strong {
  color: #ffc928;
}

.ai-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.ai-capabilities span {
  padding: 8px 10px;
  color: #ffe26a;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 201, 40, 0.32);
  border-radius: var(--radius);
  font-size: 0.83rem;
  font-weight: 820;
}

.ai-console {
  overflow: hidden;
  border: 1px solid rgba(255, 201, 40, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 201, 40, 0.12), transparent 34%),
    rgba(12, 10, 8, 0.76);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.console-header {
  min-height: 64px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 201, 40, 0.2);
}

.console-header span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 820;
}

.console-header strong {
  color: #ffd84d;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.console-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  padding: 22px;
  border-bottom: 1px solid rgba(255, 201, 40, 0.18);
}

.console-grid span {
  min-height: 34px;
  border: 1px solid rgba(255, 201, 40, 0.2);
  border-radius: 6px;
  background: rgba(255, 201, 40, 0.07);
}

.console-grid span:nth-child(3n) {
  background: rgba(255, 201, 40, 0.12);
}

.console-grid span:nth-child(4n) {
  opacity: 0.48;
}

.console-grid span:nth-child(5n) {
  background: rgba(242, 106, 27, 0.1);
}

.ai-wave {
  min-height: 108px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 201, 40, 0.18);
  background:
    linear-gradient(90deg, rgba(255, 201, 40, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 201, 40, 0.06) 1px, transparent 1px);
  background-size: 20px 20px;
}

.ai-wave span {
  display: block;
  min-height: 16px;
  background: linear-gradient(0deg, rgba(242, 106, 27, 0.86), rgba(255, 201, 40, 0.9));
  transform-origin: bottom;
  opacity: 0.72;
}

.ai-wave span:nth-child(2n) {
  min-height: 34px;
  animation-delay: 0.18s;
}

.ai-wave span:nth-child(3n) {
  min-height: 58px;
  animation-delay: 0.34s;
}

.ai-wave span:nth-child(4n) {
  min-height: 76px;
  animation-delay: 0.52s;
}

.ai-pipeline {
  padding: 10px;
}

.ai-pipeline div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius);
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.ai-pipeline div:nth-child(odd) {
  background: rgba(255, 255, 255, 0.045);
}

.ai-pipeline div.is-current {
  background: rgba(255, 201, 40, 0.14);
  transform: translateX(4px);
  box-shadow: inset 3px 0 0 #ffd84d;
}

.ai-pipeline span {
  color: #ffb12f;
  font-weight: 920;
}

.ai-pipeline p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.intro-copy > p {
  margin: 0 0 28px;
}

.principles {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.principles div {
  display: grid;
  grid-template-columns: minmax(120px, 0.45fr) 1fr;
  gap: 18px;
  padding: 20px;
  background: var(--paper);
}

.principles strong {
  color: var(--ink);
}

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

.registry-panel {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 201, 40, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 201, 40, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 26px 26px, 26px 26px, auto;
}

.registry-header {
  min-height: 58px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.registry-header span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 860;
}

.registry-header strong {
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.registry-grid div {
  min-height: 96px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 201, 40, 0.12);
}

.registry-grid div:nth-child(odd) {
  border-right: 1px solid rgba(255, 201, 40, 0.12);
}

.registry-grid dt {
  color: #ffb12f;
  font-size: 0.72rem;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.registry-grid dd {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-weight: 720;
  overflow-wrap: anywhere;
}

.activity-profile {
  margin-top: 34px;
}

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

.activity-grid article {
  min-height: 152px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 10, 7, 0.72);
}

.activity-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 201, 40, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 201, 40, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.44;
}

.activity-grid span,
.activity-grid strong,
.activity-grid p {
  position: relative;
  z-index: 1;
}

.activity-grid span {
  display: block;
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 920;
}

.activity-grid strong {
  display: block;
  margin-top: 16px;
  color: var(--ink);
  line-height: 1.2;
}

.activity-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.capability-section {
  background:
    linear-gradient(118deg, rgba(255, 201, 40, 0.035), transparent 36%),
    var(--paper);
}

.section-heading {
  max-width: 890px;
  margin-bottom: 38px;
}

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

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

.capability-card {
  min-height: 360px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.capability-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 201, 40, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 201, 40, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0;
  transition: opacity 180ms ease;
}

.capability-card > * {
  position: relative;
  z-index: 1;
}

.capability-card:hover {
  transform: translateY(-5px);
  border-color: #e2be68;
  box-shadow: var(--shadow-soft);
}

.capability-card:hover::before {
  opacity: 0.55;
}

.capability-card.featured {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 201, 40, 0.16), transparent 42%),
    var(--graphite);
  border-color: var(--graphite);
}

.capability-card.ai-feature-card {
  grid-column: span 3;
  min-height: 250px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(255, 201, 40, 0.18), transparent 42%),
    linear-gradient(300deg, rgba(242, 106, 27, 0.24), transparent 40%),
    var(--graphite);
  border-color: var(--graphite);
}

.capability-card.ai-feature-card p,
.capability-card.ai-feature-card li {
  color: rgba(255, 255, 255, 0.78);
}

.capability-card.ai-feature-card .card-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.capability-card.ai-feature-card ul {
  border-color: rgba(255, 255, 255, 0.16);
}

.capability-card.ai-feature-card li {
  background: rgba(255, 255, 255, 0.09);
}

.capability-card.featured p,
.capability-card.featured li {
  color: rgba(255, 255, 255, 0.76);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--signal);
  background: var(--signal-soft);
  border-radius: var(--radius);
}

.featured .card-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.card-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-index {
  margin: 6px 0 -6px;
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 920;
}

.capability-card > p:not(.card-index) {
  margin: 0;
  color: var(--muted);
}

.capability-card ul {
  margin: auto 0 0;
  padding: 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  border-top: 1px solid var(--line);
}

.featured ul {
  border-color: rgba(255, 255, 255, 0.16);
}

.capability-card li {
  padding: 6px 9px;
  color: var(--ink-soft);
  background: var(--surface);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 760;
}

.featured li {
  background: rgba(255, 255, 255, 0.09);
}

.bsp-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 201, 40, 0.14), transparent 42%),
    linear-gradient(292deg, rgba(242, 106, 27, 0.2), transparent 36%),
    var(--graphite);
}

.bsp-grid {
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1fr);
  align-items: start;
}

.bsp-section .section-kicker > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.training-stack {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--line-dark);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.training-stack article {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 56px 0.76fr 1fr;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.055);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.training-stack article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent, rgba(255, 201, 40, 0.14), transparent);
  transform: translateX(-120%);
  transition: transform 420ms ease;
}

.training-stack article.is-current {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 3px 0 0 #ffb12f;
}

.training-stack article.is-current::before {
  transform: translateX(120%);
}

.training-stack span {
  color: #ffb12f;
  font-weight: 920;
}

.training-stack h3 {
  color: #fff;
}

.training-stack p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.procurement-section {
  color: #fff;
  background:
    linear-gradient(112deg, rgba(255, 201, 40, 0.1), transparent 38%),
    linear-gradient(292deg, rgba(242, 106, 27, 0.12), transparent 42%),
    #090806;
}

.procurement-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.procurement-section .section-kicker > p:not(.eyebrow) {
  margin-top: 20px;
  color: rgba(255, 243, 214, 0.76);
}

.procurement-status {
  width: fit-content;
  margin-top: 26px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 201, 40, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.procurement-status span,
.procurement-card > span,
.procurement-meta dt {
  display: block;
  color: #ffb12f;
  font-size: 0.76rem;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.procurement-status strong {
  display: block;
  margin-top: 6px;
  color: #fff;
}

.procurement-panel {
  display: grid;
  gap: 14px;
}

.procurement-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 201, 40, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 201, 40, 0.08), transparent 46%),
    rgba(255, 255, 255, 0.055);
}

.procurement-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--signal), transparent);
}

.procurement-card h3 {
  margin-top: 12px;
  color: #fff;
  font-size: clamp(1.28rem, 2vw, 1.72rem);
}

.procurement-card p {
  margin: 16px 0 0;
  color: rgba(255, 243, 214, 0.76);
}

.procurement-card a {
  width: fit-content;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 12px;
  color: #080604;
  border-radius: var(--radius);
  background: var(--signal);
  font-weight: 860;
}

.procurement-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 18px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 201, 40, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 201, 40, 0.2);
}

.procurement-meta div {
  min-height: 78px;
  padding: 12px;
  background: rgba(8, 6, 4, 0.72);
}

.procurement-meta dd {
  margin: 8px 0 0;
  color: #fff;
  font-weight: 780;
}

.project-section {
  background:
    linear-gradient(112deg, rgba(255, 201, 40, 0.04), transparent 34%),
    var(--paper);
}

.project-grid {
  grid-template-columns: minmax(320px, 0.96fr) minmax(320px, 0.82fr);
  align-items: center;
}

.operations-board {
  position: relative;
  color: #fff;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 201, 40, 0.14), transparent 48%),
    var(--graphite);
  box-shadow: var(--shadow);
}

.operations-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 52px, rgba(255, 201, 40, 0.08) 53px, transparent 54px),
    repeating-linear-gradient(0deg, transparent 0 52px, rgba(255, 201, 40, 0.05) 53px, transparent 54px);
  opacity: 0.32;
  pointer-events: none;
}

.board-header,
.board-schematic,
.board-lines {
  position: relative;
  z-index: 1;
}

.board-header {
  min-height: 64px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.board-header span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 780;
}

.board-header strong {
  color: #ffd84d;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-schematic {
  min-height: 132px;
  margin: 16px 18px 0;
  border: 1px solid rgba(255, 201, 40, 0.18);
  background:
    linear-gradient(90deg, rgba(255, 201, 40, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(255, 201, 40, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
}

.board-schematic::before,
.board-schematic::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 201, 40, 0.8), transparent);
}

.board-schematic::before {
  top: 36px;
}

.board-schematic::after {
  bottom: 36px;
}

.board-schematic span {
  position: absolute;
  width: 42px;
  height: 28px;
  border: 1px solid rgba(255, 201, 40, 0.44);
  background: rgba(242, 106, 27, 0.18);
}

.board-schematic span:nth-child(1) {
  left: 12%;
  top: 25px;
}

.board-schematic span:nth-child(2) {
  left: 43%;
  top: 25px;
}

.board-schematic span:nth-child(3) {
  right: 14%;
  bottom: 24px;
}

.board-schematic span:nth-child(4) {
  left: 28%;
  bottom: 24px;
}

.board-lines {
  padding: 10px;
}

.board-lines div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 20px 18px;
  border-radius: var(--radius);
  transition: background 220ms ease, transform 220ms ease;
}

.board-lines div:nth-child(odd) {
  background: rgba(255, 255, 255, 0.06);
}

.board-lines div.is-current {
  background: rgba(255, 201, 40, 0.14);
  transform: translateX(3px);
}

.board-lines span {
  color: #ffb12f;
  font-weight: 920;
}

.board-lines p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.project-copy p:not(.eyebrow) {
  margin: 20px 0 0;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.project-tags span {
  padding: 8px 11px;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 820;
}

.standard-section {
  background:
    linear-gradient(104deg, rgba(255, 201, 40, 0.04), transparent 36%),
    var(--surface-2);
}

.systems-section {
  position: relative;
  color: #fff;
  background:
    linear-gradient(140deg, rgba(255, 201, 40, 0.14), transparent 42%),
    linear-gradient(315deg, rgba(242, 106, 27, 0.18), transparent 44%),
    var(--graphite);
}

.systems-section .section-heading h2 {
  color: #fff;
}

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

.systems-grid article {
  min-height: 300px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 201, 40, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.system-glyph {
  display: none;
}

.system-glyph::before,
.system-glyph::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 201, 40, 0.34);
}

.system-glyph::before {
  transform: rotate(45deg) scale(0.72);
}

.system-glyph::after {
  background:
    linear-gradient(90deg, rgba(255, 201, 40, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(255, 201, 40, 0.14) 1px, transparent 1px);
  background-size: 14px 14px;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  animation: glyphScan 4.6s ease-in-out infinite;
}

.glyph-cuas::after {
  animation-delay: 0.7s;
}

.glyph-infra::after {
  animation-delay: 1.4s;
}

.systems-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 201, 40, 0.18), transparent);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.systems-grid article:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.systems-grid article:hover::before {
  transform: translateX(120%);
}

.systems-grid span,
.systems-grid h3,
.systems-grid p {
  position: relative;
  z-index: 1;
}

.systems-grid span {
  display: block;
  margin-bottom: 42px;
  color: #ffd84d;
  font-weight: 920;
  letter-spacing: 0.08em;
}

.systems-grid p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

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

.standard-grid article {
  min-height: 250px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid #e2be68;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.standard-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent, rgba(255, 201, 40, 0.12), transparent);
  transform: translateX(-120%);
  transition: transform 420ms ease;
}

.standard-grid article:hover {
  background: rgba(255, 201, 40, 0.08);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.standard-grid article:hover::before {
  transform: translateX(120%);
}

.standard-grid span,
.standard-grid h3,
.standard-grid p {
  position: relative;
  z-index: 1;
}

.standard-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--signal);
  font-weight: 920;
}

.standard-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-section {
  background:
    linear-gradient(116deg, rgba(242, 106, 27, 0.08), transparent 34%),
    var(--surface);
}

.contact-grid {
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 0.72fr);
  align-items: start;
}

.contact-lead {
  margin-top: 20px;
}

.company-data {
  margin: 34px 0 0;
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.company-data div {
  display: grid;
  grid-template-columns: 152px 1fr;
  gap: 18px;
  padding: 18px;
  background: var(--paper);
}

.company-data dt {
  color: var(--muted);
  font-weight: 820;
}

.company-data dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.company-data a {
  color: var(--signal);
  font-weight: 880;
}

.contact-form {
  padding: 26px;
  display: grid;
  gap: 18px;
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 201, 40, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 201, 40, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.42;
  pointer-events: none;
}

.contact-form > * {
  position: relative;
  z-index: 1;
}

.contact-form:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.2);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 820;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--field);
  border: 1px solid #e2be68;
  border-radius: var(--radius);
  outline: none;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--signal);
  box-shadow: 0 0 0 3px rgba(255, 201, 40, 0.22);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--signal);
  font-size: 0.92rem;
  font-weight: 820;
}

.site-footer {
  color: #fff;
  background: var(--graphite);
}

.footer-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: #ffb12f;
  font-weight: 820;
}

.footer-brandline {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brandline img {
  width: 178px;
  height: auto;
  flex: 0 0 auto;
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 640ms ease,
    transform 640ms ease;
  transition-delay: calc(var(--reveal-index, 0) * 36ms);
}

.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 72px 72px, 72px 72px;
  }
}

@keyframes ambientTrace {
  0% {
    opacity: 0;
    transform: translateX(-18vw) rotate(-16deg);
  }
  22%,
  68% {
    opacity: 0.28;
  }
  100% {
    opacity: 0;
    transform: translateX(42vw) rotate(-16deg);
  }
}

@keyframes horizonBlink {
  0%,
  100% {
    background: transparent;
  }
  45% {
    background: rgba(255, 201, 40, 0.08);
  }
}

@keyframes microGrid {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 18px 18px, 18px 18px;
  }
}

@keyframes spectrumRise {
  0%,
  100% {
    opacity: 0.42;
    transform: scaleY(0.52);
  }
  48% {
    opacity: 0.9;
    transform: scaleY(1);
  }
}

@keyframes railTrace {
  0%,
  100% {
    opacity: 0.36;
    transform: scaleX(0.34);
  }
  48% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes tickerShift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-46%);
  }
}

@keyframes verticalScan {
  0%,
  28% {
    opacity: 0;
    transform: translateY(-120%);
  }
  45% {
    opacity: 0.8;
  }
  72%,
  100% {
    opacity: 0;
    transform: translateY(120%);
  }
}

@keyframes corePulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(255, 201, 40, 0);
  }
  50% {
    box-shadow: 0 0 34px rgba(255, 201, 40, 0.28);
  }
}

@keyframes linePulse {
  0%,
  100% {
    opacity: 0.26;
  }
  50% {
    opacity: 0.92;
  }
}

@keyframes nodeFlicker {
  0%,
  100% {
    opacity: 0.68;
    filter: saturate(0.9);
  }
  50% {
    opacity: 1;
    filter: saturate(1.4);
  }
}

@keyframes wavePulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scaleY(0.5);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes glyphScan {
  0%,
  100% {
    opacity: 0.34;
    transform: scale(0.92);
  }
  50% {
    opacity: 0.82;
    transform: scale(1);
  }
}

@keyframes sweep {
  0%,
  42% {
    transform: translateX(-120%);
  }
  72%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes signalLine {
  0%,
  100% {
    opacity: 0;
    transform: translateX(-18px);
  }
  42%,
  62% {
    opacity: 1;
    transform: translateX(24px);
  }
}

@keyframes statusPulse {
  0%,
  100% {
    opacity: 0.72;
  }
  50% {
    opacity: 1;
  }
}

@keyframes cellPulse {
  0%,
  100% {
    opacity: 0.38;
    transform: translateY(0);
    background: rgba(255, 201, 40, 0.07);
  }
  42% {
    opacity: 1;
    transform: translateY(-2px);
    background: rgba(255, 201, 40, 0.2);
  }
}

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

  .hero-content,
  .ops-layer,
  .intro-grid,
  .current-project-grid,
  .akces-grid,
  .ai-grid,
  .bsp-grid,
  .project-grid,
  .procurement-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    align-self: auto;
    max-width: 620px;
  }

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

  .ops-copy {
    max-width: 760px;
  }

  .capability-card.ai-feature-card {
    grid-column: span 2;
  }

  .training-stack article {
    grid-template-columns: 48px 1fr;
  }

  .training-stack p {
    grid-column: 2;
  }
}

@media (max-width: 1120px) {
  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    padding: 16px;
    color: var(--ink);
    background: #0c0a07;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 8px;
  }

  .site-nav a {
    padding: 10px 4px;
  }

  .site-nav a::after {
    display: none;
  }

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

  .strip-item + .strip-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .strip-item:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .strip-item:nth-child(2) {
    border-top: 0;
  }
}

@media (max-width: 680px) {
  .nav-shell,
  .container,
  .hero-content,
  .mission-strip {
    width: min(100% - 24px, var(--max));
  }

  .brand-logo {
    width: 174px;
  }

  .hero {
    min-height: auto;
  }

  .hero img {
    object-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(13, 20, 19, 0.96), rgba(13, 20, 19, 0.74)),
      linear-gradient(0deg, rgba(13, 20, 19, 0.62), rgba(13, 20, 19, 0.1));
  }

  .hero-tech-layer {
    opacity: 0.2;
    background-size: 52px 52px;
  }

  .neural-canvas {
    opacity: 0.34;
  }

  .site-ambient,
  .hero-horizon {
    display: none;
  }

  .hero-content {
    min-height: 88svh;
    padding: 104px 0 40px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 16vw, 5rem);
  }

  .brand-expansion {
    font-size: 0.78rem;
  }

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

  .hero-metrics,
  .akces-points {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    min-height: 74px;
  }

  .program-chip {
    align-items: flex-start;
    flex-direction: column;
  }

  .program-chip strong {
    text-align: left;
  }

  .akces-logo-meta {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-brandline {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .footer-brandline img {
    width: 164px;
  }

  .btn {
    width: 100%;
  }

  .project-meta {
    grid-template-columns: 1fr;
  }

  .procurement-meta {
    grid-template-columns: 1fr;
  }

  .project-funding {
    grid-template-columns: 1fr;
  }

  .project-funding img {
    width: min(180px, 100%);
  }

  .registry-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .registry-grid,
  .activity-grid {
    grid-template-columns: 1fr;
  }

  .registry-grid div:nth-child(odd) {
    border-right: 0;
  }

  .project-visual-caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .tech-visual-band {
    padding: 64px 0 74px;
  }

  .ops-layer {
    margin-top: 38px;
  }

  .ops-pill-grid,
  .ops-telemetry {
    grid-template-columns: 1fr;
  }

  .ops-system {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
  }

  .ops-mark {
    width: 104px;
    margin: 0 auto 4px;
  }

  .ops-node {
    min-height: auto;
  }

  .ops-path {
    display: none;
  }

  .ops-telemetry div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 201, 40, 0.16);
  }

  .ops-telemetry div:last-child {
    border-bottom: 0;
  }

  .mesh-overlay {
    inset: 10px;
  }

  .panel-spectrum,
  .board-schematic,
  .ai-wave {
    display: none;
  }

  .system-glyph {
    width: 68px;
    height: 68px;
    opacity: 0.42;
  }

  .hero-panel dl > div,
  .principles div,
  .company-data div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mission-strip {
    margin-top: 0;
    grid-template-columns: 1fr;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .strip-item:nth-child(even) {
    border-left: 0;
  }

  .strip-item:nth-child(2) {
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 76px 0;
  }

  h2 {
    font-size: clamp(2.05rem, 10vw, 3.1rem);
  }

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

  .capability-card.ai-feature-card {
    grid-column: auto;
  }

  .capability-card,
  .standard-grid article {
    min-height: auto;
  }

  .training-stack article,
  .ai-pipeline div,
  .board-lines div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .training-stack p {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .js-enabled [data-reveal],
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
