:root {
  --red: #E1241A;
  --red-deep: #FF3A30;
  --bg: #0B0C0F;
  --bg-2: #111317;
  --bg-3: #1A1D23;
  --line: #23262C;
  --line-2: #2F333B;
  --ink: #F4F2EC;
  --ink-2: #CBCDD2;
  --ink-3: #8A8D94;
  --green: #2BAE66;
  --amber: #F2A30F;
  --blue: #5B9CFF;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}
html,
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Archivo', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility
}

body {
  overflow-x: hidden
}

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

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
  color: inherit
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px
}
@media (max-width: 475px) {
  .container {
    padding: 0 25px;
  }
}
/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 12, 15, .78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line)
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;

}

.brand-logo {
  max-width: 120px;
}

.brand-mark {
  font-family: 'Archivo';
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -.02em;
  color: var(--red-deep);
  line-height: 1
}

.brand-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: .18em;
  color: var(--ink);
  text-transform: uppercase;
  border-left: 2px solid var(--ink-3);
  padding-left: 8px;
  line-height: 1.1
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: 24px
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0
}

.nav-links a:hover {
  color: var(--red-deep)
}

.nav-spacer {
  flex: 1
}
.nav-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-icon-link {
  display: flex;
  align-items: center;
  color: var(--ink-3);
  transition: color .15s ease;
}

.nav-icon-link:hover {
  color: var(--ink);
}
.nav-meta, .nav-meta2 {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  color: var(--ink-3);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .08em
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(43, 174, 102, .6);
  animation: pulse 1.8s infinite
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(43, 174, 102, .5)
  }

  70% {
    box-shadow: 0 0 0 8px rgba(43, 174, 102, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(43, 174, 102, 0)
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 14px;
  transition: all .15s ease;
  white-space: nowrap
}

.btn-primary {
  background: var(--red);
  color: white
}

.btn-primary:hover {
  background: var(--red-deep)
}

.btn-ghost {
  border: 1px solid var(--ink-3);
  color: var(--ink)
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg)
}

.btn .arr {
  transition: transform .2s
}

.btn:hover .arr {
  transform: translateX(3px)
}

/* HERO */
.hero {
  position: relative;
  padding: 30px 0 0;
  border-bottom: 1px solid var(--line)
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border: 1px solid var(--line-2);
  border-radius: 99px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--ink-2)
}

.hero-eyebrow .ig {
  width: 14px;
  height: 14px;
  background: var(--red);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%)
}

h1.hero-title {
  font-size: clamp(48px, 7.4vw, 108px);
  line-height: .92;
  letter-spacing: -.035em;
  font-weight: 800;
  margin-bottom: 32px
}

h1.hero-title .accent {
  color: var(--red-deep);
  font-style: italic;
  font-weight: 900
}

h1.hero-title .strike {
  position: relative;
  display: inline-block
}

h1.hero-title .strike::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  top: 54%;
  height: 6px;
  background: var(--red);
  transform: rotate(-1.5deg)
}

.hero-lede {
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 520px;
  margin-bottom: 36px
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center
}

.hero-cta .btn-primary {
  padding: 16px 22px;
  font-size: 15px
}

.hero-cta .btn-ghost {
  padding: 15px 22px;
  font-size: 15px
}

.hero-meta {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 28px;
  padding-bottom: 28px;
  border-top: 1px solid var(--line)
}

@media (max-width: 574px) {
  .hero-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.hero-meta-item .num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1
}

.hero-meta-item .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 6px
}

/* SCADA visual */
.hmi {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 6px;
  padding: 20px;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .5);
  transform: translateY(-8px)
}
@media (max-width: 475px) {
  .hmi {
    display: none;
  }
}
.hmi-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: .1em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-2)
}

.hmi-bar b {
  color: var(--ink);
  font-weight: 500
}

.hmi-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 16px
}

.hmi-tab {
  padding: 8px 14px;
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .06em;
  color: var(--ink-3);
  border-bottom: 2px solid transparent;
  cursor: pointer
}

.hmi-tab.active {
  color: var(--ink);
  border-bottom-color: var(--red-deep)
}

.hmi-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto auto;
  gap: 8px
}

.tile {
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: 3px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative
}

.tile .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--ink-3);
  letter-spacing: .08em;
  text-transform: uppercase
}

.tile .val {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
  font-family: 'Archivo'
}

.tile .unit {
  font-size: 11px;
  color: var(--ink-2);
  font-weight: 500;
  margin-left: 2px
}

.tile.span2 {
  grid-column: span 2
}

.tile.span3 {
  grid-column: span 3
}

.tile.span4 {
  grid-column: span 4
}

.tile.tall {
  grid-row: span 2
}

.tile.ok {
  border-left: 2px solid var(--green)
}

.tile.warn {
  border-left: 2px solid var(--amber)
}

.tile.alarm {
  border-left: 2px solid var(--red-deep)
}

.blood {
  max-height: 100px;

}
.blood-grid {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: flex-end;
  padding: 20px 0px;
  font-weight: 300;
  font-size: 14px;
}

.blood-grid p {

  padding: 15px 0px;
  font-weight: 300;
  font-size: 14px;
  opacity: 80%;
}

.bar {
  height: 4px;
  border-radius: 2px;
  background: var(--line-2);
  overflow: hidden
}

.bar i {
  display: block;
  height: 100%;
  background: var(--green)
}

.bar.amber i {
  background: var(--amber)
}

.bar.red i {
  background: var(--red-deep)
}

.chart {
  height: 64px;
  width: 100%;
  margin-top: 4px
}

.chart path.line {
  stroke: var(--red-deep);
  stroke-width: 1.6;
  fill: none
}

.chart path.area {
  fill: url(#redfade)
}

.chart .grid line {
  stroke: var(--line-2);
  stroke-width: .5
}

.alarms {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.alm {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--ink-2)
}

.alm .sq {
  width: 8px;
  height: 8px;
  border-radius: 1px
}

.alm.r .sq {
  background: var(--red-deep)
}

.alm.a .sq {
  background: var(--amber)
}

.alm.g .sq {
  background: var(--green)
}

.alm .t {
  color: var(--ink-3);
  margin-left: auto
}

.legend {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--ink-3);
  letter-spacing: .1em
}

.legend .pulse-r {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-deep);
  box-shadow: 0 0 0 0 rgba(255, 58, 48, .6);
  animation: pulser 1.6s infinite
}

@keyframes pulser {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 58, 48, .5)
  }

  70% {
    box-shadow: 0 0 0 7px rgba(255, 58, 48, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 58, 48, 0)
  }
}

/* Section */
section.section {
  padding: 120px 0;
  border-bottom: 1px solid var(--line)
}

.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px
}

.section-head .id {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red-deep);
  align-self: start;
  margin-top: 6px
}

.section-head h2 {
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: .95;
  letter-spacing: -.03em;
  font-weight: 800;
  max-width: 18ch
}

.section-head h2 em {
  font-style: italic;
  color: var(--red-deep)
}

.section-head .desc {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 420px;
  line-height: 1.5;
  justify-self: end
}

/* Capabilities */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line)
}

.cap {
  background: var(--bg-2);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  position: relative;
  transition: background .2s
}
.pointer {
  cursor: pointer;
}
/*.cap:hover {
  background: var(--bg-3)
}*/
.cap:hover {
  background: var(--red);
  color: white

}

.cap:hover p {
  color: rgba(255, 255, 255, .9)
}
.cap:hover .tag {
  color: rgba(255, 255, 255, .9)
}

.cap-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: .1em
}

.cap-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-deep);
  margin-bottom: 8px
}

.cap h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.1
}

.cap p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
  margin-top: auto
}

.cap .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px
}

.cap .tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  padding: 3px 8px;
  border: 1px solid var(--line-2);
  border-radius: 99px;
  color: var(--ink-3);
  letter-spacing: .04em
}

.cap.feat {
  background: var(--red);
  color: white
}

.cap.feat .cap-num {
  color: rgba(255, 255, 255, .7)
}

.cap.feat p {
  color: rgba(255, 255, 255, .9)
}

.cap.feat .cap-icon {
  color: white
}

.cap.feat .tag {
  border-color: rgba(255, 255, 255, .3);
  color: rgba(255, 255, 255, .85)
}

/* How */
.how {
  background: var(--bg-2);
  color: var(--ink);
  padding: 120px 0;
  border-bottom: 1px solid var(--line)
}

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

.step {
  padding: 28px 0;
  border-top: 1px solid var(--line-2);
  position: relative
}

.step .n {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: .1em;
  margin-bottom: 16px
}

.step h4 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 10px
}

.step p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55
}

.agility {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 64px;
  border-top: 1px solid var(--line-2)
}

.agility h3 {
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.02em;
  font-weight: 800;
  margin-bottom: 24px
}

.agility h3 em {
  color: var(--red-deep);
  font-style: italic
}

.agility p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 460px
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-2)
}

.compare>div {
  background: var(--bg);
  padding: 24px
}

.compare h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px
}

.compare .right h5 {
  color: var(--red-deep)
}

.compare ul {
  list-style: none
}

.compare li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px
}

.compare li:last-child {
  border-bottom: 0
}

.compare li svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px
}

.compare .left li {
  color: var(--ink-3)
}

.compare .right li {
  color: var(--ink)
}

/* Industries */
.industries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line)
}

.ind {
  background: var(--bg-2);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 180px;
  
  transition: all .2s
}

.ind:hover {
  background: var(--red);
  color: white
}

.ind:hover .ind-mark {
  color: white
}

.ind:hover .ct {
  color: rgba(255, 255, 255, .85)
}

.ind-mark {
  color: var(--red-deep);
  height: 44px;
  display: flex;
  align-items: flex-start
}

.ind h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-top: auto
}

.ind .ct {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: .06em
}

/* Cases */
.case-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 56px
}

.case {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 340px;
  position: relative;
  overflow: hidden
}

.case .case-vis {
  height: 160px;
  background: var(--bg-3);
  border-radius: 2px;
  position: relative;
  overflow: hidden
}

.case .case-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red-deep)
}

.case h4 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.25
}

.case .stats {
  display: flex;
  gap: 20px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--line-2)
}

.case .stats div {
  display: flex;
  flex-direction: column
}

.case .stats .v {
  font-size: 22px;
  font-weight: 800;
  color: var(--red-deep);
  letter-spacing: -.02em;
  line-height: 1
}

.case .stats .l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: .1em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-top: 4px
}

.vis-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 18px;
  height: 100%
}

.vis-bars i {
  display: block;
  flex: 1;
  background: var(--red-deep);
  border-radius: 1px;
  opacity: .85
}

/* Credentials */
.creds {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 64px;
  align-items: start
}

.badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line)
}

.badge {
  background: var(--bg-2);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 180px
}

.badge .seal {
  width: 48px;
  height: 48px;
  border: 2px solid var(--red-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-deep);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700
}

.badge h5 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.2
}

.badge p {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.45;
  margin-top: auto;
  font-family: 'JetBrains Mono', monospace
}

.stat-block h3 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 24px
}

.stat-block h3 em {
  color: var(--red-deep);
  font-style: italic
}

.stat-block p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 32px
}

.stat-list {
  border-top: 1px solid var(--line-2)
}

.stat-list .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-2)
}

.stat-list .row .k {
  font-size: 14px;
  color: var(--ink-2)
}

.stat-list .row .v {
  font-size: 22px;
  font-weight: 800;
  color: var(--red-deep);
  letter-spacing: -.02em;
  font-family: 'Archivo'
}

.stat-list .row .v small {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-3);
  font-weight: 500;
  margin-left: 4px
}
/* TRSUTED BY */
/* Trusted by */
.trusted {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trusted-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: center;
  margin-bottom: 32px;
}

.trusted-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 56px;
}

.trusted-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.45;
  filter: grayscale(1) brightness(2);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.trusted-logo:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1);
}

.trusted-logo img {
  max-height:60px;
  max-width: 120px;
  object-fit: contain;
}
.trusted-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 56px;
  align-items: center;
  justify-items: center;
}

@media (min-width: 640px) {
  .trusted-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 960px) {
  .trusted-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Awards & certifications section */
.award-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 48px
}
.award-card {
  background: var(--bg-2);
  padding: 32px 28px 26px;
  display: grid;
  grid-template-columns: 1fr 64px;
  grid-template-areas:
    "tag   badge"
    "title badge"
    "sub   badge"
    "foot  foot";
  align-items: start;
  gap: 14px 16px;
  min-height: 240px;
  position: relative;
  transition: background .15s ease;
  container-type: inline-size;
}
.award-card:hover {
  background: var(--bg-3)
}

.award-card--summary {
  background: var(--bg);
  grid-template-columns: 1fr;
  grid-template-areas:
    "tag"
    "title"
    "sub"
    "foot";
}
.award-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3)
}
.award-mark {
  width: 64px;
  height: 64px;
  border: 1.5px solid var(--line-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo';
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -.01em;
  color: var(--ink);
  background: radial-gradient(circle at 30% 30%, rgba(255, 58, 48, .10), transparent 70%), var(--bg-3);
  margin-top: 4px;
  position: relative
}
.award-mark span {
  position: relative;
  z-index: 1
}
.award-mark.gold {
  border-color: var(--red-deep);
  color: var(--red-deep);
  font-size: 26px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 58, 48, .22), transparent 70%), var(--bg-3)
}
.award-mark.iso {
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink);
  width: auto;
  min-width: 64px;
  padding: 0 14px;
  height: 64px
}
.award-mark.hs {
  border-radius: 4px;
  font-family: 'Archivo';
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -.01em;
  color: var(--ink);
  width: auto;
  min-width: 64px;
  padding: 0 14px;
  height: 64px;
  border-color: var(--line-2)
}
.award-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.15;
  margin-top: 4px
}
.award-sub {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.5
}
.award-foot {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  color: var(--ink-3);
  letter-spacing: .12em;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--line-2)
}
.award-card[data-kind="award"]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 48px;
  background: var(--red-deep)
}
.award-card[data-kind="iso"]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 48px;
  background: var(--ink-2)
}
.award-card[data-kind="hs"]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 48px;
  background: var(--amber)
}
.award-card--summary {
  background: var(--bg)
}
.award-card--summary .award-title {
  font-size: 22px;
  line-height: 1.2
}
.award-summary-p {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.55
}
.award-summary-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red-deep);
  padding-top: 14px;
  border-top: 1px dashed var(--line-2)
}
.award-summary-link:hover {
  color: var(--ink)
}
.award-summary-link .arr {
  transition: transform .2s
}
.award-summary-link:hover .arr {
  transform: translateX(3px)
}




.award-badge {
  grid-area: badge;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  align-self: start;
  margin-top: 4px;
}

.prem-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.prem {
  max-width: 80px;
  flex-shrink: 0;
  margin-bottom: 10px;
}
/* CTA */
.cta {
  padding: 140px 0;
  background: var(--red);
  color: white;
  position: relative;
  overflow: hidden
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 50%, rgba(255, 255, 255, .1) 0%, transparent 60%),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(0, 0, 0, .04) 80px, rgba(0, 0, 0, .04) 81px);
  pointer-events: none
}

.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center
}

.cta h2 {
  font-size: clamp(48px, 6.4vw, 88px);
  line-height: .95;
  letter-spacing: -.03em;
  font-weight: 800
}

.cta h2 em {
  font-style: italic;
  font-weight: 900;
  border-bottom: 6px solid white;
  padding-bottom: 4px
}

.cta p {
  font-size: 18px;
  line-height: 1.5;
  margin-top: 20px;
  max-width: 520px;
  color: rgba(255, 255, 255, .9)
}

.cta .btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #0B0C0F;
  color: white;
  padding: 22px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 2px
}

.cta .btn-quote:hover {
  background: black
}

.cta .quote-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  padding: 28px;
  border-radius: 2px;
  backdrop-filter: blur(8px)
}

.cta .quote-card h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: .85
}

.cta .quote-card .field {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  font-size: 14px
}

.cta .quote-card .field:last-child {
  border-bottom: 0
}

.cta .quote-card .field .v {
  font-weight: 600
}

/* Footer */
footer {
  background: var(--bg-2);
  color: var(--ink);
  padding: 80px 0 36px;
  border-top: 1px solid var(--line)
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px
}

.foot-brand .brand-mark {
  color: var(--red-deep);
  font-size: 34px
}

.foot-brand .brand-sub {
  color: var(--ink);
  border-color: var(--ink-3)
}

.foot-brand p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  margin-top: 20px;
  max-width: 280px
}

.foot-col h6 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 18px
}

.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.foot-col li a,
.foot-col li {
  font-size: 14px;
  color: var(--ink-2)
}

.foot-col li a:hover {
  color: var(--red-deep)
}

.foot-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line-2);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--ink-3)
}

/* Modal */
.modal-back {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s
}

.modal-back.open {
  opacity: 1;
  pointer-events: auto
}

.modal {
  background: var(--bg-2);
  max-width: 840px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  transform: translateY(20px) scale(.98);
  transition: transform .25s;
  border: 1px solid var(--line-2)
}

.modal-back.open .modal {
  transform: translateY(0) scale(1)
}

.modal-side {
  background: var(--bg-3);
  color: var(--ink);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.modal-side .brand-mark {
  color: var(--red-deep);
  font-size: 24px
}

.modal-side h3 {
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -.02em;
  font-weight: 800
}

.modal-side .meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-top: auto
}

.modal-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--line-2);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center
}

.modal-close:hover {
  background: var(--red);
  color: white
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.field-group label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3)
}

.field-group input,
.field-group textarea,
.field-group select {
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  background: var(--bg);
  font: inherit;
  font-size: 14px;
  border-radius: 2px;
  color: var(--ink)
}

.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus {
  outline: none;
  border-color: var(--red-deep)
}

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: var(--ink-3)
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px
}

.chip {
  padding: 7px 12px;
  border: 1px solid var(--line-2);
  border-radius: 99px;
  font-size: 12px;
  cursor: pointer;
  background: transparent;
  color: var(--ink-2);
  transition: all .12s;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .04em
}

.chip:hover {
  border-color: var(--red-deep);
  color: var(--ink)
}

.chip.on {
  background: var(--red);
  color: white;
  border-color: var(--red)
}

.submit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px
}

.submit-row .note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: .06em
}

@media (max-width:1100px) {
  .hero-grid {
    grid-template-columns: 1fr
  }

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

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

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

  .agility,
  .cta-inner,
  .creds {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .modal {
    grid-template-columns: 1fr
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr
  }

  .case-strip {
    grid-template-columns: 1fr
  }
}
@media (max-width:600px) {
    .section-head {
    grid-template-columns: 1fr;
    margin-bottom: 32px;
  }
}
@media (max-width: 475px) {
  .cap-grid {
    grid-template-columns: 1fr;
  }


  .section-head h2 {
    font-size: clamp(28px, 8vw, 40px);
  }
  .industries {
    grid-template-columns: 1fr;
  }
  .award-grid {
    grid-template-columns: 1fr;
  }
  .badges {
    grid-template-columns: 1fr;
  }
  .modal-back {
    padding: 12px;
    align-items: flex-end;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .modal {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    max-height: 92vh;
    border-radius: 4px 4px 0 0;
  }

  .modal-side {
    display: none;
  }
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink-2);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width:1126px) {
    .nav-icons {
    display: none;
  }
    .nav-meta2 {
    display: none;
  }

}

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

  .nav-spacer {
    display: none;
  }

  .nav-meta {
    display: none;
  }

  .nav-inner {
    position: relative;
    flex-wrap: wrap;
  }

  .nav-links {
    margin-left: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 0;
    z-index: 100;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.3s ease;
  }

  .nav-links.is-open {
    max-height: 400px;
    opacity: 1;
    pointer-events: auto;
    padding: 8px 0;
  }

  .nav-links a {
    padding: 12px 40px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
    border-left: 2px solid transparent;
  }

  .nav-links a:hover {
    color: va
  }
}
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  width: calc(100% - 48px);
  max-width: 780px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 6px;
  box-shadow: 0 16px 60px rgba(0,0,0,.55);
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
}
.cookie-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(225,36,26,.1);
  border: 1px solid rgba(225,36,26,.25);
  border-radius: 3px;
  padding: 2px 7px;
  margin-bottom: 6px;
}
.cookie-text { flex: 1; min-width: 0; }
.cookie-text p { font-size: 13px; line-height: 1.5; color: var(--ink-2); margin: 0; }
.cookie-text strong { color: var(--ink); font-weight: 600; }
.cookie-link { color: var(--ink-3); text-decoration: underline; text-underline-offset: 2px; transition: color .15s; }
.cookie-link:hover { color: var(--ink); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn { font-size: 13px; padding: 9px 18px; white-space: nowrap; }
@media (max-width: 620px) {
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 14px; padding: 16px 18px; }
  .cookie-actions { width: 100%; justify-content: flex-end; }
  .cookie-banner { bottom: 16px; width: calc(100% - 32px); }
}