:root {
  color-scheme: light;
  --ink: #06142f;
  --ink-soft: #26395f;
  --muted: #60728e;
  --paper: #f7fbff;
  --surface: #ffffff;
  --surface-blue: #edf7ff;
  --line: #d8e7f7;
  --blue-950: #051b3d;
  --blue-900: #082a61;
  --blue-700: #075ec8;
  --blue-600: #0873e8;
  --blue-500: #1497ff;
  --cyan: #28d0c8;
  --green: #1fb77c;
  --amber: #f2a63a;
  --danger: #c74444;
  --shadow: 0 18px 55px rgba(5, 27, 61, 0.14);
  --header-height: 76px;
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(237, 247, 255, 0.78), rgba(255, 255, 255, 0) 420px),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

p {
  margin: 0;
  color: var(--ink-soft);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(216, 231, 247, 0.78);
  background: rgba(247, 251, 255, 0.86);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--blue-950);
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(40, 208, 200, 0.95), rgba(8, 115, 232, 0.98)),
    var(--blue-600);
  box-shadow: 0 12px 28px rgba(8, 115, 232, 0.24);
}

.brand-mark svg {
  width: 23px;
  height: 23px;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text span:first-child {
  font-size: 1.04rem;
}

.brand-text span:last-child {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--blue-900);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -7px;
}

.nav-toggle-lines::after {
  top: 7px;
}

.menu-open .nav-toggle-lines {
  transform: rotate(45deg);
}

.menu-open .nav-toggle-lines::before {
  transform: translateY(7px) rotate(90deg);
}

.menu-open .nav-toggle-lines::after {
  opacity: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #264266;
  font-weight: 700;
  font-size: 0.93rem;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue-700);
  background: rgba(20, 151, 255, 0.1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 8px;
  color: #fff !important;
  background: var(--blue-700);
  box-shadow: 0 12px 24px rgba(7, 94, 200, 0.22);
}

.nav-cta:hover {
  background: var(--blue-600) !important;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

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

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

.button-primary {
  color: #fff;
  background: var(--blue-700);
  box-shadow: 0 16px 30px rgba(7, 94, 200, 0.24);
}

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

.button-secondary {
  color: var(--blue-950);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.58);
}

.button-outline {
  color: var(--blue-700);
  background: #fff;
  border-color: var(--line);
}

.button-outline:hover {
  border-color: rgba(8, 115, 232, 0.34);
  box-shadow: 0 14px 28px rgba(8, 115, 232, 0.12);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(570px, 82svh, 780px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #06142f;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 20, 47, 0.96) 0%, rgba(6, 20, 47, 0.74) 44%, rgba(5, 27, 61, 0.46) 100%),
    radial-gradient(circle at 72% 22%, rgba(40, 208, 200, 0.28), transparent 30%),
    linear-gradient(135deg, #06142f 0%, #092a61 54%, #075ec8 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 92%, transparent);
  opacity: 0.78;
}

.network-canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.hero-content {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  padding: 70px 0;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: #bdefff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--cyan);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 7.8rem);
  font-weight: 900;
}

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

.hero-lede {
  width: min(640px, 100%);
  margin-top: 24px;
  color: rgba(245, 251, 255, 0.88);
  font-size: clamp(1.04rem, 2vw, 1.34rem);
  line-height: 1.7;
}

.hero-actions {
  margin-top: 32px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(700px, 100%);
  margin-top: 48px;
  border-block: 1px solid rgba(255, 255, 255, 0.16);
}

.metric {
  padding: 18px 22px 18px 0;
}

.metric strong {
  display: block;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: rgba(225, 242, 255, 0.74);
  font-size: 0.9rem;
}

.hero-orbit {
  justify-self: end;
  width: min(430px, 100%);
  position: relative;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 26px 70px rgba(3, 10, 22, 0.42);
  backdrop-filter: blur(5px);
}

.hero-orbit::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(140deg, rgba(40, 208, 200, 0.3), rgba(20, 151, 255, 0.02) 48%, rgba(255, 255, 255, 0.2));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
}

.hero-orbit-head {
  display: grid;
  gap: 4px;
}

.hero-orbit-head span {
  color: #bdefff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-orbit-head strong {
  color: #fff;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

.hero-orbit-map {
  position: relative;
  min-height: 255px;
  margin-top: 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(circle at 50% 50%, rgba(40, 208, 200, 0.16), rgba(6, 20, 47, 0.14) 44%, rgba(6, 20, 47, 0.03) 72%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: auto, 38px 38px, 38px 38px;
}

.orbit-node {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-radius: 999px;
  color: rgba(240, 249, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
  font-weight: 800;
}

.orbit-node-cloud {
  top: 20px;
  left: 22px;
}

.orbit-node-security {
  top: 24px;
  right: 20px;
}

.orbit-node-product {
  bottom: 22px;
  left: 18px;
}

.orbit-node-support {
  bottom: 18px;
  right: 20px;
}

.orbit-center {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 32% 30%, rgba(40, 208, 200, 0.92), rgba(8, 115, 232, 0.95) 56%, rgba(6, 20, 47, 0.95));
  box-shadow: 0 0 0 12px rgba(20, 151, 255, 0.14), 0 20px 36px rgba(2, 9, 22, 0.48);
}

.orbit-center strong {
  font-size: 1.45rem;
  line-height: 1;
}

.orbit-center small {
  margin-top: 3px;
  color: rgba(241, 249, 255, 0.78);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-orbit-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.hero-orbit-metrics div {
  padding: 11px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-orbit-metrics span {
  display: block;
  color: rgba(225, 242, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-orbit-metrics strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 1.06rem;
}

.section {
  padding: 86px 0;
}

.section-tight {
  padding: 60px 0;
}

.section-blue {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(5, 27, 61, 0.96), rgba(8, 42, 97, 0.94)),
    var(--blue-950);
}

.section-blue p,
.section-blue .section-kicker,
.section-blue .muted {
  color: rgba(232, 246, 255, 0.78);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.7fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 36px;
}

.section-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.section h2,
.page-hero h1 {
  font-size: clamp(2.15rem, 4vw, 4rem);
  max-width: 780px;
}

.section-header p,
.page-hero p {
  font-size: 1.04rem;
}

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

.service-card,
.insight-card,
.value-card,
.legal-card,
.support-card,
.process-step,
.team-tile,
.contact-panel,
.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 34px rgba(5, 27, 61, 0.07);
}

.service-card {
  min-height: 260px;
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  width: 54px;
  height: 6px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan));
}

.service-card:hover {
  border-color: rgba(8, 115, 232, 0.3);
  transform: translateY(-3px);
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-card h3,
.insight-card h3,
.value-card h3,
.support-card h3,
.process-step h3,
.contact-panel h3,
.form-panel h3 {
  font-size: 1.16rem;
  line-height: 1.22;
}

.service-card p,
.insight-card p,
.value-card p,
.support-card p,
.process-step p,
.contact-panel p,
.form-panel p {
  color: var(--muted);
}

.band {
  border-block: 1px solid var(--line);
  background: #fff;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.78fr);
  gap: 42px;
  align-items: center;
}

.signal-board {
  min-height: 420px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.signal-line {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.signal-line:last-child {
  border-bottom: 0;
}

.signal-line span:first-child {
  color: #bdefff;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.signal-track {
  position: relative;
  height: 8px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
}

.signal-track::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--fill, 68%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--blue-500), var(--amber));
}

.signal-line strong {
  color: #fff;
}

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

.insight-card {
  padding: 24px;
}

.insight-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue-700);
  font-weight: 900;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 56px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 27, 61, 0.98), rgba(7, 94, 200, 0.92)),
    var(--blue-900);
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, transparent 0 35%, rgba(255, 255, 255, 0.1) 35% 36%, transparent 36%),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 150px 150px, 48px 48px;
  opacity: 0.52;
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-content h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.cta-content p {
  margin-top: 10px;
  color: rgba(240, 249, 255, 0.82);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 66px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6, 20, 47, 0.95), rgba(8, 42, 97, 0.82)),
    var(--blue-950);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.62;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(290px, 0.58fr);
  gap: 30px;
  align-items: end;
}

.page-hero p {
  width: min(710px, 100%);
  margin-top: 18px;
  color: rgba(235, 247, 255, 0.82);
}

.page-hero-panel {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 64px rgba(2, 8, 20, 0.38);
  backdrop-filter: blur(5px);
}

.page-hero-panel::before,
.ai-command::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(150deg, rgba(40, 208, 200, 0.28), rgba(8, 115, 232, 0.06) 48%, rgba(255, 255, 255, 0.22));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
}

.page-hero-panel-head {
  display: grid;
  gap: 5px;
}

.page-hero-panel-head span {
  color: #bdefff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.page-hero-panel-head strong {
  color: #fff;
  font-size: 1.18rem;
}

.page-hero-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.page-hero-pill-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(238, 249, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.77rem;
  font-weight: 800;
}

.page-hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.page-hero-stat-grid div {
  padding: 11px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.page-hero-stat-grid span {
  display: block;
  color: rgba(225, 242, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-hero-stat-grid strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 0.96rem;
  line-height: 1.2;
}

.ai-hero {
  padding: 82px 0;
  background:
    linear-gradient(90deg, rgba(6, 20, 47, 0.98), rgba(8, 42, 97, 0.84)),
    radial-gradient(circle at 74% 18%, rgba(40, 208, 200, 0.22), transparent 28%),
    var(--blue-950);
}

.ai-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.55fr);
  gap: 38px;
  align-items: center;
}

.ai-hero h1 {
  max-width: 760px;
}

.ai-command {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.ai-command-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(235, 247, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ai-command-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.ai-command-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.ai-command-row span:first-child {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: var(--blue-950);
  background: var(--cyan);
  font-weight: 900;
}

.ai-command-row strong {
  color: #fff;
  line-height: 1.2;
}

.ai-command-row small {
  color: rgba(235, 247, 255, 0.64);
  font-weight: 800;
}

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

.ai-metric {
  padding: 13px;
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.ai-metric strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
}

.ai-metric span {
  display: block;
  margin-top: 6px;
  color: rgba(235, 247, 255, 0.66);
  font-size: 0.78rem;
}

.breadcrumb {
  display: inline-flex;
  gap: 9px;
  margin-bottom: 18px;
  color: #bdefff;
  font-size: 0.84rem;
  font-weight: 800;
}

.breadcrumb a {
  color: #fff;
}

.matrix {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1fr);
  gap: 26px;
}

.matrix-nav {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.matrix-nav a {
  display: block;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 800;
}

.matrix-nav a:last-child {
  border-bottom: 0;
}

.matrix-nav a:hover {
  color: var(--blue-700);
  background: var(--surface-blue);
}

.matrix-list {
  display: grid;
  gap: 16px;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(170px, 0.38fr) minmax(0, 1fr);
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-row h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  padding: 7px 10px;
  border: 1px solid #cce2f6;
  border-radius: 999px;
  color: #285176;
  background: var(--surface-blue);
  font-size: 0.84rem;
  font-weight: 800;
}

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

.ai-panel {
  min-height: 245px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
}

.ai-panel:nth-child(1),
.ai-panel:nth-child(2) {
  grid-column: span 3;
}

.ai-panel:nth-child(n + 3) {
  grid-column: span 2;
}

.ai-panel strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 8px;
  color: var(--blue-950);
  background: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.ai-panel h3 {
  color: #fff;
}

.ai-panel p {
  margin-top: 12px;
  color: rgba(232, 246, 255, 0.76);
}

.ai-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.62fr);
  gap: 28px;
  align-items: center;
}

.ai-flow-board {
  display: grid;
  gap: 14px;
}

.ai-flow-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(5, 27, 61, 0.07);
}

.ai-flow-item span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue-700);
  font-weight: 900;
}

.ai-flow-item h3 {
  font-size: 1.05rem;
}

.ai-flow-item p {
  margin-top: 5px;
  color: var(--muted);
}

.ai-stack {
  padding: 28px;
  border-radius: 8px;
  border: 1px solid #cce2f6;
  background:
    linear-gradient(135deg, rgba(237, 247, 255, 0.96), rgba(255, 255, 255, 0.98)),
    #fff;
  box-shadow: var(--shadow);
}

.ai-stack-list {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.ai-stack-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 800;
}

.ai-stack-list li:last-child {
  border-bottom: 0;
}

.ai-stack-list span {
  color: var(--blue-700);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.value-card {
  padding: 26px;
}

.value-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.process-step {
  padding: 24px;
}

.process-step .step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue-700);
  font-weight: 900;
}

.team-band {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.58fr);
  gap: 34px;
  align-items: center;
}

.team-tile {
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(237, 247, 255, 0.94), rgba(255, 255, 255, 0.96)),
    #fff;
}

.quote {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  line-height: 1.18;
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 0.82fr);
  gap: 20px;
  align-items: start;
}

.contact-panel,
.form-panel {
  padding: 26px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-item {
  display: grid;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-item span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-item a {
  color: var(--blue-700);
  font-weight: 800;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  color: var(--ink-soft);
  font-weight: 800;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbdff2;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(20, 151, 255, 0.14);
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.legal-nav strong {
  display: block;
  margin-bottom: 11px;
}

.legal-nav a {
  display: block;
  padding: 9px 0;
  color: var(--muted);
  font-weight: 700;
}

.legal-nav a:hover {
  color: var(--blue-700);
}

.legal-card {
  padding: clamp(24px, 4vw, 42px);
}

.legal-card h2 {
  margin-top: 36px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card h3 {
  margin-top: 26px;
  font-size: 1.12rem;
}

.legal-card p,
.legal-card li {
  color: var(--ink-soft);
}

.legal-card p {
  margin-top: 12px;
}

.legal-card ul,
.legal-card ol {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding-left: 22px;
}

.notice {
  margin-bottom: 26px;
  padding: 16px;
  border-left: 4px solid var(--amber);
  border-radius: 8px;
  background: #fff7e8;
}

.notice p {
  color: #68470f;
}

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

.support-card {
  padding: 24px;
}

.site-footer {
  color: rgba(235, 247, 255, 0.82);
  background: var(--blue-950);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) repeat(3, minmax(140px, 0.35fr));
  gap: 28px;
  padding: 54px 0 42px;
}

.footer-top p {
  margin-top: 16px;
  color: rgba(235, 247, 255, 0.72);
}

.footer-col h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-col a {
  display: block;
  padding: 5px 0;
  color: rgba(235, 247, 255, 0.76);
}

.footer-col a:hover {
  color: #fff;
}

.footer-col p {
  margin-top: 0;
  padding: 5px 0;
  color: rgba(235, 247, 255, 0.76);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(235, 247, 255, 0.62);
  font-size: 0.9rem;
}

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

.text-link {
  color: var(--blue-700);
  font-weight: 800;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1040px) {
  .service-grid,
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 14px auto 14px;
    display: grid;
    gap: 2px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .nav-cta {
    margin-top: 4px;
  }

  .hero-content {
    width: min(100% - 28px, var(--max));
    margin-inline: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-orbit {
    max-width: 560px;
  }

  .hero-metrics,
  .page-hero-layout,
  .ai-hero-layout,
  .ai-flow,
  .section-header,
  .split,
  .matrix,
  .team-band,
  .contact-grid,
  .legal-layout,
  .cta-content {
    grid-template-columns: 1fr;
  }

  .cta-content {
    display: grid;
  }

  .matrix-nav,
  .legal-nav {
    position: static;
  }

  .insight-grid,
  .value-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .ai-command {
    max-width: 560px;
  }

  .page-hero-panel {
    max-width: 560px;
  }

  .ai-panel:nth-child(n) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .brand-text span:last-child {
    display: none;
  }

  .hero {
    min-height: clamp(620px, 90svh, 880px);
  }

  .hero-orbit-map {
    min-height: 230px;
  }

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

  .hero-orbit-metrics {
    grid-template-columns: 1fr;
  }

  .metric {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 64px 0;
  }

  .section-tight {
    padding: 46px 0;
  }

  .service-grid,
  .process,
  .footer-top,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .ai-metrics,
  .ai-command-row,
  .page-hero-stat-grid {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .signal-line {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-bottom {
    display: grid;
  }
}

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