:root {
  --ink: #061820;
  --ink-soft: #0a303e;
  --panel: #0c2631;
  --panel-light: #103847;
  --paper: #f3f2f2;
  --white: #ffffff;
  --blue: #0088b0;
  --blue-dark: #006786;
  --lime: #38a6cf;
  --orange: #d6006c;
  --text: #dbe3ea;
  --muted: #8492a3;
  --line: rgba(144, 165, 187, 0.2);
  --dark-line: rgba(5, 8, 15, 0.14);
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --wrap: 1240px;
  --radius: 3px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0 0 1em;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: inherit;
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

::selection {
  background: var(--blue);
  color: var(--ink);
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: -100px;
  left: 20px;
  padding: 12px 18px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2, .7, .2, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 22px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: var(--blue);
  color: var(--ink);
  box-shadow: 0 14px 40px rgba(25, 185, 230, 0.16);
}

.btn-primary:hover {
  background: #43cef3;
  box-shadow: 0 18px 44px rgba(25, 185, 230, 0.24);
}

.btn-primary:disabled {
  opacity: 0.55;
  cursor: wait;
  transform: none;
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.025);
}

.btn-ghost:hover {
  border-color: rgba(0, 136, 176, .55);
  background: rgba(0, 136, 176, .06);
}

.btn-lg {
  min-height: 56px;
  padding: 16px 25px;
}

.btn-block {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 78px;
  background: rgba(5, 8, 15, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

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

.brand-signature {
  gap: 12px;
  min-width: 168px;
}

.brand-signature>img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  color: var(--white);
  font-family: var(--font-display);
  line-height: 1;
}

.brand-wordmark strong {
  font-size: 27px;
  font-weight: 700;
  letter-spacing: .03em;
}

.brand-wordmark sup {
  position: relative;
  top: -.1em;
  color: var(--lime);
  font-size: .58em;
}

.brand-wordmark small {
  margin-top: 6px;
  color: #d4d5d5;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .31em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 31px;
}

.nav-links a {
  position: relative;
  color: #aeb9c5;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-nav {
  min-height: 42px;
  padding: 10px 18px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: var(--white);
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  padding: 160px 0 0;
  background:
    radial-gradient(circle at 78% 34%, rgba(0, 136, 176, .16), transparent 24%),
    radial-gradient(circle at 5% 65%, rgba(56, 166, 207, .05), transparent 25%),
    var(--ink);
}

.hero-grid-bg {
  position: absolute;
  inset: 78px 0 0;
  opacity: .28;
  background-image: linear-gradient(rgba(93, 118, 142, .14) 1px, transparent 1px), linear-gradient(90deg, rgba(93, 118, 142, .14) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 680px;
  grid-template-columns: 1.08fr .92fr;
  gap: 70px;
  align-items: center;
  padding-bottom: 55px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: #9eacba;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px var(--lime);
}

.hero h1 {
  max-width: 690px;
  color: var(--white);
  font-size: clamp(52px, 6.1vw, 84px);
  font-weight: 600;
}

.hero h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero-sub {
  max-width: 610px;
  margin: 29px 0 35px;
  color: #9ba8b6;
  font-size: 18px;
  line-height: 1.65;
}

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

.hero-proof {
  display: flex;
  margin-top: 53px;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  display: flex;
  min-width: 130px;
  flex-direction: column;
  padding: 20px 26px 0 0;
}

.hero-proof div+div {
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.hero-proof strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 20px;
}

.hero-proof span {
  color: var(--muted);
  font-size: 11px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(0, 136, 176, .22);
  border-radius: 50%;
  animation: rotate 25s linear infinite;
}

.orbit::after {
  content: "";
  position: absolute;
  top: 15%;
  left: 7%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 14px var(--blue);
}

.orbit-one {
  inset: 1% -10% 1% -10%;
}

.orbit-two {
  inset: 11% 0;
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 34s;
}

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

.ops-console {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(83, 124, 153, .38);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(17, 27, 42, .97), rgba(7, 12, 21, .97));
  box-shadow: 0 50px 100px rgba(0, 0, 0, .45), 0 0 80px rgba(0, 136, 176, .08);
}

.console-top,
.console-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .08em;
}

.console-top {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: #74869a;
}

.live-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--lime);
}

.live-status i,
.console-footer i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 9px var(--lime);
  animation: blink 1.6s ease infinite;
}

@keyframes blink {
  50% {
    opacity: .3;
  }
}

.system-health {
  position: relative;
  height: 183px;
  padding: 21px 21px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.system-health>span {
  color: #8292a3;
  font-size: 11px;
}

.system-health strong {
  display: block;
  margin-top: 1px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 43px;
  font-weight: 500;
  letter-spacing: -.05em;
}

.system-health small {
  margin-left: 2px;
  color: var(--blue);
  font-size: 16px;
}

.health-line {
  position: absolute;
  inset: 62px 0 0;
}

.health-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 24px, rgba(93, 118, 142, .12) 24px 25px);
}

.health-line svg {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.health-line path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 5px rgba(0, 136, 176, .7));
  stroke-dasharray: 700;
  animation: draw-line 3s ease both;
}

@keyframes draw-line {
  from {
    stroke-dashoffset: 700;
  }

  to {
    stroke-dashoffset: 0;
  }
}

.console-cards {
  padding: 7px 18px 13px;
}

.console-card {
  display: grid;
  grid-template-columns: 35px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.console-card:last-child {
  border: 0;
}

.metric-icon {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(0, 136, 176, .35);
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 10px;
}

.monitor-icon::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px var(--panel);
}

.console-card small {
  display: block;
  color: #64778b;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .1em;
}

.console-card b {
  color: #dce6ee;
  font-size: 12px;
  font-weight: 500;
}

.metric-ok,
.metric-pulse {
  font-family: var(--font-mono);
  font-size: 8px;
}

.metric-ok {
  color: var(--lime);
}

.metric-pulse {
  color: var(--blue);
}

.console-footer {
  padding: 11px 18px;
  background: rgba(0, 0, 0, .22);
  color: #526478;
}

.console-footer span:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #74869a;
}

.floating-alert {
  position: absolute;
  z-index: 4;
  right: -24px;
  bottom: 25px;
  display: grid;
  grid-template-columns: 35px 1fr auto;
  min-width: 300px;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(56, 166, 207, .35);
  background: rgba(6, 24, 32, .96);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
}

.alert-check {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
}

.floating-alert small {
  display: block;
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .08em;
}

.floating-alert strong {
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
}

.alert-time {
  color: #607084;
  font-size: 9px;
}

.hero-marquee {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 14, 24, .9);
}

.hero-marquee div {
  width: max-content;
  padding: 14px 0;
  color: #718094;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .11em;
  animation: marquee 24s linear infinite;
}

.hero-marquee i {
  margin: 0 27px;
  color: var(--blue);
  font-style: normal;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.intro,
.capabilities,
.about {
  background: var(--paper);
  color: var(--ink);
}

.intro {
  padding: 115px 0 124px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 40px;
  align-items: start;
}

.section-index {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #607080;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
}

.section-index span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid var(--dark-line);
  border-radius: 50%;
  color: var(--blue-dark);
}

.section-index.light {
  color: #718296;
}

.section-index.light span {
  border-color: var(--line);
  color: var(--blue);
}

.kicker {
  margin-bottom: 13px;
  color: #697581;
  font-size: 14px;
}

.intro h2,
.capabilities h2,
.about h2 {
  font-size: clamp(40px, 5vw, 67px);
  font-weight: 600;
}

.intro h2 span,
.about h2 span {
  color: #95a0a4;
}

.pillars {
  display: grid;
  margin-top: 72px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--dark-line);
  border-left: 1px solid var(--dark-line);
}

.pillar {
  position: relative;
  display: flex;
  min-height: 510px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  overflow: hidden;
  border-right: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
  transition: background .3s ease, color .3s ease, transform .3s ease;
}

.pillar::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.pillar:hover {
  z-index: 2;
  background: var(--ink-soft);
  color: var(--white);
  transform: translateY(-8px);
}

.pillar:hover::before {
  transform: scaleX(1);
}

.pillar-monitor {
  --accent: var(--blue);
}

.pillar-auto {
  --accent: var(--lime);
}

.pillar-ai {
  --accent: var(--orange);
}

.pillar-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.pillar-number {
  color: #9aa3a7;
  font-family: var(--font-mono);
  font-size: 10px;
}

.pillar-symbol {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid currentColor;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 18px;
}

.pillar h3 {
  margin-bottom: 18px;
  font-size: 35px;
  font-weight: 600;
}

.pillar p {
  color: #68737c;
  font-size: 15px;
  line-height: 1.65;
  transition: color .3s ease;
}

.pillar:hover p {
  color: #9ba9b6;
}

.pillar ul {
  margin: 22px 0;
  border-top: 1px solid currentColor;
  border-color: var(--dark-line);
}

.pillar li {
  padding: 9px 0;
  border-bottom: 1px solid var(--dark-line);
  color: #59656f;
  font-size: 12px;
  transition: color .3s ease, border-color .3s ease;
}

.pillar li::before {
  content: "+";
  margin-right: 9px;
  color: var(--accent);
}

.pillar:hover li {
  border-color: var(--line);
  color: #bec8d1;
}

.pillar-link {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .09em;
}

.outcomes {
  padding: 125px 0;
  background: var(--ink-soft);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 110px;
}

.outcomes-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.outcomes h2 {
  margin: 35px 0 28px;
  color: var(--white);
  font-size: clamp(42px, 5.2vw, 68px);
}

.outcomes h2 span {
  color: #526277;
}

.outcomes-copy>p {
  max-width: 500px;
  margin-bottom: 34px;
  color: #8291a1;
  font-size: 16px;
}

.outcomes .text-link {
  color: var(--blue);
}

.outcome-flow {
  border-top: 1px solid var(--line);
}

.outcome-flow article {
  display: grid;
  min-height: 145px;
  grid-template-columns: 55px 1fr auto;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.flow-num {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 10px;
}

.outcome-flow h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 25px;
}

.outcome-flow p {
  margin: 0;
  color: #708093;
  font-size: 13px;
}

.flow-arrow {
  color: #536579;
  font-size: 25px;
}

.flow-result {
  padding: 8px 10px;
  border: 1px solid rgba(56, 166, 207, .35);
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .08em;
}

.capabilities {
  padding: 115px 0 125px;
}

.capabilities-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 60px;
}

.capabilities-head p {
  margin: 0;
  color: #66727b;
  font-size: 14px;
}

.capability-list {
  border-top: 1px solid var(--dark-line);
}

.capability-list article {
  display: grid;
  min-height: 125px;
  grid-template-columns: 80px 1.2fr 1fr auto;
  gap: 25px;
  align-items: center;
  border-bottom: 1px solid var(--dark-line);
  transition: padding .25s ease, background .25s ease;
}

.capability-list article:hover {
  padding: 0 20px;
  background: var(--white);
}

.capability-list article>span {
  color: var(--blue-dark);
  font-family: var(--font-mono);
  font-size: 10px;
}

.capability-list h3 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
}

.capability-list p {
  margin: 0;
  color: #6c7880;
  font-size: 14px;
}

.capability-list i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--dark-line);
  border-radius: 50%;
  color: var(--blue-dark);
  font-style: normal;
}

.about {
  padding: 110px 0 130px;
  border-top: 1px solid var(--dark-line);
}

.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
  align-items: center;
}

.about-mark {
  position: relative;
  min-height: 450px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #2d2b2b;
}

.about-mark img {
  width: 300px;
  height: auto;
}

.about-copy .section-index {
  margin-bottom: 35px;
}

.about-copy>p {
  max-width: 630px;
  margin: 29px 0 40px;
  color: #64717a;
  font-size: 17px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--dark-line);
}

.about-values div {
  padding: 22px 18px 0 0;
}

.about-values div+div {
  padding-left: 18px;
  border-left: 1px solid var(--dark-line);
}

.about-values strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
}

.about-values span {
  color: #7a858c;
  font-size: 11px;
}

.cta-final {
  position: relative;
  overflow: hidden;
  padding: 125px 0;
  background: var(--ink);
}

.cta-glow {
  position: absolute;
  top: -250px;
  left: 10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(0, 136, 176, .12);
  filter: blur(100px);
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 95px;
  align-items: start;
}

.contact-info h2 {
  margin: 35px 0 28px;
  color: var(--white);
  font-size: clamp(48px, 6vw, 75px);
}

.contact-info h2 em {
  color: var(--blue);
  font-style: normal;
}

.contact-info>p {
  max-width: 520px;
  color: #8190a0;
  font-size: 16px;
}

.contact-perks {
  display: grid;
  gap: 12px;
  margin: 36px 0 45px;
}

.contact-perks div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #a9b4bf;
  font-size: 13px;
}

.contact-perks span {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 1px solid rgba(56, 166, 207, .4);
  border-radius: 50%;
  color: var(--lime);
  font-size: 10px;
}

.contact-email {
  display: flex;
  max-width: 420px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
}

.contact-email span {
  color: var(--blue);
}

.contact-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(15, 23, 36, .88);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .3);
}

.form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .1em;
}

.form-head span {
  color: var(--blue);
}

.form-head i {
  color: #536579;
  font-style: normal;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 19px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: #98a6b5;
  font-size: 11px;
  font-weight: 500;
}

.required {
  color: var(--blue);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  outline: 0;
  background: rgba(5, 8, 15, .65);
  color: var(--white);
  font-size: 14px;
  transition: border .2s ease, box-shadow .2s ease;
}

.field input,
.field select {
  height: 49px;
  padding: 0 14px;
}

.field textarea {
  min-height: 105px;
  padding: 13px 14px;
  resize: vertical;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 136, 176, .11);
}

.field select option {
  background: var(--panel);
}

.field-error {
  display: none;
  margin: 5px 0 0;
  color: #ff8c7a;
  font-size: 11px;
}

.field.has-error .field-error {
  display: block;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #ff7a65;
}

.captcha-field {
  margin-bottom: 24px;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.captcha-sum {
  display: grid;
  height: 46px;
  min-width: 90px;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(5, 8, 15, .65);
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 14px;
}

.captcha-row input {
  width: 82px;
}

.captcha-refresh {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  color: #93a2b1;
  cursor: pointer;
  font-size: 19px;
  transition: color .2s ease, border-color .2s ease;
}

.captcha-refresh:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.captcha-refresh.is-spinning {
  animation: spin .5s ease;
}

@keyframes spin {
  to {
    transform: rotate(180deg);
  }
}

.website-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  margin-top: 15px;
  padding: 12px 14px;
  border: 1px solid;
  font-size: 12px;
}

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

.form-status.is-success {
  border-color: rgba(56, 166, 207, .35);
  background: rgba(56, 166, 207, .08);
  color: var(--lime);
}

.form-status.is-error {
  border-color: rgba(255, 122, 101, .3);
  background: rgba(255, 122, 101, .07);
  color: #ff9a88;
}

.form-note {
  margin: 13px 0 0;
  color: #596a7b;
  font-size: 10px;
  text-align: center;
}

.form-note a {
  color: #91a2b2;
  text-decoration: underline;
}

.site-footer {
  background: #03050a;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: grid;
  min-height: 190px;
  grid-template-columns: 1fr 1fr auto;
  gap: 45px;
  align-items: center;
}

.footer-logo {
  width: auto;
  height: auto;
}

.footer-logo.brand-signature>img {
  width: 56px;
  height: 56px;
  flex-basis: 56px;
}

.footer-top>p {
  margin: 0;
  color: #667587;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.35;
}

.back-top {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--blue);
  transition: border-color .2s ease, transform .2s ease;
}

.back-top:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #4e5e70;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .04em;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p span {
  margin: 0 6px;
}

.footer-bottom div {
  display: flex;
  gap: 23px;
}

.footer-bottom a:hover {
  color: var(--blue);
}

.legal-hero {
  padding: 150px 0 45px;
  background: var(--ink);
}

.legal-hero h1 {
  color: var(--white);
  font-size: clamp(42px, 6vw, 72px);
}

.tag {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.legal-updated {
  color: var(--muted);
  font-size: 13px;
}

.legal-body {
  padding: 70px 0 100px;
  background: var(--paper);
  color: #3d4a53;
}

.legal-content {
  max-width: 820px;
  margin: auto;
}

.legal-content h2 {
  margin: 42px 0 15px;
  color: var(--ink);
  font-size: 26px;
}

.legal-content h3 {
  margin: 25px 0 10px;
  color: var(--ink);
  font-size: 18px;
}

.legal-content p,
.legal-content li {
  font-size: 15px;
}

.legal-content ul {
  margin: 0 0 1em;
  padding-left: 20px;
  list-style: disc;
}

.legal-content a {
  color: var(--blue-dark);
}

.legal-toc {
  margin: 35px 0;
  padding: 24px;
  border: 1px solid var(--dark-line);
  background: var(--white);
}

.legal-toc h2 {
  margin-top: 0;
  font-size: 14px;
  text-transform: uppercase;
}

.legal-toc ol {
  margin: 0;
  padding-left: 20px;
}

.back-home {
  display: inline-block;
  margin-top: 35px;
  font-weight: 600;
}

.brand-mark {
  width: 34px;
  height: 34px;
}

.brand-text {
  display: flex;
  margin-left: 10px;
  flex-direction: column;
  color: var(--white);
  font-family: var(--font-display);
  line-height: 1;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .16em;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 35px;
  padding-top: 60px;
  padding-bottom: 40px;
}

.footer-brand p,
.footer-col li {
  color: var(--muted);
  font-size: 13px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0;
}

.footer-col ul {
  display: grid;
  gap: 8px;
}

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

@media (max-width: 1050px) {
  .hero {
    min-height: 1150px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-bottom: 100px;
  }

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

  .hero-visual {
    width: min(100%, 620px);
    min-height: 470px;
    margin: auto;
  }

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

  .pillar {
    min-height: 420px;
  }

  .outcomes-grid,
  .about-grid,
  .contact-grid {
    gap: 60px;
  }

  .capability-list article {
    grid-template-columns: 50px 1fr 1fr auto;
  }
}

@media (max-width: 820px) {
  .wrap {
    width: min(100% - 32px, var(--wrap));
  }

  .site-header {
    height: 70px;
  }

  .brand-signature {
    gap: 9px;
    min-width: 0;
  }

  .brand-signature>img {
    width: 41px;
    height: 41px;
    flex-basis: 41px;
  }

  .brand-wordmark strong {
    font-size: 23px;
  }

  .brand-wordmark small {
    margin-top: 5px;
    font-size: 7px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 70px 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    padding: 35px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 8, 15, .98);
    transform: translateY(-120%);
    transition: transform .3s ease;
  }

  .main-nav.is-open {
    transform: none;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .nav-links a {
    font-family: var(--font-display);
    font-size: 22px;
  }

  .hero {
    min-height: auto;
    padding-top: 130px;
  }

  .hero-grid {
    gap: 60px;
  }

  .hero h1 {
    font-size: clamp(47px, 11.7vw, 68px);
  }

  .hero-marquee {
    position: relative;
  }

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

  .intro-copy {
    margin-top: 15px;
  }

  .outcomes-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .outcomes-copy {
    position: static;
  }

  .about-mark {
    max-width: 560px;
  }

  .capabilities-head {
    align-items: start;
    flex-direction: column;
    gap: 25px;
  }

  .capability-list article {
    grid-template-columns: 40px 1fr auto;
    padding: 25px 0;
  }

  .capability-list article p {
    grid-column: 2;
  }

  .capability-list article i {
    grid-column: 3;
    grid-row: 1 / 3;
  }

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

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 28px, var(--wrap));
  }

  .hero {
    padding-top: 115px;
  }

  .hero-grid {
    padding-bottom: 70px;
  }

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

  .hero-sub {
    font-size: 16px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

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

  .hero-proof div {
    min-width: 0;
    padding-right: 10px;
  }

  .hero-proof div+div {
    padding-left: 10px;
  }

  .hero-proof strong {
    font-size: 15px;
  }

  .hero-proof span {
    font-size: 9px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .ops-console {
    transform: none;
  }

  .floating-alert {
    right: -5px;
    bottom: 7px;
    min-width: 260px;
  }

  .console-card {
    grid-template-columns: 31px 1fr auto;
    gap: 9px;
  }

  .intro,
  .capabilities,
  .about,
  .outcomes,
  .cta-final {
    padding: 82px 0;
  }

  .intro h2,
  .about h2,
  .outcomes h2,
  .contact-info h2 {
    font-size: 40px;
  }

  .pillars {
    margin-top: 48px;
  }

  .pillar {
    min-height: 450px;
    padding: 24px;
  }

  .outcome-flow article {
    min-height: 135px;
    grid-template-columns: 35px 1fr auto;
    gap: 12px;
  }

  .flow-result {
    writing-mode: vertical-rl;
  }

  .capability-list article {
    grid-template-columns: 28px 1fr auto;
    gap: 10px;
  }

  .capability-list h3 {
    font-size: 24px;
  }

  .about-mark {
    min-height: 340px;
  }

  .about-mark img {
    width: 245px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-values div {
    padding: 15px 0;
    border-bottom: 1px solid var(--dark-line);
  }

  .about-values div+div {
    padding-left: 0;
    border-left: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .footer-top {
    grid-template-columns: 1fr auto;
    padding: 35px 0;
  }

  .footer-top>p {
    grid-column: 1;
    grid-row: 2;
  }

  .back-top {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    padding: 20px 0;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}