/* HiLine — Connected intelligence. Self-contained homepage, no runtime CSS dependency. */
:root {
  --navy: #071c30;
  --navy-light: #0c2a47;
  --blue: #297bfa;
  --ice: #8bdcff;
  --paper: #f5f8fc;
  --ink: #142c43;
  --muted: #6c7f91;
  --line: #dce5ee;
  --font: "Avenir Next", "PingFang SC", "Microsoft YaHei", sans-serif;
  --display: "Avenir Next", "PingFang SC", "Microsoft YaHei", sans-serif;
  --mono: "SFMono-Regular", Consolas, monospace;
  --shell: 1280px;
  --gutter: clamp(24px, 5vw, 80px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 15px/1.7 var(--font);
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
svg {
  display: block;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
}
button {
  color: inherit;
}
::selection {
  background: #8bdcff;
  color: #071c30;
}
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 3px solid #4297ff;
  outline-offset: 6px;
}
.shell {
  width: 100%;
  max-width: calc(var(--shell) + 2 * var(--gutter));
  padding-inline: var(--gutter);
  margin-inline: auto;
}
.section {
  padding-block: 112px;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 24px;
  background: white;
  color: var(--ink);
  padding: 12px 20px;
  z-index: 1000;
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: none;
}
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  transition:
    background 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}
.button svg,
.text-link svg,
.card-more svg,
.service-more svg,
.solution-links svg,
.contact-email svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.5;
  flex-shrink: 0;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  color: white;
  background: var(--blue);
  box-shadow: 0 5px 28px #1264f03b;
}
.button-primary:hover {
  background: #448eff;
  box-shadow: 0 8px 30px #1264f05e;
}
.button-small {
  min-height: 40px;
  padding: 9px 18px;
  gap: 20px;
  font-size: 12px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
  color: #2375dc;
}
.text-link svg {
  transition: transform 0.25s;
}
.text-link:hover svg {
  transform: translateX(4px);
}
.eyebrow {
  display: block;
  margin-bottom: 24px;
  font: 10px/1.5 var(--mono);
  letter-spacing: 0.16em;
  color: #3479b8;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 52px;
}
h2 {
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 550;
  line-height: 1.4;
  letter-spacing: -0.045em;
}
.muted-heading {
  color: #7290a8;
}
.section-intro {
  max-width: 410px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  padding-bottom: 5px;
}
.section-intro .text-link {
  margin-top: 22px;
}
/* The navigation stays quiet while the network takes the stage. */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  color: #dbe8f4;
  border-bottom: 1px solid #9cc9f51c;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
.site-header.is-scrolled {
  position: fixed;
  background: #081d30f2;
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 35px #071c301f;
}
.nav-shell {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  flex-shrink: 0;
}
.brand img {
  width: 147px;
  height: auto;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  font-size: 13px;
}
.desktop-nav > a,
.nav-dropdown > a {
  padding-block: 28px;
  white-space: nowrap;
  transition: color 0.2s;
}
.desktop-nav a:hover {
  color: #8bdcff;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chevron {
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}
.dropdown-panel {
  position: absolute;
  top: 100%;
  left: -22px;
  min-width: 210px;
  padding: 12px;
  background: #102b43;
  border: 1px solid #a4d1ff30;
  border-radius: 6px;
  box-shadow: 0 20px 50px #030f2255;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: 0.2s;
}
.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  visibility: visible;
  opacity: 1;
  transform: none;
}
.dropdown-panel a {
  display: block;
  padding: 10px;
  border-radius: 3px;
}
.dropdown-panel a:hover {
  background: #1d3a54;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}
.language-toggle {
  font-family: var(--mono);
  font-size: 11px;
  min-width: 28px;
  min-height: 40px;
  background: none;
  border: 0;
  color: #afc7da;
}
.nav-contact {
  color: white;
  background: #ffffff0c;
  border-color: #8db9e147;
}
.nav-contact:hover {
  background: #ffffff1f;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 1px;
  background: white;
  margin: 6px 0;
  transition: transform 0.2s;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}
.mobile-menu {
  padding: 10px var(--gutter) 24px;
  background: #0a233b;
}
.mobile-menu a {
  display: block;
  border-top: 1px solid #ffffff15;
  padding: 12px 0;
}
/* Signature: an illuminated globe, orbital routes, and an interactive neural field. */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 780px;
  background:
    radial-gradient(ellipse at 83% 42%, #123e653d, transparent 56%),
    linear-gradient(116deg, #081b2c 12%, #08223c 68%, #0a2442);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 95% 90%, #2681e62e, transparent 43%),
    linear-gradient(90deg, #071c30aa, transparent 58%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: 25%;
  right: -10%;
  height: 1px;
  bottom: 95px;
  background: linear-gradient(90deg, transparent, #75b9f438, transparent);
  transform: rotate(-21deg);
  box-shadow: 0 0 45px 15px #55b2ff0b;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.2;
  background-image:
    linear-gradient(#84adcc15 1px, transparent 1px),
    linear-gradient(90deg, #84adcc15 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, transparent 22%, black 100%);
}
.hero-content {
  position: relative;
  padding-top: 160px;
  padding-bottom: 110px;
  z-index: 2;
  pointer-events: none;
}
.hero-content a {
  pointer-events: auto;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 10px/1.5 var(--mono);
  letter-spacing: 0.16em;
  color: #b0cde2;
  margin-bottom: 30px;
}
.status-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #86dafb;
  border-radius: 50%;
  box-shadow: 0 0 14px #7ce2ff;
}
.hero h1 {
  font-size: clamp(52px, 5.45vw, 78px);
  font-weight: 550;
  line-height: 1.24;
  letter-spacing: -0.065em;
  max-width: 680px;
}
.hero-accent {
  background: linear-gradient(95deg, #e2f8ff 0%, #89cfff 54%, #4a96ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: 19px;
  letter-spacing: 0.025em;
  color: #e2edf6;
  margin-top: 28px;
}
.hero-description {
  font-size: 14px;
  line-height: 1.95;
  color: #91adc2;
  margin-top: 15px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 35px;
}
.hero-secondary {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #c0d1e2;
  font-size: 12px;
}
.circle-arrow {
  width: 25px;
  height: 25px;
  border: 1px solid #a7c9e44a;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}
.hero-secondary:hover .circle-arrow {
  background: #ffffff1f;
}
.hero-partner {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 43px;
  width: max-content;
  color: #d3e0eb;
}
.aws-wordmark {
  position: relative;
  font:
    bold 32px/1 Arial,
    sans-serif;
  letter-spacing: -2px;
  padding-bottom: 6px;
}
.aws-smile {
  position: absolute;
  bottom: 0;
  left: 5px;
  right: -1px;
  height: 12px;
  border-bottom: 2px solid #bacbdd;
  border-radius: 50%;
  transform: rotate(-6deg);
}
.hero-partner > div {
  border-left: 1px solid #6e8ca340;
  padding-left: 18px;
  font-size: 10px;
  line-height: 1.8;
}
.hero-partner strong {
  display: block;
  font-weight: 500;
  letter-spacing: 0.035em;
}
.hero-partner > div > span {
  color: #8ca8c0;
  font-size: 10px;
}
.hero-visual {
  position: absolute;
  left: 42%;
  top: 72px;
  width: min(65vw, 950px);
  height: 700px;
  z-index: 1;
  transform: translate(var(--parallax-x, 0px), var(--parallax-y, 0px));
  transition: transform 0.8s cubic-bezier(0.2, 0.65, 0.25, 1);
}
.global-globe {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 0 35px #2b8fdf15);
}
.global-globe text {
  fill: #a0c3da;
  font: 8px var(--mono);
  letter-spacing: 1.5px;
}
.global-globe .globe-caption text {
  font-size: 7px;
  fill: #6992b3;
}
.node-halo {
  stroke: #91d9ff;
  stroke-width: 0.6;
  fill: #62c8ff14;
  animation: node-pulse 4s infinite;
}
.globe-node:nth-of-type(2n) .node-halo {
  animation-delay: -2s;
}
.globe-packet {
  animation: packet-travel 7s linear infinite;
  filter: drop-shadow(0 0 5px #79d7ff);
}
.packet-two {
  animation-delay: -3s;
  animation-duration: 9s;
}
.globe-routes {
  filter: drop-shadow(0 0 4px #589bdc);
}
.neural-field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}
.hero-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: auto;
  min-height: 74px;
  border-top: 1px solid #83b6dc1f;
  color: #92acc2;
  font: 9px/1.6 var(--mono);
  letter-spacing: 0.08em;
  z-index: 3;
}
.hero-bottom > div {
  display: flex;
  gap: 12px;
  align-items: center;
}
.tiny-cross {
  color: #78c9f7;
  font-size: 18px;
}
.hero-visual-note {
  font-size: 8px;
}
.motion-toggle {
  border: 1px solid #92acc24a;
  border-radius: 50%;
  width: 27px;
  height: 27px;
  background: none;
  color: #b5cbde;
  padding: 0;
  font-size: 10px;
}
.scroll-cue {
  font-size: 8px;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 28px;
}
.scroll-cue span {
  font-size: 17px;
  color: #c7e9ff;
}
.motion-paused .hero * {
  animation-play-state: paused !important;
}
@keyframes node-pulse {
  0%,
  100% {
    opacity: 0.4;
    stroke-width: 0.6;
  }
  50% {
    opacity: 1;
    stroke-width: 1.4;
  }
}
@keyframes packet-travel {
  to {
    stroke-dashoffset: -600;
  }
}
.globe-orbits {
  transform-origin: 410px 342px;
  animation: orbit-drift 18s ease-in-out infinite alternate;
}
@keyframes orbit-drift {
  from {
    transform: rotate(-30deg);
  }
  to {
    transform: rotate(-19deg);
  }
}
.no-script-note {
  padding: 20px;
  color: #b9d6ed;
}
.no-script-note a {
  text-decoration: underline;
}
/* Light sections use a crisp, technical material palette. */
.partner-strip {
  padding: 29px 0 34px;
  background: white;
  border-bottom: 1px solid #e6edf3;
}
.partner-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 11px;
  color: #718395;
  margin-bottom: 25px;
}
.partner-heading > span:last-child {
  font: 9px var(--mono);
  letter-spacing: 0.12em;
  color: #8796a3;
}
.partner-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 50px;
}
.partner-logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  overflow: hidden;
}
.partner-logos img {
  max-height: 40px;
  max-width: 138px;
  width: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.68;
  transition: 0.25s;
}
.partner-logos a:hover img {
  filter: none;
  opacity: 1;
}
.partner-logos img[src$="ailiyun.png"],
.partner-logos img[src$="chinaunicom.png"] {
  max-height: none;
  height: auto;
  max-width: 138px;
  flex-shrink: 0;
}
.partner-logos img[src$="chinatfifcom.png"] {
  max-height: none;
  height: 86px;
  width: 115px;
  max-width: none;
  flex-shrink: 0;
}
.services-section {
  background: #f5f8fc;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  padding: 32px 26px 25px;
  background: #fff;
  border: 1px solid #e2eaf2;
  border-radius: 7px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 326px;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: #a4c9ed;
  box-shadow: 0 20px 45px #1b4f8310;
}
.service-icon {
  width: 38px;
  height: 38px;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card > .service-icon {
  color: #347bc3;
  margin-bottom: 30px;
}
.service-code {
  font: 9px var(--mono);
  letter-spacing: 0.07em;
  color: #92a4b5;
  margin-bottom: 9px;
}
.service-card h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.service-card p {
  color: #637b90;
  font-size: 13px;
  line-height: 1.9;
  margin-bottom: 27px;
}
.card-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  font-size: 11px;
  font-weight: 500;
  color: #476982;
}
.card-more svg {
  width: 17px;
  height: 17px;
  transition: transform 0.25s;
}
.service-card:hover .card-more svg,
.case-card:hover .card-more svg {
  transform: translate(3px, -3px);
}
.service-more {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-top: 27px;
  font-size: 10px;
}
.service-more > span {
  color: #8c9bab;
  margin-right: auto;
}
.service-more a {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #536e86;
}
.service-more svg {
  width: 14px;
  height: 14px;
}
.service-more a:hover {
  color: var(--blue);
}
/* AI explorer: the real industry catalog, composed as a usable workbench. */
.intelligence-section {
  background: linear-gradient(145deg, #eaf2fa, #f4f8fc 65%);
  position: relative;
  border-top: 1px solid #e5edf5;
  border-bottom: 1px solid #e5edf5;
}
.ai-workbench {
  border: 1px solid #a7c7e4;
  border-radius: 10px;
  background: linear-gradient(120deg, #0b2036, #102e4a);
  box-shadow: 0 30px 70px #254b7520;
  overflow: hidden;
  color: #d8e7f5;
}
.ai-workbench-top {
  padding: 17px 24px;
  border-bottom: 1px solid #a0c5e41f;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #89adc9;
  font: 9px var(--mono);
  letter-spacing: 0.04em;
}
.ai-workbench-top .status-dot {
  margin-right: 9px;
}
.ai-workbench-top > span:last-child {
  font-size: 8px;
  color: #6c90ac;
}
.ai-industry-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #071a2d40;
  border-bottom: 1px solid #a0c5e425;
}
.hiline-ai-industry-node {
  border: 0;
  border-right: 1px solid #a0c5e419;
  background: transparent;
  color: #93acc3;
  padding: 20px 24px;
  text-align: left;
  position: relative;
  transition: 0.25s;
}
.hiline-ai-industry-node:last-child {
  border-right: 0;
}
.hiline-ai-industry-node b {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}
.hiline-ai-industry-node small {
  font: 9px var(--mono);
  color: #7895ae;
}
.hiline-ai-industry-node[aria-pressed="true"] {
  color: white;
  background: linear-gradient(0deg, #3089da25, transparent);
}
.hiline-ai-industry-node[aria-pressed="true"]::after {
  position: absolute;
  content: "";
  bottom: -1px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: #81d2ff;
  box-shadow: 0 0 15px #5ab9ff50;
}
.hiline-ai-industry-node:hover {
  background: #ffffff08;
}
.ai-workbench-body {
  display: grid;
  grid-template-columns: 1fr 1.06fr 1fr;
  min-height: 400px;
}
.ai-scenarios,
.ai-solution,
.ai-stack {
  padding: 29px 26px;
}
.ai-scenarios,
.ai-solution {
  border-right: 1px solid #a0c5e41a;
}
.workbench-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #91b3ce;
  font-size: 10px;
  letter-spacing: 0.07em;
  margin-bottom: 23px;
}
.workbench-label > span:last-child:not(:first-child) {
  background: #8bbce512;
  padding: 2px 7px;
  border-radius: 3px;
  color: #89b4d8;
  font-size: 8px;
  letter-spacing: 0;
}
.hiline-ai-scenario-option {
  display: flex;
  width: 100%;
  gap: 10px;
  align-items: center;
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 11px 12px;
  color: #9cb6cc;
  margin-bottom: 4px;
  transition: 0.2s;
}
.hiline-ai-scenario-option b {
  display: block;
  font-size: 13px;
  font-weight: 400;
}
.hiline-ai-scenario-option small {
  display: block;
  font-size: 10px;
  margin-top: 4px;
  color: #8aaac4;
}
.hiline-ai-scenario-option i {
  width: 4px;
  height: 4px;
  border: 1px solid #6c8ba6;
  border-radius: 50%;
  flex-shrink: 0;
}
.hiline-ai-scenario-option[aria-pressed="true"] {
  color: #deefff;
  border-color: #67b7ff3b;
  background: #4798df17;
}
.hiline-ai-scenario-option[aria-pressed="true"] i {
  background: #90d7ff;
  box-shadow: 0 0 8px #90d7ff;
}
.hiline-ai-scenario-option:hover {
  background: #4798df10;
}
.ai-solution {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: radial-gradient(circle at 50% 48%, #327bbd20, transparent 65%);
  position: relative;
}
.ai-solution > .workbench-label {
  align-self: flex-start;
}
.ai-solution::before,
.ai-solution::after {
  content: "→";
  position: absolute;
  left: -12px;
  top: 50%;
  background: #0d263f;
  border: 1px solid #5f95c239;
  border-radius: 50%;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: #7bb7e3;
  font-size: 11px;
}
.ai-solution::after {
  left: auto;
  right: -12px;
}
.ai-solution #ai-active-solution {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 100%;
  padding: 10px 0 24px;
}
.ai-symbol {
  width: 98px;
  height: 98px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 35% 30%, #3b80b569, #143655b0);
  border: 1px solid #6fc2ff7a;
  border-radius: 24px;
  box-shadow:
    0 0 0 12px #7bbaff04,
    0 0 0 13px #7bbaff0f,
    0 0 65px #3187d22b;
  position: relative;
  margin: 15px 0 30px;
  transform: rotate(-8deg);
}
.ai-symbol::before {
  content: "";
  position: absolute;
  inset: -30px;
  border: 1px solid #57a6e214;
  border-radius: 50%;
}
.ai-symbol .service-icon {
  color: #a0daff;
  width: 46px;
  height: 46px;
  transform: rotate(8deg);
}
.ai-solution h3 {
  font-size: 23px;
  font-weight: 500;
  color: #c5e7ff;
  margin-bottom: 8px;
  line-height: 1.5;
}
.ai-solution #ai-graph-solution-meta {
  font: 8px/1.6 var(--mono);
  letter-spacing: 0.05em;
  color: #668dab;
}
.ai-consult {
  font-size: 12px;
  color: #b7daf5;
  gap: 24px;
  margin-bottom: 8px;
}
.ai-consult svg {
  width: 16px;
}
.hiline-ai-service-node {
  padding: 12px 0;
  border-bottom: 1px solid #a2c6e411;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hiline-ai-service-node:last-child {
  border-bottom: 0;
}
.hiline-ai-service-node i {
  width: 7px;
  height: 7px;
  border: 1px solid #4c7799;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.hiline-ai-service-node b {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aec5da;
}
.hiline-ai-service-node small {
  display: block;
  font: 9px/1.8 var(--mono);
  color: #8aaac4;
  margin-top: 3px;
  overflow-wrap: anywhere;
}
.ai-workbench-footer {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #a0c5e41b;
  color: #7499b7;
  font-size: 8px;
}
.ai-workbench-footer > span:first-child {
  font: 8px var(--mono);
  letter-spacing: 0.06em;
}
.ai-workbench-footer i {
  font-style: normal;
  color: #91c6ef;
  margin: 0 10px;
}
.solution-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 29px;
}
.solution-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #c8d9e8;
  padding: 0 0 16px;
  font-size: 12px;
  color: #567791;
}
.solution-links a:hover {
  color: var(--blue);
}
.solution-links svg {
  width: 15px;
}
/* Case library: original stories, now with a more legible visual hierarchy. */
.cases-section {
  background: white;
}
.case-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.case-filter {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 9px 17px;
  font-size: 12px;
  color: #74889c;
  min-height: 38px;
  transition: 0.2s;
}
.case-filter:hover {
  color: #1e6fb8;
  background: #f3f7fb;
}
.case-filter.active {
  color: #1c6caf;
  border-color: #d2e6f7;
  background: #eff6fc;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.case-card {
  border: 1px solid #e1eaf2;
  border-radius: 7px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}
.case-card:hover {
  border-color: #9dbedb;
  box-shadow: 0 18px 40px #225c9710;
  transform: translateY(-5px);
}
.case-art {
  height: 200px;
  background: #e8f1fa;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.case-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(#5386aa10 1px, transparent 1px),
    linear-gradient(90deg, #5386aa10 1px, transparent 1px);
  background-size: 25px 25px;
  mask-image: radial-gradient(ellipse, black, transparent);
}
.case-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, #78bbfc29, transparent 70%);
  z-index: -1;
}
.case-art-label {
  position: absolute;
  top: 20px;
  left: 22px;
  font: 7px var(--mono);
  letter-spacing: 0.13em;
  color: #5c89b0;
}
.art-core {
  position: absolute;
  width: 67px;
  height: 67px;
  left: calc(50% - 34px);
  top: calc(50% - 28px);
  border: 1px solid #89b1d5;
  border-radius: 13px;
  background: linear-gradient(145deg, #f2f9ff, #aecdec);
  box-shadow: 12px 12px 30px #3469a82b;
  transform: rotate(-9deg);
  display: grid;
  place-items: center;
  color: #3e78ad;
}
.art-core .service-icon {
  width: 30px;
  height: 30px;
}
.art-orbit {
  position: absolute;
  width: 230px;
  height: 100px;
  border: 1px solid #94b5d575;
  border-radius: 50%;
  left: calc(50% - 115px);
  top: calc(50% - 46px);
  transform: rotate(-25deg);
}
.art-orbit::before {
  content: "";
  position: absolute;
  inset: 12px -15px;
  border: 1px solid #94b5d533;
  border-radius: 50%;
  transform: rotate(52deg);
}
.art-chip {
  position: absolute;
  font: 6px var(--mono);
  letter-spacing: 0.06em;
  padding: 5px 9px;
  border: 1px solid #99b8d066;
  color: #7295b5;
  border-radius: 3px;
  background: #edf6ffc9;
}
.chip-a {
  left: 12%;
  bottom: 32px;
}
.chip-b {
  right: 9%;
  top: 52px;
}
.art-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #70a5d3;
  box-shadow: 0 0 0 5px #70a5d320;
  border-radius: 50%;
}
.dot-a {
  left: 22%;
  top: 45%;
}
.dot-b {
  right: 24%;
  bottom: 27%;
}
.art-ai {
  background: #132e4b;
}
.art-ai .case-art-label,
.art-ai .art-chip {
  color: #99bad9;
}
.art-ai .art-chip {
  background: #193b60c9;
  border-color: #80a1c933;
}
.art-ai .art-core {
  background: linear-gradient(130deg, #457bab, #193656);
  color: #c2e7ff;
  box-shadow: 0 0 45px #56b1fc3b;
  border-color: #74b8ef;
}
.art-game {
  background: #eaeaf6;
}
.art-game .art-core {
  color: #7275a2;
  border-color: #adaed1;
  background: linear-gradient(145deg, #f1f3ff, #b4b7db);
}
.art-data {
  background: #e7f1f1;
}
.art-iot {
  background: #e8f2ed;
}
.case-copy {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.case-category {
  font: 8px var(--mono);
  letter-spacing: 0.12em;
  color: #92a3b5;
  margin-bottom: 11px;
}
.case-copy h3 {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 550;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.case-copy p {
  font-size: 13px;
  line-height: 1.85;
  color: #687e91;
  margin-bottom: 28px;
}
.case-copy .card-more {
  border-top: 1px solid #e8edf2;
  padding-top: 19px;
}
.case-pagination {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #90a1b0;
  font-size: 10px;
}
.case-pagination > div {
  display: flex;
  align-items: center;
  gap: 24px;
}
.case-pagination button {
  width: 36px;
  height: 36px;
  border: 1px solid #dbe6ee;
  background: white;
  border-radius: 50%;
  color: #647f95;
  transition: 0.2s;
}
.case-pagination button:disabled {
  opacity: 0.3;
}
.case-pagination button:not(:disabled):hover {
  color: white;
  background: #256fc0;
  border-color: #256fc0;
}
#page-info {
  font: 10px var(--mono);
  color: #496982;
}
.customer-section {
  padding: 40px 0 88px;
  background: #fff;
}
.customer-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  margin-bottom: 34px;
}
.customer-heading h2 {
  font-size: 20px;
  letter-spacing: -0.025em;
}
.customer-heading p {
  font-size: 11px;
  color: #8b9aa8;
}
.customer-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid #edf1f5;
  border-left: 1px solid #edf1f5;
}
.customer-logos > div {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 93px;
  border-right: 1px solid #edf1f5;
  border-bottom: 1px solid #edf1f5;
  padding: 22px;
}
.customer-logos img {
  max-height: 42px;
  max-width: 118px;
  width: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition: 0.25s;
}
.customer-logos > div:hover img {
  opacity: 1;
  filter: none;
}
/* Credentials, and a direct path to a conversation. */
.about-section {
  background: #edf3f9;
}
.about-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 100px;
}
.about-description {
  font-size: 13px;
  color: #778ca0;
  line-height: 2;
  max-width: 575px;
  margin: 27px 0;
}
.about-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-proof > img {
  width: 166px;
  height: 139px;
  object-fit: contain;
  mix-blend-mode: multiply;
  margin-bottom: 30px;
}
.proof-stats {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.proof-stats > div {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.proof-stats > div + div {
  border-left: 1px solid #ccdce9;
}
.proof-stats strong {
  font:
    500 54px/1.25 "DIN Alternate",
    "Avenir Next",
    sans-serif;
  letter-spacing: -0.07em;
  color: #355d81;
}
.proof-stats strong span {
  font-size: 30px;
  color: #6f9dc7;
}
.proof-stats > div > span {
  font-size: 10px;
  color: #8197aa;
  margin-top: 8px;
}
.certifications {
  margin-top: 67px;
  border-top: 1px solid #cedfea;
  padding-top: 25px;
}
.cert-label {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 10px;
  color: #6d86a0;
}
.cert-label > span:last-child {
  font: 8px var(--mono);
  color: #92a6b7;
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 24px;
}
.cert {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  min-height: 135px;
}
.cert img {
  width: 150px;
  height: 115px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.billing-band {
  padding: 36px 0;
  background: #e0ebf5;
  border-top: 1px solid #d5e1ec;
}
.billing-band .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
.billing-band h2 {
  font-size: 21px;
}
.billing-band p {
  font-size: 11px;
  color: #7a8fa2;
  margin-top: 8px;
}
.billing-band .text-link {
  font-size: 12px;
}
.contact-section {
  background:
    radial-gradient(ellipse at 0 100%, #1647744d, transparent 70%), #081f34;
  color: #cfe0ee;
  padding-block: 95px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 110px;
  align-items: start;
}
.contact-copy > .eyebrow {
  color: #83b7e0;
}
.contact-copy h2 {
  font-size: clamp(42px, 4.5vw, 65px);
  line-height: 1.25;
  letter-spacing: -0.05em;
}
.contact-copy > p {
  font-size: 12px;
  line-height: 2;
  color: #89a2b9;
  margin-top: 26px;
}
.contact-email {
  display: flex;
  align-items: center;
  gap: 24px;
  width: fit-content;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: #d3e8fa;
  margin-top: 40px;
}
.contact-email:hover {
  color: white;
}
.contact-email svg {
  width: 18px;
}
.contact-phone {
  display: block;
  margin-top: 13px;
  font: 15px var(--font);
  color: #a9c5dc;
}
.contact-phone > span {
  font: 9px var(--font);
  margin-left: 16px;
  color: #688ba8;
}
.contact-locations {
  margin-top: 53px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 25px;
}
.contact-locations > div > span {
  font: 8px var(--mono);
  letter-spacing: 0.14em;
  color: #618cb0;
}
.contact-locations h3 {
  font-size: 11px;
  margin-top: 9px;
  font-weight: 500;
  color: #99b7d0;
}
.contact-locations p {
  font-size: 9px;
  line-height: 1.9;
  color: #718fa7;
  margin-top: 9px;
}
.contact-form-card {
  padding: 34px;
  background: #15324a8a;
  border: 1px solid #8cbbde21;
  border-radius: 9px;
  box-shadow: 0 20px 60px #040f1a10;
}
.contact-form-card > h3 {
  font-size: 20px;
  font-weight: 500;
}
.contact-form-card > p {
  font-size: 12px;
  color: #84a0b8;
  margin-top: 7px;
  margin-bottom: 26px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 17px;
}
.field {
  margin-bottom: 17px;
  min-width: 0;
}
.field label {
  display: block;
  color: #b6cddd;
  font-size: 12px;
  margin-bottom: 7px;
}
.field label > span[aria-hidden] {
  color: #70b5f1;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  background: #071d303d;
  border: 1px solid #86afd62e;
  color: #d3e6f5;
  border-radius: 4px;
  font-size: 12px;
  outline-offset: 2px;
  transition: border-color 0.2s;
}
.field textarea {
  min-height: 86px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid #70b7ef;
  outline-offset: 1px;
  border-color: transparent;
}
.field select {
  color-scheme: dark;
}
.form-privacy {
  font-size: 9px;
  color: #9ab6ce;
  margin: 0 0 20px;
}
.form-privacy a {
  color: #b7d6ee;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-submit {
  width: 100%;
  justify-content: space-between;
  min-height: 45px;
  font-size: 12px;
}
.form-submit:disabled {
  opacity: 0.6;
  transform: none;
}
.form-message {
  font-size: 11px;
  padding: 12px 14px;
  margin-top: 16px;
  border: 1px solid #73c6b766;
  border-radius: 4px;
  color: #ace9da;
  background: #73c6b711;
}
.form-message.is-error {
  border-color: #f1b39f55;
  color: #f4c4b5;
  background: #f1b39f0a;
}
.site-footer {
  background: #06192b;
  color: #6a89a3;
  padding: 62px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 45px;
  padding-bottom: 51px;
}
.footer-brand img {
  width: 133px;
  height: auto;
  opacity: 0.85;
}
.footer-brand p {
  font-size: 11px;
  color: #8ba6ba;
  margin-top: 17px;
}
.footer-brand > span {
  font: 8px var(--mono);
  letter-spacing: 0.16em;
  color: #476780;
  display: block;
  margin-top: 11px;
}
.footer-column h3 {
  font-size: 10px;
  font-weight: 500;
  color: #a1bbcf;
  margin-bottom: 17px;
}
.footer-column a {
  display: block;
  font-size: 10px;
  line-height: 2.5;
}
.footer-column a:hover,
.footer-bottom a:hover {
  color: #a5d7ff;
}
.footer-social {
  justify-self: end;
}
.footer-social img {
  width: 76px;
  height: 76px;
  padding: 5px;
  background: white;
  border-radius: 3px;
  opacity: 0.8;
}
.footer-social > span {
  display: block;
  font-size: 8px;
  margin-top: 12px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid #88bde519;
  padding-top: 22px;
  font-size: 8px;
}
.footer-bottom > div {
  display: flex;
  align-items: center;
  gap: 26px;
}
.back-top {
  font: 8px var(--mono);
  letter-spacing: 0.08em;
}
.reveal {
  opacity: 1;
  transform: none;
}
.motion-ready .reveal:not(.in-view) {
  opacity: 0;
  transform: translateY(20px);
}
.motion-ready .reveal {
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
/* English text uses the same content hierarchy with space for longer labels. */
html[lang="en"] .hero h1 {
  font-size: clamp(49px, 5.2vw, 74px);
  letter-spacing: -0.065em;
  line-height: 1.14;
}
html[lang="en"] h2 {
  font-size: clamp(31px, 3.3vw, 45px);
  line-height: 1.2;
}
html[lang="en"] .desktop-nav {
  gap: 22px;
  font-size: 11px;
}
html[lang="en"] .service-card h3 {
  font-size: 19px;
}
html[lang="en"] .hero-lead {
  max-width: 470px;
  font-size: 18px;
}
html[lang="en"] .hero-description {
  max-width: 420px;
}
html[lang="en"] .hiline-ai-scenario-option b {
  font-size: 10px;
}
html[lang="en"] .case-copy h3 {
  font-size: 18px;
}
@media (min-width: 1600px) {
  .hero-visual {
    left: 46%;
    top: 80px;
  }
  .hero {
    min-height: 880px;
  }
  .hero-content {
    padding-block: 190px 130px;
  }
  .hero h1 {
    font-size: 84px;
  }
  .hero-bottom {
    min-height: 80px;
  }
}
@media (max-width: 1150px) {
  .nav-shell {
    gap: 22px;
  }
  .desktop-nav {
    gap: 22px;
    font-size: 11px;
  }
  .nav-actions {
    gap: 15px;
  }
  .brand img {
    width: 132px;
  }
  .nav-contact {
    font-size: 11px;
    padding-inline: 13px;
    gap: 12px;
  }
  .hero {
    min-height: 760px;
  }
  .hero h1 {
    font-size: 61px;
  }
  .hero-visual {
    left: 41%;
    width: 72vw;
    top: 77px;
  }
  .service-card {
    padding: 26px 20px;
  }
  .service-card h3 {
    font-size: 17px;
  }
  .service-more {
    gap: 22px;
  }
  .contact-layout {
    gap: 65px;
  }
  .ai-scenarios,
  .ai-solution,
  .ai-stack {
    padding: 25px 20px;
  }
  .partner-logos {
    gap: 35px;
  }
  .about-layout {
    gap: 60px;
  }
  html[lang="en"] .desktop-nav {
    gap: 15px;
  }
}
@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }
  .nav-actions {
    margin-left: auto;
  }
  .menu-toggle {
    display: block;
  }
  .nav-shell {
    height: 76px;
  }
  .hero-content {
    padding-top: 154px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero-visual {
    left: 36%;
    top: 95px;
    width: 85vw;
    opacity: 0.78;
  }
  .hero::before {
    z-index: 2;
    background: linear-gradient(90deg, #071c3033, transparent);
  }
  .hero-content {
    z-index: 3;
  }
  .hero-lead {
    font-size: 17px;
  }
  .hero-description {
    font-size: 12px;
  }
  .section {
    padding-block: 85px;
  }
  .section-heading {
    gap: 40px;
  }
  .section-intro {
    font-size: 12px;
    max-width: 300px;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card {
    padding: 30px;
    min-height: 280px;
  }
  .service-card h3 {
    font-size: 20px;
  }
  .service-card p {
    max-width: 300px;
  }
  .service-more > span {
    display: none;
  }
  .service-more {
    justify-content: space-between;
    gap: 16px;
  }
  .ai-workbench-body {
    grid-template-columns: 1.1fr 1fr;
  }
  .ai-stack {
    grid-column: 1/-1;
    border-top: 1px solid #a0c5e41a;
  }
  .ai-stack #ai-service-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
  }
  .hiline-ai-service-node {
    border-bottom: 0;
    align-items: flex-start;
    padding: 0;
  }
  .hiline-ai-service-node i {
    margin-top: 6px;
  }
  .hiline-ai-service-node small {
    font-size: 7px;
  }
  .ai-solution {
    border: 0;
  }
  .ai-solution::after {
    display: none;
  }
  .ai-workbench-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hiline-ai-industry-node {
    padding: 17px;
  }
  .hiline-ai-industry-node b {
    font-size: 11px;
  }
  .hiline-ai-industry-node small {
    font-size: 7px;
  }
  .case-copy {
    padding: 20px;
  }
  .case-copy h3 {
    font-size: 17px;
  }
  .case-art {
    height: 180px;
  }
  .chip-a {
    left: 8%;
  }
  .chip-b {
    right: 7%;
    top: 47px;
  }
  .about-layout {
    gap: 40px;
    grid-template-columns: 1.25fr 1fr;
  }
  .about-description {
    font-size: 12px;
  }
  .proof-stats strong {
    font-size: 45px;
  }
  .contact-layout {
    gap: 50px;
    grid-template-columns: 1fr 1fr;
  }
  .contact-locations {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 35px;
  }
  .contact-form-card {
    padding: 25px;
  }
  .contact-email {
    font-size: 20px;
  }
  .footer-top {
    gap: 30px;
  }
  .hero-visual-note > span {
    display: none;
  }
  .hero-visual-note {
    display: flex !important;
  }
}
@media (max-width: 700px) {
  :root {
    --gutter: 24px;
  }
  html {
    scroll-padding-top: 90px;
  }
  .nav-shell {
    height: 70px;
    gap: 18px;
  }
  .brand img {
    width: 127px;
  }
  .nav-actions {
    gap: 13px;
  }
  .nav-contact {
    display: none;
  }
  .language-toggle {
    font-size: 11px;
  }
  .hero {
    min-height: 960px;
    justify-content: flex-start;
  }
  .hero-content {
    padding-top: 127px;
    padding-bottom: 400px;
  }
  .hero-eyebrow {
    font-size: 8px;
    letter-spacing: 0.13em;
    margin-bottom: 25px;
  }
  .hero h1 {
    font-size: clamp(43px, 9.2vw, 62px);
    line-height: 1.3;
    letter-spacing: -0.06em;
  }
  .hero-lead {
    font-size: 15px;
    margin-top: 22px;
  }
  .hero-description {
    font-size: 12px;
    line-height: 1.9;
    margin-top: 12px;
  }
  .hero-actions {
    gap: 18px;
    margin-top: 28px;
  }
  .hero-actions .button {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 12px;
    padding: 12px 17px;
    gap: 20px;
    min-height: 47px;
  }
  .hero-secondary {
    font-size: 10px;
    gap: 10px;
  }
  .circle-arrow {
    width: 22px;
    height: 22px;
  }
  .hero-partner {
    margin-top: 28px;
    gap: 12px;
  }
  .hero-partner > div {
    font-size: 8px;
    padding-left: 12px;
  }
  .hero-partner > div > span {
    font-size: 8px;
  }
  .aws-wordmark {
    font-size: 27px;
  }
  .hero-visual {
    left: calc(50% - 280px);
    width: 570px;
    height: 500px;
    top: auto;
    bottom: 34px;
    opacity: 1;
    z-index: 1;
  }
  .hero::before {
    background: linear-gradient(#071c3000 52%, #071c3000 85%, #071c3033);
  }
  .hero-bottom {
    min-height: 64px;
    font-size: 8px;
    padding-inline: 24px;
  }
  .scroll-cue {
    font-size: 6px;
    gap: 12px;
  }
  .scroll-cue span {
    font-size: 14px;
  }
  .hero-bottom > div {
    gap: 8px;
  }
  .hero-grid {
    background-size: 64px 64px;
  }
  .partner-strip {
    padding: 26px 0 28px;
  }
  .partner-heading {
    font-size: 10px;
    margin-bottom: 23px;
    line-height: 1.6;
  }
  .partner-heading > span:last-child {
    display: none;
  }
  .partner-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 23px 32px;
  }
  .partner-logos a {
    height: 30px;
  }
  .partner-logos img {
    max-height: 30px;
  }
  .section {
    padding-block: 65px;
  }
  .section-heading {
    display: block;
    margin-bottom: 32px;
  }
  .eyebrow {
    font-size: 8px;
    margin-bottom: 18px;
  }
  h2 {
    font-size: 32px;
    line-height: 1.4;
  }
  .section-intro {
    margin-top: 20px;
    max-width: 100%;
    font-size: 13px;
    line-height: 1.85;
  }
  .section-intro br {
    display: none;
  }
  .service-grid {
    gap: 12px;
  }
  .service-card {
    padding: 24px 19px 20px;
    min-height: 290px;
  }
  .service-card > .service-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 24px;
  }
  .service-code {
    font-size: 7px;
    letter-spacing: 0;
  }
  .service-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.5;
  }
  .service-card p {
    font-size: 12px;
    margin-bottom: 22px;
    line-height: 1.8;
  }
  .card-more {
    font-size: 10px;
  }
  .card-more svg {
    width: 14px;
  }
  .service-more {
    flex-wrap: wrap;
    gap: 12px 22px;
    font-size: 9px;
    padding-top: 22px;
  }
  .service-more a:last-child {
    display: flex;
  }
  .service-more svg {
    width: 12px;
  }
  .ai-workbench {
    border-radius: 7px;
  }
  .ai-workbench-top {
    padding: 15px 17px;
    font-size: 7px;
    letter-spacing: 0;
  }
  .ai-workbench-top > span:last-child {
    display: none;
  }
  .ai-industry-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
  .hiline-ai-industry-node {
    padding: 15px 17px;
    border-bottom: 1px solid #a0c5e414;
  }
  .hiline-ai-industry-node:nth-child(2) {
    border-right: 0;
  }
  .hiline-ai-industry-node b {
    font-size: 11px;
  }
  .hiline-ai-industry-node small {
    font-size: 7px;
  }
  .hiline-ai-industry-node[aria-pressed="true"]::after {
    left: 17px;
    right: 17px;
  }
  .ai-workbench-body {
    grid-template-columns: 1fr;
  }
  .ai-scenarios {
    border-right: 0;
    padding: 22px 17px 17px;
    border-bottom: 1px solid #a0c5e41a;
  }
  .workbench-label {
    margin-bottom: 16px;
    font-size: 8px;
  }
  #ai-scenario-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }
  .hiline-ai-scenario-option {
    padding: 9px 8px;
    margin: 0;
    gap: 8px;
    align-items: flex-start;
    min-height: 67px;
  }
  .hiline-ai-scenario-option i {
    margin-top: 8px;
  }
  .hiline-ai-scenario-option b {
    font-size: 11px;
    line-height: 1.75;
  }
  .hiline-ai-scenario-option small {
    font-size: 9px;
  }
  .ai-solution {
    padding: 22px 17px;
    min-height: 330px;
  }
  .ai-solution::before {
    left: 50%;
    top: -12px;
    transform: rotate(90deg);
  }
  .ai-symbol {
    width: 77px;
    height: 77px;
    border-radius: 19px;
    margin-top: 16px;
    margin-bottom: 22px;
  }
  .ai-symbol .service-icon {
    width: 38px;
    height: 38px;
  }
  .ai-solution h3 {
    font-size: 21px;
  }
  .ai-solution #ai-active-solution {
    padding-bottom: 18px;
  }
  .ai-solution #ai-graph-solution-meta {
    font-size: 7px;
  }
  .ai-stack {
    padding: 22px 17px;
  }
  .ai-stack #ai-service-list {
    grid-template-columns: 1fr 1fr;
    gap: 17px;
  }
  .hiline-ai-service-node b {
    font-size: 11px;
  }
  .hiline-ai-service-node small {
    font-size: 8px;
  }
  .ai-workbench-footer {
    padding: 15px 17px;
    gap: 10px;
    font-size: 7px;
  }
  .ai-workbench-footer > span:first-child {
    font-size: 5px;
  }
  .ai-workbench-footer i {
    margin-inline: 4px;
  }
  .solution-links {
    grid-template-columns: 1fr;
    gap: 17px;
    padding-top: 25px;
  }
  .solution-links a {
    font-size: 11px;
    padding-bottom: 13px;
  }
  .case-filters {
    gap: 5px;
    margin-bottom: 25px;
  }
  .case-filter {
    font-size: 10px;
    min-height: 34px;
    padding: 7px 11px;
  }
  .cases-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .case-art {
    height: 210px;
  }
  .case-copy {
    padding: 24px;
  }
  .case-copy h3 {
    font-size: 19px;
  }
  .case-copy p {
    font-size: 13px;
  }
  .case-copy .card-more {
    font-size: 11px;
  }
  .case-pagination {
    font-size: 9px;
  }
  .case-pagination > div {
    gap: 17px;
  }
  .customer-section {
    padding: 5px 0 65px;
  }
  .customer-heading {
    display: block;
    margin-bottom: 25px;
  }
  .customer-heading h2 {
    font-size: 19px;
  }
  .customer-heading p {
    font-size: 10px;
    margin-top: 10px;
  }
  .customer-logos {
    grid-template-columns: repeat(3, 1fr);
  }
  .customer-logos > div {
    height: 75px;
    padding: 17px;
  }
  .customer-logos img {
    max-height: 35px;
  }
  .about-layout {
    display: block;
  }
  .about-description {
    font-size: 13px;
    margin-top: 21px;
  }
  .about-proof {
    margin-top: 35px;
    flex-direction: row;
    gap: 30px;
  }
  .about-proof > img {
    width: 110px;
    height: 98px;
    margin: 0;
  }
  .proof-stats {
    flex: 1;
  }
  .proof-stats strong {
    font-size: 34px;
  }
  .proof-stats strong span {
    font-size: 19px;
  }
  .proof-stats > div > span {
    font-size: 8px;
  }
  .certifications {
    margin-top: 37px;
    padding-top: 22px;
  }
  .cert-label {
    font-size: 9px;
    align-items: flex-start;
    gap: 20px;
  }
  .cert-label > span:last-child {
    font-size: 6px;
    max-width: 160px;
    text-align: right;
    line-height: 1.6;
  }
  .cert-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 18px;
  }
  .cert {
    padding: 5px;
    min-height: 100px;
  }
  .cert img {
    height: 92px;
    width: 105px;
  }
  .billing-band {
    padding: 27px 0;
  }
  .billing-band .shell {
    display: block;
  }
  .billing-band h2 {
    font-size: 20px;
  }
  .billing-band p {
    font-size: 10px;
  }
  .billing-band .text-link {
    font-size: 11px;
    margin-top: 19px;
  }
  .contact-layout {
    display: block;
  }
  .contact-copy h2 {
    font-size: 49px;
  }
  .contact-copy > p {
    font-size: 12px;
    margin-top: 20px;
  }
  .contact-email {
    font-size: 23px;
    margin-top: 30px;
  }
  .contact-phone {
    font-size: 14px;
  }
  .contact-locations {
    grid-template-columns: 1fr 1fr;
    margin-top: 30px;
    gap: 20px;
  }
  .contact-locations p {
    font-size: 8px;
  }
  .contact-form-card {
    margin-top: 40px;
    padding: 25px 22px;
  }
  .contact-form-card > h3 {
    font-size: 21px;
  }
  .contact-form-card > p {
    font-size: 12px;
  }
  .field label {
    font-size: 11px;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
  }
  .form-privacy {
    font-size: 10px;
  }
  .form-submit {
    font-size: 13px;
  }
  .site-footer {
    padding-top: 42px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 34px 26px;
    padding-bottom: 34px;
  }
  .footer-brand {
    grid-column: 1;
  }
  .footer-social {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
  .footer-brand img {
    width: 124px;
  }
  .footer-brand p {
    font-size: 10px;
  }
  .footer-brand > span {
    font-size: 6px;
  }
  .footer-column h3 {
    font-size: 11px;
  }
  .footer-column a {
    font-size: 10px;
    line-height: 2.6;
  }
  .footer-bottom {
    display: block;
    font-size: 7px;
  }
  .footer-bottom > div {
    margin-top: 18px;
    font-size: 8px;
    gap: 20px;
  }
  .back-top {
    margin-left: auto;
    font-size: 6px;
  }
  html[lang="en"] .hero h1 {
    font-size: clamp(40px, 9.1vw, 62px);
  }
  html[lang="en"] h2 {
    font-size: 31px;
  }
  html[lang="en"] .hero-lead {
    font-size: 15px;
    max-width: 320px;
  }
  html[lang="en"] .hero-description {
    font-size: 12px;
    max-width: 315px;
  }
  html[lang="en"] .service-card h3 {
    font-size: 17px;
  }
  html[lang="en"] .service-code {
    font-size: 5px;
  }
  html[lang="en"] .hero-secondary {
    font-size: 9px;
  }
  html[lang="en"] .hiline-ai-scenario-option b {
    font-size: 11px;
  }
}
@media (max-width: 370px) {
  :root {
    --gutter: 20px;
  }
  .hero h1 {
    font-size: 41px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-actions .button {
    font-size: 11px;
    padding-inline: 13px;
  }
  .hero-secondary {
    font-size: 9px;
  }
  .service-card {
    padding: 23px 15px;
  }
  .service-code {
    font-size: 5px;
  }
  .service-card h3 {
    font-size: 15px;
  }
  .service-card p {
    font-size: 10px;
  }
  .about-proof {
    gap: 15px;
  }
  .about-proof > img {
    width: 90px;
  }
  .proof-stats strong {
    font-size: 30px;
  }
  .hero-bottom {
    padding-inline: 20px;
    font-size: 7px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .motion-ready .reveal:not(.in-view) {
    opacity: 1;
    transform: none;
  }
  .hero-visual {
    transform: none;
  }
  .motion-toggle {
    display: none;
  }
}
