:root {
  --ink: #07111f;
  --ink-2: #0b1b30;
  --ink-3: #102944;
  --blue: #0799ff;
  --blue-2: #2ab8ff;
  --blue-soft: #e7f6ff;
  --paper: #f6f8fb;
  --white: #ffffff;
  --muted: #66758a;
  --line: #dce3eb;
  --max: 1180px;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(7, 17, 31, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 em,
h2 em {
  color: var(--blue);
  font-style: normal;
}

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

.section {
  padding: 132px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(7, 153, 255, 0.6);
  outline-offset: 4px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--blue-2);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.eyebrow span {
  opacity: 0.45;
}

.eyebrow-dark {
  color: #168ed8;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 58px;
  padding: 0 26px;
  border: 1px solid var(--blue);
  border-radius: 10px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 40px rgba(7, 153, 255, 0.24);
  font-size: 0.91rem;
  font-weight: 760;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(7, 153, 255, 0.32);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  gap: 10px;
  font-size: 0.78rem;
}

.button-light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.26);
}

.button-light:hover {
  color: var(--white);
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #c4d0dd;
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 180ms ease, gap 180ms ease;
}

.text-link:hover {
  gap: 19px;
  color: var(--white);
}

.text-link-dark {
  color: var(--ink);
}

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

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: 92px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  transition: height 220ms ease, background 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  height: 74px;
  background: rgba(7, 17, 31, 0.88);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  width: 116px;
  height: 52px;
  overflow: hidden;
}

.brand img {
  width: 116px;
  height: auto;
}

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

.main-nav > a:not(.button) {
  position: relative;
  color: #c8d2de;
  font-size: 0.82rem;
  font-weight: 650;
  transition: color 180ms ease;
}

.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:not(.button):hover {
  color: var(--white);
}

.main-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav .lang-link {
  margin-left: 4px;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 7px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 790px;
  padding: 190px 0 0;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 44%, rgba(7, 153, 255, 0.14), transparent 31%),
    linear-gradient(135deg, #06101e 0%, #091a2d 58%, #07111f 100%);
  overflow: hidden;
}

.hero-grid,
.intelligence-grid {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.hero-orb-one {
  top: 85px;
  right: -190px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(42, 184, 255, 0.14);
  box-shadow: inset 0 0 100px rgba(7, 153, 255, 0.06);
}

.hero-orb-two {
  bottom: 80px;
  left: -240px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(440px, 0.97fr);
  align-items: center;
  gap: 82px;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 27px;
  font-size: clamp(3.4rem, 5.4vw, 5.3rem);
  font-weight: 780;
}

.hero h1 em {
  display: block;
  font-weight: 430;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: #aebdcb;
  font-size: clamp(1.03rem, 1.35vw, 1.17rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 42px;
  color: #8597aa;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue);
}

.hero-visual {
  position: relative;
  perspective: 1200px;
}

.product-window {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(10, 30, 50, 0.84);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.42), 0 0 0 10px rgba(255, 255, 255, 0.018);
  backdrop-filter: blur(18px);
  transform: rotateY(-4deg) rotateX(1deg);
  overflow: hidden;
}

.window-topbar {
  display: flex;
  align-items: center;
  height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #768b9e;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.63rem;
}

.window-dots {
  display: flex;
  gap: 6px;
  margin-right: 20px;
}

.window-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #31465b;
}

.window-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  color: #67d8a6;
}

.status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.window-content {
  padding: 30px;
}

.window-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 18px;
}

.window-heading small,
.delivery-card small {
  display: block;
  color: #71869a;
  font-size: 0.65rem;
}

.window-heading strong {
  display: block;
  margin-top: 5px;
  font-size: 1.35rem;
}

.progress-label {
  color: var(--blue-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.73rem;
}

.progress-track {
  height: 3px;
  margin-bottom: 27px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.progress-track span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), #76dcff);
  box-shadow: 0 0 16px var(--blue);
}

.delivery-grid {
  display: grid;
  gap: 10px;
}

.delivery-card {
  display: grid;
  grid-template-columns: 34px 1fr 24px;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.delivery-card.active {
  border-color: rgba(7, 153, 255, 0.34);
  background: linear-gradient(90deg, rgba(7, 153, 255, 0.13), rgba(7, 153, 255, 0.025));
}

.delivery-index {
  color: var(--blue-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.66rem;
}

.delivery-card strong {
  display: block;
  font-size: 0.78rem;
}

.delivery-card b {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: #69ddb0;
  background: rgba(105, 221, 176, 0.09);
  font-size: 0.65rem;
}

.window-footer {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  margin-right: -7px;
  border: 2px solid #10253b;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 0.66rem;
  font-weight: 800;
}

.avatar-stack span + span {
  color: #9aabba;
  background: #263d52;
}

.window-footer p {
  margin: 0;
  color: #7e92a4;
  font-size: 0.62rem;
  line-height: 1.5;
}

.window-footer strong {
  color: #d5dde5;
}

.floating-tag {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #c8d6e2;
  background: rgba(8, 24, 40, 0.92);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  font-size: 0.63rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.floating-tag span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 7px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.58rem;
}

.tag-ai {
  top: 17%;
  right: -38px;
}

.tag-growth {
  bottom: 11%;
  left: -43px;
}

.tag-growth span {
  color: #72e1b3;
  background: rgba(114, 225, 179, 0.1);
}

.capability-strip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 105px;
  padding: 27px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #7e91a4;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.capability-strip i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
}

/* Shared sections */
.section-heading {
  margin-bottom: 60px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  align-items: end;
  gap: 80px;
}

.section-heading h2,
.approach h2,
.fit h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4.4vw, 4.25rem);
  font-weight: 750;
}

.section-intro {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 1rem;
}

.centered-heading {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

/* Services */
.services {
  background: var(--paper);
}

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

.service-card {
  position: relative;
  min-height: 415px;
  padding: 34px;
  border: 1px solid #e0e6ed;
  border-radius: 18px;
  background: var(--white);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  border-color: #c9e9fc;
  box-shadow: 0 24px 60px rgba(7, 17, 31, 0.08);
  transform: translateY(-6px);
}

.service-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(7, 153, 255, 0.08);
  border-radius: 50%;
}

.service-featured {
  border-color: #bde5fb;
  box-shadow: 0 22px 60px rgba(7, 153, 255, 0.09);
}

.service-dark {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.service-number {
  position: absolute;
  top: 35px;
  right: 35px;
  color: #aab6c2;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.64rem;
}

.service-symbol {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 52px;
  place-items: center;
  border-radius: 14px;
  color: var(--blue);
  background: var(--blue-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 1rem;
  font-weight: 800;
}

.service-symbol-ai {
  border: 1px solid rgba(7, 153, 255, 0.18);
  background: transparent;
  box-shadow: inset 0 0 18px rgba(7, 153, 255, 0.08);
}

.service-dark .service-symbol {
  color: var(--blue-2);
  background: rgba(7, 153, 255, 0.11);
}

.service-card h3 {
  margin-bottom: 13px;
  font-size: 1.35rem;
}

.service-card p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-dark p {
  color: #8fa0b1;
}

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

.service-card li {
  position: relative;
  margin-top: 8px;
  padding-left: 15px;
  color: #596a7c;
  font-size: 0.76rem;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 5px;
  height: 1px;
  background: var(--blue);
}

.card-link {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 750;
}

/* Approach */
.approach {
  background: var(--white);
}

.approach-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 120px;
}

.approach h2 {
  margin-bottom: 34px;
}

.large-copy {
  max-width: 570px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.principle {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  padding: 31px 8px;
  border-bottom: 1px solid var(--line);
}

.principle > span {
  padding-top: 5px;
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.7rem;
}

.principle h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.principle p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

/* Intelligence */
.intelligence {
  position: relative;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.intelligence-grid {
  opacity: 0.16;
  mask-image: radial-gradient(circle at 24% 50%, black, transparent 55%);
}

.intelligence-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: 100px;
}

.intelligence-copy h2 {
  max-width: 720px;
  margin-bottom: 30px;
  font-size: clamp(2.4rem, 4.25vw, 4.1rem);
}

.intelligence-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: #91a3b5;
}

.ai-use-cases {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.ai-use-cases span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 99px;
  color: #adc0d1;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.7rem;
}

.ai-orbit {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1;
  margin-inline: auto;
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(7, 153, 255, 0.25);
  border-radius: 50%;
}

.orbit-one {
  inset: 12%;
}

.orbit-two {
  inset: 0;
  border-color: rgba(255, 255, 255, 0.09);
}

.orbit-ring::before,
.orbit-ring::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(255, 255, 255, 0.06);
  transform: translate(-50%, -50%);
}

.orbit-ring::before {
  width: 1px;
  height: 110%;
}

.orbit-ring::after {
  width: 110%;
  height: 1px;
}

.ai-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 116px;
  height: 116px;
  place-content: center;
  border: 1px solid rgba(42, 184, 255, 0.46);
  border-radius: 28px;
  color: var(--white);
  background: radial-gradient(circle at 40% 30%, #25b8ff, #047fd5 60%, #0866a8);
  box-shadow: 0 0 80px rgba(7, 153, 255, 0.32), inset 0 1px rgba(255, 255, 255, 0.35);
  transform: translate(-50%, -50%) rotate(-5deg);
}

.ai-core span {
  font-size: 1.9rem;
  font-weight: 850;
  line-height: 1;
}

.ai-core small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.54rem;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.orbit-dot {
  position: absolute;
  width: 11px;
  height: 11px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 18px var(--blue);
}

.dot-one {
  top: 14%;
  left: 31%;
}

.dot-two {
  right: 9%;
  bottom: 29%;
}

.orbit-label {
  position: absolute;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  color: #8296aa;
  background: rgba(8, 26, 43, 0.86);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.58rem;
}

.label-data {
  top: 23%;
  left: 0;
}

.label-action {
  right: 2%;
  bottom: 18%;
}

/* Process */
.process {
  background: var(--paper);
}

.process .centered-heading {
  margin-bottom: 70px;
}

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

.process-line {
  position: relative;
  top: 38px;
  width: calc(100% - 80px);
  height: 1px;
  margin: 0 auto;
  background: var(--line);
}

.process-line span {
  display: block;
  width: 75%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), #8bdcff);
}

.process-step {
  position: relative;
  z-index: 1;
}

.step-number {
  display: block;
  margin-bottom: 19px;
  color: #96a3af;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.68rem;
}

.step-dot {
  width: 14px;
  height: 14px;
  margin-bottom: 32px;
  border: 4px solid var(--paper);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), 0 0 14px rgba(7, 153, 255, 0.35);
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.process-step p {
  color: var(--muted);
  font-size: 0.84rem;
}

/* Fit */
.fit {
  background: var(--white);
}

.fit-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 115px;
}

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

.fit-list > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  padding: 24px 3px;
  border-bottom: 1px solid var(--line);
}

.fit-list span {
  padding-top: 3px;
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.65rem;
}

.fit-list p {
  margin: 0;
  color: #405165;
  font-size: 0.92rem;
}

/* Contact */
.contact {
  position: relative;
  padding: 140px 0;
  color: var(--white);
  background: var(--blue);
  overflow: hidden;
}

.contact::before,
.contact::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.contact::before {
  top: -320px;
  right: -130px;
  width: 700px;
  height: 700px;
}

.contact::after {
  right: 90px;
  bottom: -440px;
  width: 760px;
  height: 760px;
}

.contact-glow {
  position: absolute;
  top: -30%;
  left: -10%;
  width: 60%;
  height: 150%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 60%);
}

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 940px;
  text-align: center;
}

.contact .eyebrow {
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
}

.contact h2 {
  margin-bottom: 28px;
  font-size: clamp(2.6rem, 5.5vw, 5.2rem);
  font-weight: 770;
}

.contact h2 em {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
}

.contact-lead {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.75);
}

.contact-topics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.contact-topics a {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 99px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.68rem;
  transition: color 180ms ease, background 180ms ease;
}

.contact-topics a:hover {
  color: var(--blue);
  background: var(--white);
}

/* Footer */
.site-footer {
  padding: 72px 0 25px;
  color: #899bae;
  background: #050c16;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  color: var(--white);
  background: radial-gradient(circle at 25% 20%, rgba(7, 153, 255, 0.18), transparent 35%), var(--ink);
}

.error-page-inner {
  max-width: 720px;
  padding-block: 80px;
}

.error-page .brand {
  margin-bottom: 70px;
}

.error-page h1 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 7vw, 5rem);
}

.error-page p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 32px;
  color: #9daebe;
}

.error-page p a {
  color: var(--blue-2);
}

.footer-main {
  display: grid;
  grid-template-columns: 140px 1fr auto auto;
  align-items: center;
  gap: 50px;
  padding-bottom: 55px;
}

.brand-footer {
  width: 108px;
}

.brand-footer img {
  width: 108px;
}

.footer-main p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.6;
}

.footer-main nav {
  display: flex;
  gap: 25px;
}

.footer-main nav a,
.footer-email {
  color: #a4b2c0;
  font-size: 0.73rem;
  font-weight: 650;
  transition: color 180ms ease;
}

.footer-main nav a:hover,
.footer-email:hover {
  color: var(--white);
}

.footer-email {
  color: var(--blue-2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #596b7d;
  font-size: 0.62rem;
}

/* Animation */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.js .reveal-delay-1 {
  transition-delay: 90ms;
}

.js .reveal-delay-2 {
  transition-delay: 180ms;
}

.js .reveal-delay-3 {
  transition-delay: 270ms;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 20px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.88fr);
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 6vw, 4.5rem);
  }

  .approach-layout,
  .fit-layout {
    gap: 70px;
  }

  .service-card {
    padding: 27px;
  }

  .card-link {
    right: 27px;
    left: 27px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 100px 0;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 74px;
  }

  .menu-toggle {
    position: relative;
    z-index: 1002;
    display: block;
  }

  .menu-open .menu-toggle span:nth-of-type(2) {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-of-type(3) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 1001;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 90px 32px 40px;
    background: rgba(7, 17, 31, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .main-nav > a:not(.button) {
    color: var(--white);
    font-size: 1.7rem;
  }

  .main-nav .lang-link {
    margin: 10px 0 0;
    padding: 0;
    border: 0;
    color: var(--blue-2) !important;
    font-size: 0.9rem !important;
  }

  .button-header {
    margin-top: 8px;
  }

  .hero {
    padding-top: 148px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 75px;
  }

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

  .hero-visual {
    width: min(100%, 600px);
    margin-inline: auto;
  }

  .capability-strip {
    margin-top: 85px;
  }

  .capability-strip span:nth-of-type(even),
  .capability-strip i:nth-of-type(even) {
    display: none;
  }

  .split-heading,
  .approach-layout,
  .fit-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .section-intro {
    max-width: 650px;
  }

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

  .intelligence-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .ai-orbit {
    width: min(80vw, 420px);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 55px;
  }

  .process-line {
    display: none;
  }

  .step-dot {
    margin-bottom: 22px;
  }

  .footer-main {
    grid-template-columns: 120px 1fr auto;
  }

  .footer-main nav {
    display: none;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 30px), var(--max));
  }

  .section {
    padding: 82px 0;
  }

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

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 3.6rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-proof {
    flex-direction: column;
    gap: 10px;
    margin-top: 34px;
  }

  .product-window {
    border-radius: 15px;
    transform: none;
  }

  .window-content {
    padding: 20px;
  }

  .window-title {
    max-width: 145px;
  }

  .floating-tag {
    display: none;
  }

  .capability-strip {
    justify-content: flex-start;
    gap: 14px;
    margin-top: 70px;
    overflow: hidden;
  }

  .capability-strip span {
    white-space: nowrap;
  }

  .capability-strip span:nth-of-type(3),
  .capability-strip i:nth-of-type(3) {
    display: none;
  }

  .section-heading h2,
  .approach h2,
  .fit h2,
  .intelligence-copy h2 {
    font-size: clamp(2.25rem, 11vw, 3.15rem);
  }

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

  .service-card {
    min-height: 0;
  }

  .service-dark {
    min-height: 370px;
  }

  .approach-layout,
  .fit-layout {
    gap: 35px;
  }

  .intelligence-layout {
    gap: 50px;
  }

  .ai-orbit {
    width: min(94vw, 360px);
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .process-step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0 15px;
  }

  .step-number {
    grid-column: 1;
    grid-row: 1;
  }

  .step-dot {
    display: none;
  }

  .process-step h3,
  .process-step p {
    grid-column: 2;
  }

  .process-step h3 {
    grid-row: 1;
  }

  .contact {
    padding: 100px 0;
  }

  .contact h2 {
    font-size: clamp(2.5rem, 13vw, 3.7rem);
  }

  .button-light {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
