:root {
  --ink: #020d1e;
  --ink-2: #06162c;
  --ink-3: #0a203b;
  --blue: #1473ff;
  --cyan: #25d3de;
  --teal: #18b6a8;
  --amber: #ffbd38;
  --white: #f7fbff;
  --muted: #9caec4;
  --line: rgba(86, 183, 226, 0.25);
  --light-line: #d9e4ef;
  --shell: 1380px;
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "Manrope", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  line-height: 1.55;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  color: inherit;
}
.tech-shell {
  width: min(var(--shell), calc(100% - 88px));
  margin-inline: auto;
}
.signal-cursor {
  position: fixed;
  width: 280px;
  height: 280px;
  pointer-events: none;
  z-index: 100;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(
    circle,
    rgba(37, 211, 222, 0.12),
    transparent 68%
  );
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.site-header {
  height: 96px;
  padding: 0 max(44px, calc((100vw - var(--shell)) / 2));
  display: flex;
  align-items: center;
  gap: 36px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 13, 30, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-right: auto;
  min-width: 310px;
}
.brand img {
  width: 130px;
  height: auto;
  display: block;
}
.brand span {
  display: grid;
}
.brand strong {
  font-size: 15px;
}
.brand small {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.site-header nav {
  display: flex;
  gap: 28px;
}
.site-header nav a {
  font-size: 13px;
  font-weight: 700;
  color: #cad8e8;
  position: relative;
  padding: 16px 0;
}
.site-header nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: 0.25s;
  transform-origin: left;
}
.site-header nav a:hover:after {
  transform: scaleX(1);
}
.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.facebook {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1877f2;
  display: grid;
  place-items: center;
}
.facebook svg {
  width: 19px;
  fill: white;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--amber);
  color: #071326;
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 800;
  border-radius: 5px;
}
.header-cta svg,
.button svg {
  width: 19px;
  fill: currentColor;
}
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  padding: 9px 13px;
  border-radius: 4px;
}
.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 61% 10%,
      rgba(18, 121, 177, 0.22),
      transparent 33%
    ),
    linear-gradient(125deg, #020b19, #041329 63%, #061c31);
  border-bottom: 1px solid var(--line);
}
.hero:before,
.services:before,
.capability-map:before,
.testimonials:before,
.contact:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(55, 155, 206, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55, 155, 206, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}
.hero-grid {
  min-height: 780px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.84fr) 390px;
  align-items: center;
  gap: 24px;
  padding: 64px 0 74px;
  position: relative;
  z-index: 2;
}
.hero-copy h1,
.section-heading h2,
.approach h2,
.clients h2,
.contact h2 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.98;
}
.hero-copy h1 {
  font-size: clamp(54px, 4.4vw, 72px);
  margin: 0 0 24px;
  max-width: 760px;
}
.eyebrow,
.section-kicker {
  display: flex;
  gap: 15px;
  align-items: center;
  color: var(--amber);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin: 0 0 24px;
}
.eyebrow:after,
.section-kicker:after {
  content: "";
  width: 70px;
  height: 1px;
  background: currentColor;
}
.hero-lede {
  font-size: 17px;
  color: #b9c8d9;
  max-width: 660px;
  margin: 0;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin: 34px 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 5px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  transition: 0.2s;
  cursor: pointer;
}
.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}
.button.amber {
  background: var(--amber);
  color: #071326;
}
.button.blue {
  background: var(--blue);
  color: white;
}
.button.outline {
  border-color: rgba(93, 187, 230, 0.65);
  background: rgba(5, 28, 51, 0.6);
}
.button.amber-outline {
  border-color: var(--amber);
}
.hero-proof {
  display: flex;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 38px 0 0;
}
.hero-proof li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-right: 1px solid var(--line);
  font-size: 11px;
}
.hero-proof li:first-child {
  padding-left: 0;
}
.hero-proof li:last-child {
  border: 0;
}
.proof-icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cyan);
  font-family: var(--display);
  font-size: 16px;
}
.hero-visual {
  height: 630px;
  position: relative;
  clip-path: polygon(17% 0, 100% 0, 100% 100%, 9% 100%, 25% 58%, 7% 33%);
  border: 1px solid var(--line);
}
.hero-image {
  position: absolute;
  margin: 0;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-main {
  inset: 0 0 42% 0;
}
.hero-image-detail {
  inset: 59% 0 0 9%;
}
.hero-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 13, 30, 0.68), transparent 32%),
    linear-gradient(0deg, rgba(2, 13, 30, 0.54), transparent 30%);
  pointer-events: none;
}
.visual-status {
  position: absolute;
  top: 0;
  left: 17%;
  right: 0;
  z-index: 2;
  background: rgba(2, 13, 30, 0.92);
  border-bottom: 1px solid var(--line);
  padding: 9px 14px;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.visual-status i {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #35d69b;
  border-radius: 50%;
  margin-right: 7px;
}
.visual-caption {
  position: absolute;
  z-index: 2;
  left: 21%;
  bottom: 24px;
  max-width: 250px;
  background: rgba(2, 13, 30, 0.9);
  border: 1px solid var(--line);
  padding: 15px;
}
.visual-caption small {
  display: block;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 8px;
}
.visual-caption strong {
  font-size: 13px;
}
.hero-ai {
  height: 630px;
  border: 1px solid rgba(37, 211, 222, 0.55);
  background: linear-gradient(
    160deg,
    rgba(8, 33, 61, 0.96),
    rgba(2, 13, 30, 0.98)
  );
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
}
.hero-ai-head {
  display: flex;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.hero-ai-head > div {
  display: grid;
}
.hero-ai-head strong {
  font-size: 17px;
}
.hero-ai-head small {
  font-size: 10px;
  color: var(--muted);
}
.ai-orbit {
  width: 38px;
  height: 38px;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  box-shadow: 0 0 25px rgba(37, 211, 222, 0.17);
}
.hero-ai-greeting {
  display: flex;
  gap: 13px;
  margin: 28px 0 20px;
}
.hero-ai-greeting > span {
  width: 36px;
  height: 36px;
  border: 1px solid var(--teal);
  color: var(--teal);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
  flex: 0 0 auto;
}
.hero-ai-greeting p {
  font-size: 12px;
  margin: 3px 0;
  color: #d3dfeb;
}
.hero-ai-suggestions {
  display: grid;
  gap: 10px;
}
.hero-ai-suggestions button {
  border: 1px solid var(--line);
  background: #0a203a;
  border-radius: 5px;
  text-align: left;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  cursor: pointer;
}
.hero-ai-suggestions button:hover {
  border-color: var(--cyan);
  background: #0d2948;
}
.hero-ai-form {
  display: flex;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  gap: 8px;
}
.hero-ai-form input {
  min-width: 0;
  flex: 1;
  background: #06172c;
  border: 1px solid var(--line);
  color: white;
  padding: 13px;
  border-radius: 4px;
  font-size: 11px;
}
.hero-ai-form button {
  width: 44px;
  border: 0;
  background: var(--cyan);
  color: #02101f;
  border-radius: 4px;
  font-size: 20px;
}
.section-index {
  position: absolute;
  left: max(18px, calc((100vw - var(--shell)) / 2 - 70px));
  top: 70px;
  z-index: 3;
  color: var(--amber);
  display: grid;
  font-family: var(--display);
  line-height: 1;
}
.section-index strong {
  font-size: 26px;
}
.section-index span {
  font-size: 12px;
  color: #7890aa;
}
.hero-index {
  top: 150px;
}
.circuit-rule {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 18px;
  display: flex;
  align-items: center;
  z-index: 4;
}
.circuit-rule span {
  height: 1px;
  background: var(--line);
  flex: 1;
}
.circuit-rule i {
  width: 8px;
  height: 8px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
}
.services {
  position: relative;
  padding: 108px 0 120px;
  background: #edf3f8;
  color: #07162d;
}
.services:before {
  opacity: 0.23;
  mask-image: linear-gradient(180deg, #000, transparent);
}
.section-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 48px;
}
.section-heading h2 {
  font-size: clamp(50px, 5vw, 76px);
  margin: 0;
  max-width: 850px;
}
.section-heading > p {
  font-size: 15px;
  color: #50627a;
  margin: 0 0 7px;
}
.services .section-kicker,
.approach .section-kicker,
.clients .section-kicker {
  color: #007b99;
}
.service-explorer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 210px 330px 1fr;
  min-height: 650px;
  border: 1px solid #9db3c8;
  background: #fff;
  box-shadow: 0 30px 80px rgba(7, 27, 54, 0.12);
}
.category-rail {
  display: flex;
  flex-direction: column;
  background: #07182e;
  color: white;
}
.category-tab {
  flex: 1;
  min-height: 130px;
  border: 0;
  border-bottom: 1px solid rgba(127, 185, 214, 0.2);
  background: transparent;
  text-align: left;
  padding: 22px;
  display: grid;
  align-content: center;
  cursor: pointer;
  position: relative;
}
.category-tab span {
  position: absolute;
  top: 13px;
  right: 13px;
  font-family: var(--display);
  color: #567089;
}
.category-tab strong {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 0.06em;
}
.category-tab small {
  color: #7f97af;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.category-tab.active {
  background: linear-gradient(110deg, #0c3974, #0a2546);
  box-shadow: inset 4px 0 var(--cyan);
}
.category-tab.active strong {
  color: #fff;
}
.service-menu {
  background: #0a2038;
  color: white;
  border-right: 1px solid rgba(127, 185, 214, 0.3);
  display: flex;
  flex-direction: column;
}
.service-button {
  flex: 1;
  min-height: 78px;
  border: 0;
  border-bottom: 1px solid rgba(127, 185, 214, 0.18);
  background: transparent;
  color: #dbe7f2;
  text-align: left;
  padding: 0 22px;
  cursor: pointer;
  display: flex;
  gap: 13px;
  align-items: center;
  font-size: 13px;
}
.service-button span {
  font-family: var(--display);
  font-size: 19px;
  color: #6f8ba5;
}
.service-button.active {
  background: linear-gradient(90deg, #0d55ad, #0f3b70);
  box-shadow: inset 0 0 0 1px var(--blue);
  color: white;
}
.service-button.active span {
  color: var(--cyan);
}
.service-detail {
  display: grid;
  grid-template-rows: 340px 1fr;
  background: #06162b;
  color: white;
}
.detail-media {
  position: relative;
  overflow: hidden;
}
.detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 22, 43, 0.6), transparent 50%);
}
.media-coordinate {
  position: absolute;
  z-index: 1;
  right: 18px;
  top: 18px;
  background: rgba(2, 13, 30, 0.82);
  border: 1px solid var(--cyan);
  color: var(--cyan);
  padding: 7px 10px;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.08em;
}
.detail-copy {
  padding: 28px 34px;
  position: relative;
  background-image:
    linear-gradient(rgba(52, 145, 194, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 145, 194, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
}
.detail-category {
  margin: 0;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 9px;
  font-weight: 800;
}
.detail-copy h3 {
  font-family: var(--display);
  font-size: 36px;
  margin: 3px 0 8px;
}
.detail-description {
  font-size: 13px;
  color: #aebfd0;
  margin: 0;
  max-width: 690px;
}
.detail-points {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 18px 0 0;
  margin: 0;
}
.detail-points li {
  font-size: 10px;
  color: #c8d5e2;
  border-left: 2px solid var(--teal);
  padding-left: 9px;
}
.detail-copy > a {
  position: absolute;
  right: 28px;
  bottom: 24px;
  border: 1px solid var(--amber);
  color: var(--amber);
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 800;
  border-radius: 3px;
}
.approach {
  position: relative;
  background: white;
  color: #07162d;
}
.approach-top {
  padding: 110px 0;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 70px;
  align-items: stretch;
}
.approach-copy h2 {
  font-size: clamp(50px, 4.8vw, 74px);
  margin: 0 0 22px;
}
.approach-copy > p:not(.section-kicker) {
  color: #53667d;
  max-width: 720px;
}
.process {
  margin-top: 46px;
  border-top: 1px solid var(--light-line);
}
.process article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--light-line);
}
.process article > strong {
  font-family: var(--display);
  font-size: 34px;
  color: #0d66d4;
}
.process article span {
  font-size: 12px;
  color: #5a6b80;
}
.process article b {
  font-family: var(--display);
  font-size: 20px;
  color: #07162d;
  display: block;
}
.approach-media {
  position: relative;
  min-height: 560px;
  clip-path: polygon(8% 0, 100% 0, 100% 94%, 0 100%, 0 10%);
}
.approach-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.approach-overlay {
  position: absolute;
  left: 40px;
  bottom: 40px;
  max-width: 330px;
  padding: 20px;
  background: rgba(2, 13, 30, 0.9);
  border-left: 3px solid var(--amber);
  color: white;
}
.approach-overlay small {
  display: block;
  color: var(--cyan);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.approach-overlay strong {
  font-family: var(--display);
  font-size: 22px;
}
.capability-map {
  position: relative;
  background: #041329;
  color: white;
  padding: 80px 0 105px;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.capability-map h3 {
  font-family: var(--display);
  font-size: clamp(34px, 3.2vw, 50px);
  text-align: center;
  margin: 0 auto 50px;
}
.capability-lines {
  display: flex;
  align-items: center;
  margin: 0 auto -1px;
  width: 72%;
}
.capability-lines span {
  height: 1px;
  background: linear-gradient(90deg, var(--amber), var(--cyan));
  flex: 1;
}
.capability-lines i {
  width: 14px;
  height: 14px;
  border: 2px solid var(--cyan);
  background: #041329;
  border-radius: 50%;
}
.capability-stories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.capability-stories article {
  border-top: 1px solid var(--line);
  text-align: center;
  padding-top: 0;
}
.capability-stories figure {
  height: 270px;
  margin: 0 0 22px;
  overflow: hidden;
  position: relative;
}
.capability-stories figure:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #041329, transparent 55%);
}
.capability-stories img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.capability-stories p {
  font-size: 9px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.capability-stories h4 {
  font-family: var(--display);
  font-size: 34px;
  margin: 0 0 10px;
}
.capability-stories article > span {
  color: #9cb0c4;
  font-size: 11px;
  display: block;
  max-width: 350px;
  margin: auto;
}
.clients {
  position: relative;
  padding: 100px 0;
  background: #f5f8fb;
  color: #07162d;
}
.clients .tech-shell {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 70px;
  align-items: center;
}
.clients h2 {
  font-size: clamp(52px, 4.8vw, 72px);
  margin: 0 0 20px;
}
.clients-intro > p:last-child {
  color: #53667d;
}
.logo-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #b8c9d8;
  position: relative;
  background: white;
  box-shadow: 12px 12px 0 #e2ebf2;
}
.logo-rail:before {
  content: "CLIENT SIGNAL / ACTIVE";
  position: absolute;
  top: -27px;
  left: 0;
  color: #007b99;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.1em;
}
.logo-rail figure {
  height: 150px;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  border-right: 1px solid #d6e1eb;
}
.logo-rail figure:last-child {
  border: 0;
}
.logo-rail img {
  max-width: 100%;
  max-height: 82px;
  object-fit: contain;
}
.testimonials {
  position: relative;
  padding: 100px 0;
  background: #031126;
  color: white;
  overflow: hidden;
}
.testimonials .section-kicker {
  color: var(--cyan);
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 50px;
}
.quote-grid blockquote {
  margin: 0;
  padding: 20px 60px 20px 90px;
  position: relative;
  border-right: 1px solid var(--line);
}
.quote-grid blockquote:last-child {
  border: 0;
}
.quote-mark {
  position: absolute;
  left: 18px;
  top: 0;
  color: var(--cyan);
  font-family: Georgia, serif;
  font-size: 96px;
  line-height: 1;
}
.quote-grid blockquote p {
  font-family: var(--display);
  font-size: clamp(28px, 2.6vw, 41px);
  line-height: 1.22;
  margin: 0 0 35px;
}
.quote-grid cite {
  display: flex;
  gap: 8px;
  font-style: normal;
  align-items: baseline;
}
.quote-grid cite strong {
  color: var(--amber);
}
.quote-grid cite span {
  font-size: 11px;
  color: #9fb0c4;
}
.contact {
  position: relative;
  background: linear-gradient(110deg, #02101f, #061a31);
  padding: 100px 0;
  color: white;
  overflow: hidden;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 65px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.contact-copy h2 {
  font-size: clamp(54px, 4.8vw, 76px);
  margin: 0 0 22px;
}
.contact-copy > p:not(.section-kicker) {
  color: #a9bacb;
  font-size: 15px;
  max-width: 700px;
}
.contact-actions {
  display: flex;
  gap: 14px;
  margin: 35px 0;
}
.contact-services {
  border: 1px solid var(--line);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  max-width: 100%;
  font-size: 11px;
}
.contact-services i {
  width: 5px;
  height: 5px;
  background: var(--cyan);
  border-radius: 50%;
}
.contact-media {
  height: 470px;
  position: relative;
  clip-path: polygon(10% 0, 100% 0, 100% 90%, 89% 100%, 0 100%, 0 12%);
}
.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #041329, transparent 55%);
}
.contact-trace {
  position: absolute;
  z-index: 2;
  left: 15%;
  right: 8%;
  bottom: 20%;
  display: flex;
  align-items: center;
}
.contact-trace span {
  height: 2px;
  background: var(--cyan);
  flex: 1;
}
.contact-trace i {
  width: 20px;
  height: 20px;
  border: 3px solid var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--amber);
}
footer {
  background: #020a17;
  border-top: 1px solid var(--line);
}
.footer-main {
  min-height: 140px;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  gap: 50px;
  align-items: center;
}
.footer-main > img {
  width: 170px;
}
.footer-main p {
  font-size: 12px;
  color: #9aacbf;
}
.footer-links {
  display: flex;
  gap: 24px;
  font-size: 11px;
  color: #cad7e3;
}
.footer-bottom {
  border-top: 1px solid rgba(84, 157, 192, 0.14);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  color: #62788f;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.ai-chat {
  position: fixed;
  right: 24px;
  bottom: 22px;
  z-index: 100;
}
.ai-chat-toggle {
  border: 1px solid var(--cyan);
  background: #072544;
  color: white;
  border-radius: 999px;
  padding: 7px 16px 7px 7px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  cursor: pointer;
}
.ai-chat-toggle .ai-orbit {
  width: 38px;
  height: 38px;
}
.ai-chat-toggle > span:last-child {
  display: grid;
  text-align: left;
  font-size: 12px;
  font-weight: 800;
}
.ai-chat-toggle small {
  font-size: 8px;
  color: var(--cyan);
  letter-spacing: 0.15em;
}
.ai-chat-panel {
  position: absolute;
  right: 0;
  bottom: 64px;
  width: 390px;
  max-height: min(650px, calc(100vh - 110px));
  display: none;
  grid-template-rows: auto minmax(140px, 1fr) auto auto;
  border: 1px solid var(--cyan);
  border-radius: 8px;
  background: #06162c;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}
.ai-chat.open .ai-chat-panel {
  display: grid;
  animation: panel-in 0.2s ease-out;
}
.ai-chat-head {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 11px;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}
.ai-chat-head > span:nth-child(2) {
  display: grid;
}
.ai-chat-head strong {
  font-size: 13px;
}
.ai-chat-head small {
  font-size: 8px;
  color: var(--muted);
}
.ai-chat-close {
  border: 0;
  background: none;
  font-size: 24px;
  cursor: pointer;
}
.ai-chat-log {
  padding: 16px;
  overflow-y: auto;
  display: grid;
  align-content: start;
  gap: 10px;
}
.ai-msg {
  max-width: 88%;
  padding: 11px 13px;
  border-radius: 5px;
  font-size: 11px;
}
.ai-msg.bot {
  background: #0b2846;
  border: 1px solid var(--line);
}
.ai-msg.user {
  background: #165ccb;
  margin-left: auto;
}
.ai-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 16px 12px;
}
.ai-chip {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 6px 8px;
  font-size: 8px;
  cursor: pointer;
}
.ai-chat-form {
  display: flex;
  padding: 12px;
  border-top: 1px solid var(--line);
  gap: 7px;
}
.ai-chat-form input {
  flex: 1;
  min-width: 0;
  background: #020e1e;
  border: 1px solid var(--line);
  color: white;
  padding: 10px;
  font-size: 10px;
  border-radius: 3px;
}
.ai-chat-form button {
  border: 0;
  background: var(--amber);
  color: #061326;
  padding: 0 14px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 800;
}
@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1380px) {
  .tech-shell {
    width: min(var(--shell), calc(100% - 48px));
  }
  .site-header {
    padding: 0 24px;
  }
  .brand span {
    display: none;
  }
  .brand {
    min-width: 150px;
  }
  .site-header nav {
    gap: 18px;
  }
  .hero-grid {
    grid-template-columns: 1fr 420px;
  }
  .hero-ai {
    grid-column: 1/-1;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 18px;
  }
  .hero-ai-head {
    border: 0;
    padding: 0;
  }
  .hero-ai-greeting {
    margin: 0;
  }
  .hero-ai-form {
    padding: 0;
    border: 0;
  }
  .hero-ai-suggestions {
    display: none;
  }
  .hero {
    min-height: 940px;
  }
  .service-explorer {
    grid-template-columns: 180px 280px 1fr;
  }
  .section-index {
    display: none;
  }
}
@media (max-width: 900px) {
  .site-header {
    height: 76px;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .site-header nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    background: #031126;
    padding: 22px;
    flex-direction: column;
    border-bottom: 1px solid var(--line);
  }
  .site-header nav.open {
    display: flex;
  }
  .nav-actions .facebook {
    display: none;
  }
  .header-cta {
    padding: 10px 12px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }
  .hero {
    min-height: auto;
  }
  .hero-visual {
    height: 540px;
  }
  .hero-ai {
    grid-template-columns: 1fr;
    height: auto;
  }
  .hero-ai-greeting,
  .hero-ai-form {
    margin-top: 14px;
  }
  .section-heading,
  .approach-top,
  .clients .tech-shell,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .service-explorer {
    grid-template-columns: 1fr;
  }
  .category-rail {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .category-tab {
    min-height: 110px;
  }
  .service-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .service-button {
    min-height: 68px;
  }
  .service-detail {
    grid-template-rows: 300px auto;
  }
  .detail-copy {
    min-height: 310px;
  }
  .capability-stories {
    grid-template-columns: 1fr;
  }
  .capability-stories article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    text-align: left;
    align-items: center;
  }
  .capability-stories figure {
    grid-row: 1/5;
    height: 280px;
    margin: 0;
  }
  .capability-stories article > span {
    margin: 0;
  }
  .logo-rail {
    grid-template-columns: 1fr 1fr;
  }
  .quote-grid {
    grid-template-columns: 1fr;
  }
  .quote-grid blockquote {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 50px;
  }
  .contact-media {
    height: 350px;
  }
  .footer-main {
    grid-template-columns: 180px 1fr;
  }
  .footer-links {
    grid-column: 1/-1;
    padding-bottom: 30px;
  }
  .hero-proof {
    flex-wrap: wrap;
    gap: 14px;
  }
  .hero-proof li {
    border: 0;
    padding: 0 15px 0 0;
  }
}
@media (max-width: 560px) {
  .tech-shell {
    width: calc(100% - 30px);
  }
  .brand {
    min-width: 0;
  }
  .brand img {
    width: 98px;
  }
  .header-cta {
    font-size: 0;
  }
  .header-cta svg {
    width: 20px;
  }
  .hero-grid {
    padding: 52px 0;
  }
  .hero-copy h1 {
    font-size: 51px;
  }
  .hero-lede {
    font-size: 14px;
  }
  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }
  .button {
    width: 100%;
  }
  .hero-proof {
    display: grid;
  }
  .hero-visual {
    height: 430px;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 12% 58%, 0 36%);
  }
  .visual-caption {
    left: 16%;
    right: 8%;
  }
  .hero-ai {
    padding: 16px;
  }
  .services,
  .clients,
  .testimonials,
  .contact {
    padding: 76px 0;
  }
  .section-heading h2,
  .approach-copy h2,
  .clients h2,
  .contact-copy h2 {
    font-size: 48px;
  }
  .section-heading {
    gap: 20px;
  }
  .category-rail {
    grid-template-columns: 1fr;
  }
  .category-tab {
    min-height: 82px;
  }
  .service-menu {
    grid-template-columns: 1fr;
  }
  .service-detail {
    grid-template-rows: 240px auto;
  }
  .detail-copy {
    padding: 24px 20px;
    min-height: 370px;
  }
  .detail-points {
    display: grid;
    gap: 8px;
  }
  .detail-copy > a {
    position: static;
    display: inline-block;
    margin-top: 20px;
  }
  .approach-top {
    padding: 76px 0;
  }
  .approach-media {
    min-height: 390px;
  }
  .process article {
    grid-template-columns: 55px 1fr;
  }
  .capability-stories article {
    display: block;
    text-align: left;
  }
  .capability-stories figure {
    height: 240px;
    margin-bottom: 18px;
  }
  .logo-rail {
    grid-template-columns: 1fr;
  }
  .logo-rail figure {
    border-right: 0;
    border-bottom: 1px solid #d6e1eb;
  }
  .quote-grid blockquote {
    padding: 20px 12px 45px 58px;
  }
  .quote-grid blockquote p {
    font-size: 28px;
  }
  .quote-mark {
    left: 0;
    font-size: 76px;
  }
  .contact-services {
    flex-wrap: wrap;
  }
  .footer-main {
    grid-template-columns: 1fr;
    padding: 35px 0;
  }
  .footer-links {
    display: grid;
    gap: 9px;
  }
  .footer-bottom {
    display: grid;
    gap: 8px;
  }
  .ai-chat {
    right: 10px;
    bottom: 10px;
  }
  .ai-chat-panel {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 90px);
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  .signal-cursor {
    display: none;
  }
}
