﻿:root {
  --ink: #101828;
  --muted: #667085;
  --line: #e6eaf0;
  --surface: #f5f7fa;
  --surface-blue: #eef5fb;
  --navy: #07111f;
  --navy-soft: #0c1b2e;
  --blue: #155eef;
  --blue-strong: #0d47c2;
  --cyan: #36d6ff;
  --gold: #b78636;
  --green: #16b364;
  --white: #fff;
  --shadow: 0 24px 70px rgb(19 37 64 / 12%);
  --shell: min(1240px, calc(100% - 64px));
  font-family:
    "Inter", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial,
    sans-serif;
  color: var(--ink);
  background: #fff;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: #fff;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg,
canvas {
  display: block;
}

img {
  width: 100%;
}

section[id] {
  scroll-margin-top: 76px;
}

.route-page {
  display: none;
  min-height: calc(100vh - 76px);
}

.route-page.active {
  display: block;
  animation: route-in 0.35s ease both;
}

@keyframes route-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(28px, calc((100vw - 1240px) / 2));
  color: #fff;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.site-header.scrolled {
  color: var(--ink);
  border-color: rgb(16 24 40 / 8%);
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 8px 30px rgb(19 37 64 / 7%);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-logo {
  width: 39px;
  height: 39px;
  fill: currentColor;
}

.site-header .brand-logo {
  color: var(--cyan);
}

.site-header.scrolled .brand-logo {
  color: var(--blue);
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name strong {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
}

.brand-name small {
  margin-top: 6px;
  color: currentColor;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
  opacity: 0.66;
}

.main-nav {
  display: flex;
  height: 100%;
  align-items: center;
  gap: clamp(20px, 2.1vw, 34px);
}

.main-nav a {
  position: relative;
  display: inline-flex;
  height: 100%;
  align-items: center;
  font-size: 14px;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 15px;
  left: 50%;
  height: 2px;
  background: var(--cyan);
  content: "";
  transition:
    right 0.2s ease,
    left 0.2s ease;
}

.site-header.scrolled .main-nav a::after {
  background: var(--blue);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  right: 28%;
  left: 28%;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  border-radius: 4px;
  color: currentColor;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

#hero-canvas,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-grid {
  background-image:
    linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 42%, #000 100%);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  z-index: 0;
  top: 76px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgb(255 255 255 / 7%);
  content: "";
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  width: var(--shell);
  min-height: 720px;
  margin: 0 auto;
  padding-top: 76px;
  align-items: center;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(52px, 6vw, 96px);
}

.hero-copy {
  padding: 70px 0 80px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.8px;
}

.eyebrow.dark {
  color: var(--blue);
}

.hero h1 {
  margin: 0;
  font-size: clamp(54px, 5.1vw, 82px);
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 550px;
  margin: 30px 0 0;
  color: rgb(255 255 255 / 67%);
  font-size: 17px;
  line-height: 2;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 650;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg,
.contact-form button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button.primary {
  color: #041321;
  background: var(--cyan);
}

.button.primary:hover {
  background: #79e5ff;
}

.button.secondary {
  color: #fff;
  border-color: rgb(255 255 255 / 33%);
  background: rgb(255 255 255 / 5%);
}

.button.secondary:hover {
  border-color: rgb(255 255 255 / 65%);
  background: rgb(255 255 255 / 10%);
}

.hero-meta {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  color: rgb(255 255 255 / 54%);
  flex-wrap: wrap;
  font-size: 11px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.hero-console {
  position: relative;
  width: min(710px, 52vw);
  overflow: hidden;
  border: 1px solid rgb(117 194 255 / 24%);
  border-radius: 8px;
  background: rgb(6 20 38 / 88%);
  box-shadow:
    0 45px 110px rgb(0 0 0 / 38%),
    0 0 80px rgb(36 126 242 / 12%);
  backdrop-filter: blur(20px);
  transform: perspective(1600px) rotateY(-5deg) rotateX(2deg);
  transform-origin: center;
}

.hero-console::before {
  position: absolute;
  inset: 0;
  border: 1px solid rgb(255 255 255 / 5%);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.console-topbar {
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
}

.console-product {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgb(255 255 255 / 64%);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
}

.console-product b {
  display: grid;
  width: 25px;
  height: 25px;
  color: var(--navy);
  border-radius: 3px;
  background: var(--cyan);
  place-items: center;
  font-size: 8px;
}

.console-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgb(255 255 255 / 48%);
  font-size: 9px;
}

.console-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #23d77d;
  box-shadow: 0 0 10px #23d77d;
}

.console-body {
  display: grid;
  min-height: 430px;
  grid-template-columns: 58px 1fr;
}

.console-nav {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 22px;
  padding-top: 24px;
  border-right: 1px solid rgb(255 255 255 / 7%);
}

.console-nav span {
  width: 16px;
  height: 16px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 3px;
}

.console-nav span.active {
  border-color: var(--cyan);
  background: rgb(54 214 255 / 17%);
  box-shadow: 0 0 15px rgb(54 214 255 / 22%);
}

.console-content {
  padding: 25px;
}

.console-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.console-heading div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.console-heading small {
  color: rgb(255 255 255 / 36%);
  font-size: 9px;
}

.console-heading strong {
  font-size: 14px;
}

.console-heading > span {
  padding: 5px 9px;
  color: var(--cyan);
  border: 1px solid rgb(54 214 255 / 25%);
  border-radius: 3px;
  background: rgb(54 214 255 / 8%);
  font-size: 8px;
  letter-spacing: 1px;
}

.console-kpis {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.console-kpis article {
  min-width: 0;
  padding: 15px;
  border: 1px solid rgb(255 255 255 / 7%);
  border-radius: 4px;
  background: rgb(255 255 255 / 3%);
}

.console-kpis small,
.console-kpis strong,
.console-kpis em {
  display: block;
}

.console-kpis small {
  overflow: hidden;
  color: rgb(255 255 255 / 35%);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.console-kpis strong {
  margin: 9px 0 7px;
  font-size: clamp(16px, 1.6vw, 25px);
}

.console-kpis em {
  color: #30d47d;
  font-size: 8px;
  font-style: normal;
}

.console-chart {
  margin-top: 10px;
  padding: 15px 15px 8px;
  border: 1px solid rgb(255 255 255 / 7%);
  border-radius: 4px;
  background: rgb(255 255 255 / 2.5%);
}

.chart-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgb(255 255 255 / 65%);
  font-size: 9px;
}

.chart-labels small {
  color: rgb(255 255 255 / 30%);
}

.console-chart svg {
  width: 100%;
  height: 145px;
  margin-top: 10px;
  overflow: visible;
}

.console-chart polyline {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.chart-area {
  fill: url("#chartArea");
}

.model-row {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  grid-template-columns: repeat(4, 1fr);
}

.model-row span {
  padding: 9px 4px;
  color: rgb(255 255 255 / 46%);
  border: 1px solid rgb(255 255 255 / 7%);
  border-radius: 3px;
  background: rgb(255 255 255 / 2.5%);
  font-size: 8px;
  text-align: center;
}

.hero-stats {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 140px;
  border-top: 1px solid rgb(255 255 255 / 10%);
  background: rgb(4 15 29 / 86%);
  backdrop-filter: blur(18px);
  grid-template-columns: repeat(4, 1fr);
}

.hero-stats div {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  border-right: 1px solid rgb(255 255 255 / 9%);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 560;
  white-space: nowrap;
}

.hero-stats sup {
  color: var(--cyan);
  font-size: 0.45em;
}

.hero-stats span {
  color: rgb(255 255 255 / 46%);
  font-size: 11px;
  line-height: 1.6;
}

.home-portals {
  padding: 92px 0 100px;
  background: #fff;
}

.compact-heading {
  margin-bottom: 34px;
  grid-template-columns: 1fr;
}

.portal-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.portal-grid a {
  position: relative;
  display: flex;
  min-height: 250px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.portal-grid a:hover {
  border-color: #b8c9e6;
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.portal-grid a.featured {
  color: #fff;
  border-color: var(--navy-soft);
  background: var(--navy-soft);
}

.portal-grid a.featured::after {
  position: absolute;
  right: -65px;
  bottom: -75px;
  width: 190px;
  height: 190px;
  border: 1px solid rgb(54 214 255 / 18%);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgb(54 214 255 / 4%);
  content: "";
}

.portal-grid span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.portal-grid .featured span,
.portal-grid .featured b {
  color: var(--cyan);
}

.portal-grid h3 {
  margin: 28px 0 12px;
  font-size: 25px;
}

.portal-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.portal-grid .featured p {
  color: rgb(255 255 255 / 55%);
}

.portal-grid b {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 28px;
  color: var(--blue);
  font-size: 11px;
}

.inner-hero {
  min-height: 560px;
  padding-top: 76px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #f4f7fb;
}

.inner-hero > .section-shell {
  display: grid;
  min-height: 484px;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}

.inner-hero-copy h1 {
  margin: 0;
  font-size: clamp(54px, 5.4vw, 82px);
  font-weight: 620;
  line-height: 1.12;
}

.inner-hero-copy > p:last-child {
  max-width: 520px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.inner-visual {
  position: relative;
  width: min(440px, 40vw);
  aspect-ratio: 1;
  margin: auto;
  border: 1px solid #cbd9ee;
  border-radius: 50%;
  box-shadow:
    0 0 0 38px rgb(21 94 239 / 4%),
    0 0 0 76px rgb(21 94 239 / 2%);
}

.inner-visual::before,
.inner-visual::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #cbd9ee;
  content: "";
  transform: translate(-50%, -50%);
}

.inner-visual::before {
  width: 76%;
  height: 1px;
}

.inner-visual::after {
  width: 1px;
  height: 76%;
}

.visual-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 150px;
  aspect-ratio: 1;
  color: #fff;
  border: 8px solid #dbe8fb;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 18px 50px rgb(21 94 239 / 30%);
  place-content: center;
  text-align: center;
  transform: translate(-50%, -50%);
}

.visual-core strong {
  font-size: 38px;
  font-weight: 600;
}

.visual-core span {
  margin-top: 5px;
  color: rgb(255 255 255 / 67%);
  font-size: 9px;
}

.inner-visual .node {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 72px;
  height: 34px;
  color: #31527d;
  border: 1px solid #c9d7eb;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 8px 25px rgb(34 67 111 / 10%);
  place-items: center;
  font-size: 10px;
  font-style: normal;
}

.inner-visual .n1 {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.inner-visual .n2 {
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
}

.inner-visual .n3 {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.inner-visual .n4 {
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
}

.simple-hero {
  min-height: 460px;
}

.simple-hero > .section-shell {
  min-height: 384px;
}

.simple-hero .inner-hero-copy h1 {
  font-size: clamp(56px, 6vw, 86px);
}

.about-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.about-graphic span {
  display: grid;
  width: 125px;
  aspect-ratio: 1;
  color: #30578e;
  border: 1px solid #bed0e8;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 15px 40px rgb(34 67 111 / 8%);
  place-items: center;
  font-size: 18px;
}

.about-graphic span:nth-child(2) {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
  transform: translateY(-30px);
}

.compact-band .section-shell {
  min-height: 620px;
}

.about-page {
  min-height: 630px;
}

.about-page .about-visual {
  min-height: 630px;
}

.section {
  padding: 112px 0;
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 52px;
  grid-template-columns: 1fr minmax(260px, 430px);
  gap: 60px;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.capabilities {
  background: #fff;
}

.capability-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

.capability-card {
  position: relative;
  display: flex;
  min-height: 360px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.capability-card::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.capability-card:hover {
  border-color: #bdccea;
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.capability-card:hover::before {
  transform: scaleX(1);
}

.capability-card.featured {
  color: #fff;
  border-color: var(--navy-soft);
  background: var(--navy-soft);
}

.capability-card.featured::after {
  position: absolute;
  right: -65px;
  bottom: -80px;
  width: 210px;
  height: 210px;
  border: 1px solid rgb(54 214 255 / 20%);
  border-radius: 50%;
  box-shadow:
    0 0 0 35px rgb(54 214 255 / 5%),
    0 0 80px rgb(54 214 255 / 10%);
  content: "";
}

.card-index {
  position: absolute;
  top: 26px;
  right: 26px;
  color: #a6afbc;
  font-size: 10px;
  letter-spacing: 1.5px;
}

.featured .card-index {
  color: rgb(255 255 255 / 35%);
}

.capability-icon {
  display: grid;
  width: 54px;
  height: 54px;
  color: var(--blue);
  border: 1px solid #dbe5f6;
  border-radius: 5px;
  background: #f5f8fd;
  place-items: center;
}

.featured .capability-icon {
  color: var(--cyan);
  border-color: rgb(54 214 255 / 22%);
  background: rgb(54 214 255 / 8%);
}

.capability-icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.capability-card h3 {
  margin: 34px 0 14px;
  font-size: 23px;
}

.capability-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.featured p {
  color: rgb(255 255 255 / 57%);
}

.capability-card a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 28px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 650;
}

.featured a {
  color: var(--cyan);
}

.capability-card a span {
  transition: transform 0.2s ease;
}

.capability-card a:hover span {
  transform: translateX(4px);
}

.platform-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.platform-band::before {
  position: absolute;
  top: -240px;
  right: -160px;
  width: 620px;
  height: 620px;
  border: 1px solid rgb(54 214 255 / 16%);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgb(54 214 255 / 3%),
    0 0 0 160px rgb(54 214 255 / 2%);
  content: "";
}

.platform-band .section-shell {
  position: relative;
  display: grid;
  min-height: 700px;
  align-items: center;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(70px, 8vw, 140px);
}

.platform-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 25px 0 0;
  color: rgb(255 255 255 / 58%);
  font-size: 14px;
  line-height: 2;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 650;
}

.text-link.light {
  color: var(--cyan);
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.platform-stack {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 12px;
}

.platform-stack div {
  position: relative;
  display: grid;
  min-height: 88px;
  overflow: hidden;
  align-items: center;
  padding: 18px 24px;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: 5px;
  background: rgb(255 255 255 / 4%);
  grid-template-columns: 52px 160px 1fr;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.platform-stack div:hover {
  border-color: rgb(54 214 255 / 35%);
  background: rgb(54 214 255 / 7%);
  transform: translateX(-7px);
}

.platform-stack div:nth-child(2) {
  margin-left: 22px;
}

.platform-stack div:nth-child(3) {
  margin-left: 44px;
}

.platform-stack div:nth-child(4) {
  margin-left: 66px;
}

.platform-stack span {
  color: var(--cyan);
  font-size: 11px;
}

.platform-stack strong {
  font-size: 16px;
}

.platform-stack small {
  color: rgb(255 255 255 / 43%);
  font-size: 10px;
  line-height: 1.7;
}

.dark-button {
  margin-top: 30px;
  color: #fff !important;
  background: var(--blue) !important;
}

.dark-button:hover {
  background: var(--blue-strong) !important;
}

.news {
  border-top: 1px solid var(--line);
  background: #fff;
}

.news-list {
  border-top: 1px solid #b8c1cc;
}

.news-list > a {
  display: grid;
  min-height: 150px;
  align-items: center;
  padding: 26px 18px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 120px 1fr 50px;
  transition:
    background 0.2s ease,
    padding 0.2s ease;
}

.news-list > a:hover {
  padding-right: 24px;
  padding-left: 24px;
  background: var(--surface);
}

.news-list time {
  display: flex;
  flex-direction: column;
}

.news-list time strong {
  color: #243b5a;
  font-size: 34px;
  font-weight: 500;
}

.news-list time span {
  margin-top: 3px;
  color: #98a2b3;
  font-size: 9px;
}

.news-list > a > div > span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
}

.news-list h3 {
  margin: 8px 0;
  font-size: 19px;
  font-weight: 620;
}

.news-list p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.news-list > a > b {
  color: var(--blue);
  font-size: 22px;
  text-align: right;
  transition: transform 0.2s ease;
}

.news-list > a:hover > b {
  transform: translateX(5px);
}

.about {
  display: grid;
  min-height: 720px;
  color: #fff;
  background: var(--navy);
  grid-template-columns: 1.08fr 0.92fr;
}

.about-visual {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.about-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 45%, var(--navy) 100%),
    linear-gradient(180deg, rgb(7 17 31 / 4%), rgb(7 17 31 / 35%));
  content: "";
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.62) contrast(1.12);
  transform: scale(1.04);
}

.about-copy {
  display: flex;
  justify-content: center;
  padding: 90px max(48px, calc((100vw - 1240px) / 2)) 90px 60px;
  flex-direction: column;
}

.about-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin: 28px 0 0;
  color: rgb(255 255 255 / 58%);
  font-size: 14px;
  line-height: 2;
}

.about-values {
  display: grid;
  margin-top: 38px;
  border-top: 1px solid rgb(255 255 255 / 12%);
  grid-template-columns: repeat(3, 1fr);
}

.about-values span {
  display: flex;
  min-width: 0;
  padding: 23px 18px 0 0;
  flex-direction: column;
  gap: 7px;
}

.about-values strong {
  color: var(--cyan);
  font-size: 17px;
}

.about-values small {
  color: rgb(255 255 255 / 39%);
  font-size: 9px;
  line-height: 1.7;
}

.contact {
  background: var(--surface-blue);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 40px;
  border: 1px solid #dae2eb;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 22px 70px rgb(35 65 105 / 8%);
  grid-template-columns: 1fr 1fr;
}

.contact-form label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 9px;
}

.contact-form label.full {
  grid-column: 1 / 3;
}

.contact-form label > span {
  color: #475467;
  font-size: 11px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  border: 1px solid #dbe1e8;
  border-radius: 4px;
  outline: 0;
  background: #fbfcfd;
  font-size: 13px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form input {
  height: 48px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #7aa2ee;
  box-shadow: 0 0 0 3px rgb(21 94 239 / 9%);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #b2bac5;
}

.contact-form button {
  display: inline-flex;
  width: 150px;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  border: 0;
  border-radius: 4px;
  background: var(--blue);
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
  grid-column: 1 / 3;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.contact-form button:hover {
  background: var(--blue-strong);
  transform: translateY(-2px);
}

.contact-form button:disabled {
  cursor: default;
  opacity: 0.72;
  transform: none;
}

.site-footer {
  color: #fff;
  background: #050e1a;
}

.footer-main {
  display: grid;
  width: var(--shell);
  margin: 0 auto;
  padding: 70px 0 52px;
  grid-template-columns: 1.8fr repeat(2, 1fr);
  gap: 55px;
}

.brand.inverse .brand-logo {
  color: var(--cyan);
}

.footer-brand > p {
  max-width: 270px;
  margin: 24px 0 0;
  color: rgb(255 255 255 / 38%);
  font-size: 11px;
  line-height: 1.8;
}

.footer-filing {
  display: block;
  margin-top: 10px;
  color: rgb(255 255 255 / 58%);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-filing:hover {
  color: var(--cyan);
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
}

.footer-column strong {
  margin-bottom: 7px;
  font-size: 12px;
}

.footer-column a {
  color: rgb(255 255 255 / 39%);
  font-size: 10px;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  width: var(--shell);
  min-height: 64px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  color: rgb(255 255 255 / 25%);
  border-top: 1px solid rgb(255 255 255 / 8%);
  font-size: 9px;
  gap: 12px;
  flex-wrap: wrap;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 48px, 1040px);
  }

  .site-header {
    padding-inline: 24px;
  }

  .main-nav {
    gap: 17px;
  }

  .main-nav a {
    font-size: 12px;
  }

  .hero-shell {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 38px;
  }

  .hero-console {
    width: 53vw;
  }

  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform-band .section-shell {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 55px;
  }

  .footer-main {
    gap: 32px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 36px, 720px);
  }

  section[id] {
    scroll-margin-top: 68px;
  }

  .site-header {
    height: 68px;
    padding-inline: 18px;
  }

  .site-header:not(.scrolled),
  .site-header.menu-active {
    color: var(--ink);
    border-color: rgb(16 24 40 / 8%);
    background: rgb(255 255 255 / 97%);
  }

  .site-header:not(.scrolled) .brand-logo,
  .site-header.menu-active .brand-logo {
    color: var(--blue);
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    display: flex;
    height: calc(100vh - 68px);
    padding: 24px 22px 40px;
    color: var(--ink);
    background: #fff;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    height: 58px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    top: 68px;
  }

  .hero-shell {
    min-height: 0;
    padding: 68px 0 70px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-copy {
    padding: 78px 0 50px;
  }

  .hero h1 {
    font-size: clamp(48px, 9vw, 68px);
  }

  .hero-console {
    width: 100%;
    transform: none;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats div {
    min-height: 110px;
    border-bottom: 1px solid rgb(255 255 255 / 9%);
  }

  .portal-grid {
    grid-template-columns: 1fr;
  }

  .portal-grid a {
    min-height: 220px;
  }

  .inner-hero {
    min-height: auto;
    padding-top: 68px;
  }

  .inner-hero > .section-shell {
    min-height: auto;
    padding: 70px 0;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .simple-hero > .section-shell {
    min-height: auto;
  }

  .section {
    padding: 84px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading > p {
    max-width: 560px;
  }

  .platform-band .section-shell {
    min-height: auto;
    padding: 90px 0;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .platform-stack div:nth-child(n) {
    margin-left: 0;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 430px;
  }

  .about-visual::after {
    background: linear-gradient(180deg, transparent 45%, var(--navy) 100%);
  }

  .about-copy {
    padding: 70px max(18px, calc((100vw - 720px) / 2)) 85px;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / 3;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 30px);
  }

  .brand-logo {
    width: 35px;
    height: 35px;
  }

  .brand-name strong {
    font-size: 16px;
  }

  .hero-copy {
    padding-top: 64px;
  }

  .hero h1 {
    font-size: 46px;
    line-height: 1.2;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-meta {
    gap: 12px 18px;
  }

  .console-body {
    min-height: 400px;
    grid-template-columns: 42px 1fr;
  }

  .console-content {
    padding: 16px;
  }

  .console-kpis {
    grid-template-columns: 1fr 1fr;
  }

  .console-kpis article:last-child {
    display: none;
  }

  .console-chart svg {
    height: 125px;
  }

  .model-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats div {
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
  }

  .hero-stats strong {
    font-size: 25px;
  }

  .home-portals {
    padding: 68px 0 74px;
  }

  .inner-hero-copy h1,
  .simple-hero .inner-hero-copy h1 {
    font-size: 48px;
  }

  .visual-core {
    width: 115px;
  }

  .inner-visual .node {
    width: 62px;
  }

  .about-graphic {
    gap: 8px;
  }

  .about-graphic span {
    width: 92px;
    font-size: 14px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: 330px;
  }

  .platform-stack div {
    min-height: 112px;
    grid-template-columns: 40px 1fr;
  }

  .platform-stack small {
    padding-top: 8px;
    grid-column: 2;
  }

  .news-list > a {
    min-height: 170px;
    padding-inline: 0;
    grid-template-columns: 74px 1fr 24px;
    gap: 10px;
  }

  .news-list > a:hover {
    padding-right: 4px;
    padding-left: 4px;
  }

  .news-list time strong {
    font-size: 28px;
  }

  .news-list h3 {
    font-size: 16px;
  }

  .news-list p {
    display: none;
  }

  .about-visual {
    min-height: 320px;
  }

  .about-copy {
    padding: 60px 15px 75px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-values span {
    padding: 17px 0;
    border-bottom: 1px solid rgb(255 255 255 / 9%);
  }

  .contact-form {
    padding: 24px;
    grid-template-columns: 1fr;
  }

  .contact-form label.full,
  .contact-form button {
    grid-column: auto;
  }

  .contact-form button {
    width: 100%;
  }

  .footer-main {
    padding-top: 55px;
    grid-template-columns: 1fr 1fr;
    gap: 38px 20px;
  }

  .footer-brand {
    grid-column: 1 / 3;
  }

  .footer-bottom {
    min-height: 82px;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 0;
    flex-direction: column;
    gap: 8px;
  }
}

/* Refined brand visual system */
:root {
  --ink: #132238;
  --muted: #64748b;
  --line: #e4eaf1;
  --surface: #f6f8fb;
  --surface-blue: #f0f5fa;
  --navy: #071827;
  --navy-soft: #0d2842;
  --blue: #1769e0;
  --blue-strong: #0c54c2;
  --cyan: #42d7f5;
  --gold: #b68a47;
  --shadow: 0 24px 70px rgb(20 42 72 / 11%);
}

body {
  background: var(--surface);
}

.site-header {
  height: 72px;
  padding-inline: max(28px, calc((100vw - 1240px) / 2));
  border-bottom-color: rgb(255 255 255 / 18%);
}

.site-header.scrolled {
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 10px 35px rgb(18 42 70 / 7%);
}

.brand-logo {
  width: 37px;
  height: 37px;
}

.brand-name strong {
  font-size: 17px;
  letter-spacing: 1.5px;
}

.main-nav {
  gap: clamp(22px, 2.2vw, 36px);
}

.main-nav a {
  font-size: 13px;
  font-weight: 560;
}

.hero {
  min-height: 760px;
  background:
    linear-gradient(90deg, rgb(4 19 33 / 94%) 0%, rgb(5 24 42 / 82%) 45%, rgb(5 24 42 / 28%) 100%),
    url("./assets/home_campus_hd.jpg") center / cover no-repeat;
}

.hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(4 17 30 / 12%), rgb(4 17 30 / 30%));
  content: "";
}

#hero-canvas {
  opacity: 0.36;
}

.hero-grid {
  opacity: 0.24;
}

.hero-shell {
  min-height: 650px;
  padding-top: 72px;
  grid-template-columns: 1fr 0.86fr;
  gap: clamp(50px, 6vw, 90px);
}

.hero-copy {
  max-width: 640px;
  padding: 64px 0 72px;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(52px, 4.8vw, 72px);
  font-weight: 580;
  line-height: 1.16;
  text-shadow: 0 12px 35px rgb(0 0 0 / 22%);
}

.hero-lead {
  max-width: 520px;
  margin-top: 25px;
  color: rgb(255 255 255 / 76%);
  font-size: 15px;
  line-height: 1.95;
}

.eyebrow {
  color: #70def5;
  letter-spacing: 2.4px;
}

.hero-actions {
  margin-top: 32px;
}

.button {
  min-height: 48px;
  padding-inline: 22px;
}

.button.primary {
  color: #061a29;
  background: #6ee2f7;
}

.button.secondary {
  border-color: rgb(255 255 255 / 45%);
  background: rgb(5 24 42 / 32%);
  backdrop-filter: blur(12px);
}

.hero-meta {
  margin-top: 28px;
  color: rgb(255 255 255 / 64%);
}

.hero-console {
  width: min(550px, 43vw);
  border-color: rgb(180 224 255 / 27%);
  border-radius: 6px;
  background: rgb(6 25 43 / 70%);
  box-shadow:
    0 35px 90px rgb(0 0 0 / 31%),
    0 0 0 1px rgb(255 255 255 / 5%) inset;
  backdrop-filter: blur(22px);
  transform: perspective(1600px) rotateY(-3deg);
}

.console-topbar {
  height: 45px;
  background: rgb(255 255 255 / 3%);
}

.console-body {
  min-height: 375px;
  grid-template-columns: 1fr;
}

.console-nav {
  display: none;
}

.console-content {
  padding: 22px;
}

.console-kpis article,
.console-chart,
.model-row span {
  border-color: rgb(180 224 255 / 11%);
  background: rgb(4 19 33 / 32%);
}

.console-chart svg {
  height: 122px;
}

.hero-stats {
  min-height: 108px;
  color: var(--ink);
  border-top: 0;
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 -14px 45px rgb(4 20 36 / 14%);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  border-right-color: #e6ebf1;
}

.hero-stats strong {
  color: #183554;
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 580;
}

.hero-stats sup {
  color: var(--blue);
}

.hero-stats span {
  color: #7b8797;
}

.home-portals {
  padding: 78px 0 88px;
  background: #f7f9fc;
}

.compact-heading {
  margin-bottom: 30px;
}

.compact-heading h2 {
  font-size: clamp(36px, 3.4vw, 50px);
  font-weight: 580;
}

.portal-grid {
  gap: 18px;
}

.portal-grid a {
  min-height: 218px;
  padding: 27px;
  border: 0;
  border-top: 3px solid #d8e4f4;
  border-radius: 4px;
  box-shadow: 0 12px 38px rgb(24 54 89 / 6%);
}

.portal-grid a::before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 72px;
  height: 3px;
  background: var(--blue);
  content: "";
}

.portal-grid a.featured {
  color: var(--ink);
  border-color: #d8e4f4;
  background:
    linear-gradient(130deg, rgb(23 105 224 / 8%), transparent 55%),
    #fff;
}

.portal-grid a.featured::after {
  right: -78px;
  bottom: -92px;
  border-color: rgb(23 105 224 / 16%);
  box-shadow: 0 0 0 32px rgb(23 105 224 / 3%);
}

.portal-grid .featured span,
.portal-grid .featured b {
  color: var(--blue);
}

.portal-grid h3 {
  margin-top: 22px;
  font-size: 22px;
  font-weight: 600;
}

.portal-grid .featured p {
  color: var(--muted);
}

.inner-hero {
  min-height: 480px;
  padding-top: 72px;
  background:
    radial-gradient(circle at 78% 28%, rgb(23 105 224 / 9%), transparent 28%),
    #f4f7fb;
}

.inner-hero > .section-shell {
  min-height: 408px;
}

.inner-hero-copy h1 {
  font-size: clamp(48px, 4.8vw, 68px);
  font-weight: 580;
  line-height: 1.15;
}

.inner-hero-copy > p:last-child {
  margin-top: 20px;
  font-size: 13px;
}

.inner-visual {
  width: min(345px, 34vw);
  border-color: #cad8ea;
  box-shadow:
    0 0 0 24px rgb(23 105 224 / 4%),
    0 0 0 48px rgb(23 105 224 / 2%);
}

.visual-core {
  width: 125px;
  border-width: 6px;
  background: linear-gradient(145deg, #1d77ee, #1055c5);
}

.visual-core strong {
  font-size: 31px;
}

.inner-visual .node {
  width: 68px;
  height: 32px;
  border-color: #d7e0eb;
  box-shadow: 0 10px 25px rgb(34 67 111 / 8%);
}

.route-page:not([data-page="home"]) .section {
  padding: 82px 0;
}

.capability-grid {
  gap: 18px;
}

.capability-card {
  min-height: 320px;
  padding: 27px;
  border: 0;
  border-radius: 4px;
  background: #f8fafc;
  box-shadow: 0 10px 35px rgb(24 54 89 / 5%);
}

.capability-card.featured {
  background:
    linear-gradient(145deg, rgb(30 117 229 / 12%), transparent 55%),
    #0d2842;
}

.capability-card h3 {
  margin-top: 28px;
  font-size: 21px;
}

.compact-band .section-shell,
.platform-band .section-shell {
  min-height: 520px;
}

.platform-band {
  background: #0b2136;
}

.platform-band::before {
  opacity: 0.56;
}

.platform-stack div {
  min-height: 76px;
  border-color: rgb(255 255 255 / 10%);
  background: rgb(255 255 255 / 4.5%);
}

.simple-hero {
  min-height: 420px;
}

.simple-hero > .section-shell {
  min-height: 348px;
}

.simple-hero .inner-hero-copy h1 {
  font-size: clamp(50px, 5vw, 70px);
}

.about {
  min-height: 580px;
  background: #0b2136;
}

.about-visual,
.about-page .about-visual {
  min-height: 580px;
}

.about-copy {
  padding-top: 72px;
  padding-bottom: 72px;
}

.contact {
  background: #f4f7fb;
}

.contact-form {
  border: 0;
  border-radius: 5px;
  box-shadow: 0 22px 65px rgb(35 65 105 / 9%);
}

.site-footer {
  background: #071827;
}

.footer-main {
  padding: 50px 0 36px;
  gap: 42px;
}

.footer-bottom {
  min-height: 54px;
}

@media (max-width: 860px) {
  .site-header {
    height: 68px;
  }

  .hero {
    background-position: 62% center;
  }

  .hero-shell {
    padding-top: 68px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-copy {
    padding-top: 82px;
  }

  .hero-console {
    width: 100%;
  }

  .inner-hero {
    padding-top: 68px;
  }

  .inner-hero > .section-shell {
    padding-block: 58px;
  }
}

@media (max-width: 560px) {
  .hero {
    background-position: 66% center;
  }

  .hero::before {
    background: rgb(4 18 32 / 54%);
  }

  .hero-copy {
    padding-top: 68px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-console {
    display: none;
  }

  .hero-stats div {
    min-height: 98px;
  }

  .home-portals {
    padding-block: 62px 70px;
  }

  .portal-grid a {
    min-height: 195px;
  }

  .inner-hero-copy h1,
  .simple-hero .inner-hero-copy h1 {
    font-size: 43px;
  }

  .route-page:not([data-page="home"]) .section {
    padding: 64px 0;
  }

  .footer-main {
    padding-top: 46px;
  }
}

/* Unified technology palette */
:root {
  --tech-950: #050d17;
  --tech-900: #071522;
  --tech-850: #0a1b2b;
  --tech-800: #0d2236;
  --tech-700: #12324c;
  --tech-line: #1c4564;
  --tech-blue: #2f7cff;
  --tech-cyan: #36dfff;
  --tech-ice: #dff7ff;
  --tech-light: #edf6fc;
  --tech-surface: #f7fbfe;
  --ink: #0c2239;
  --muted: #61778c;
  --line: #d7e5ef;
  --surface: var(--tech-light);
  --surface-blue: #e8f3fb;
  --navy: var(--tech-950);
  --navy-soft: var(--tech-800);
  --blue: var(--tech-blue);
  --blue-strong: #1e63d7;
  --cyan: var(--tech-cyan);
  --green: var(--tech-cyan);
}

body,
main {
  background: var(--tech-light);
}

.site-header,
.site-header.scrolled,
.site-header.menu-active {
  color: #f4fbff;
  border-bottom-color: rgb(76 185 235 / 16%);
  background: rgb(5 13 23 / 92%);
  box-shadow: 0 10px 35px rgb(0 12 28 / 18%);
  backdrop-filter: blur(20px);
}

.site-header .brand-logo,
.site-header.scrolled .brand-logo,
.site-header.menu-active .brand-logo {
  color: var(--tech-cyan);
}

.site-header.scrolled .main-nav a::after,
.main-nav a::after {
  background: var(--tech-cyan);
}

.hero {
  background:
    linear-gradient(90deg, rgb(4 13 23 / 96%) 0%, rgb(6 24 39 / 86%) 46%, rgb(5 31 49 / 56%) 100%),
    linear-gradient(rgb(16 105 156 / 28%), rgb(4 34 55 / 38%)),
    url("./assets/home_campus_hd.jpg") center / cover no-repeat;
  background-blend-mode: normal, color, luminosity;
}

.hero::before {
  background:
    linear-gradient(180deg, rgb(5 13 23 / 5%), rgb(5 13 23 / 30%)),
    linear-gradient(90deg, transparent 45%, rgb(47 124 255 / 7%));
}

.hero-grid {
  opacity: 0.3;
  background-image:
    linear-gradient(rgb(54 223 255 / 6%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(54 223 255 / 6%) 1px, transparent 1px);
}

.eyebrow,
.eyebrow.dark {
  color: var(--tech-cyan);
}

.button.primary {
  color: var(--tech-950);
  border-color: var(--tech-cyan);
  background: var(--tech-cyan);
  box-shadow: 0 10px 30px rgb(54 223 255 / 18%);
}

.button.primary:hover {
  background: #7ceaff;
}

.button.secondary {
  color: var(--tech-ice);
  border-color: rgb(92 205 255 / 34%);
  background: rgb(6 26 43 / 56%);
}

.hero-console {
  border-color: rgb(54 223 255 / 25%);
  background: rgb(5 20 34 / 76%);
  box-shadow:
    0 35px 90px rgb(0 8 18 / 42%),
    0 0 45px rgb(47 124 255 / 10%),
    0 0 0 1px rgb(54 223 255 / 5%) inset;
}

.console-heading > span {
  color: var(--tech-cyan);
  border-color: rgb(54 223 255 / 28%);
  background: rgb(54 223 255 / 8%);
}

.console-kpis article,
.console-chart,
.model-row span {
  border-color: rgb(54 223 255 / 11%);
  background: rgb(8 34 54 / 58%);
}

.console-chart polyline {
  stroke: var(--tech-cyan);
}

.hero-stats {
  color: #fff;
  border-top: 1px solid rgb(54 223 255 / 12%);
  background: var(--tech-900);
  box-shadow: 0 -12px 36px rgb(0 8 18 / 24%);
}

.hero-stats div {
  border-right-color: rgb(54 223 255 / 11%);
}

.hero-stats strong {
  color: #f2fbff;
}

.hero-stats sup {
  color: var(--tech-cyan);
}

.hero-stats span {
  color: #718ca3;
}

.portal-grid a,
.capability-card {
  border: 1px solid #d6e5ef;
  border-top-color: #8fdff0;
  background: var(--tech-surface);
  box-shadow: 0 14px 40px rgb(14 59 92 / 6%);
}

.portal-grid a::before {
  background: linear-gradient(90deg, var(--tech-blue), var(--tech-cyan));
}

.portal-grid a.featured {
  color: #fff;
  border-color: var(--tech-line);
  background:
    radial-gradient(circle at 88% 100%, rgb(54 223 255 / 14%), transparent 33%),
    linear-gradient(145deg, var(--tech-800), var(--tech-950));
}

.portal-grid .featured p {
  color: #829ab0;
}

.portal-grid .featured span,
.portal-grid .featured b {
  color: var(--tech-cyan);
}

.inner-hero,
.simple-hero {
  color: #f5fbff;
  border-bottom-color: rgb(54 223 255 / 12%);
  background:
    radial-gradient(circle at 77% 35%, rgb(47 124 255 / 18%), transparent 25%),
    linear-gradient(rgb(54 223 255 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(54 223 255 / 4%) 1px, transparent 1px),
    var(--tech-900);
  background-size: auto, 56px 56px, 56px 56px, auto;
}

.inner-hero-copy h1 {
  color: #f4fbff;
}

.inner-hero-copy > p:last-child {
  color: #829ab0;
}

.inner-visual {
  border-color: rgb(54 223 255 / 30%);
  box-shadow:
    0 0 0 24px rgb(54 223 255 / 4%),
    0 0 0 48px rgb(47 124 255 / 3%),
    0 0 70px rgb(47 124 255 / 12%);
}

.inner-visual::before,
.inner-visual::after {
  background: rgb(54 223 255 / 25%);
}

.visual-core {
  border-color: #173c59;
  background: linear-gradient(145deg, #238aff, #0c55c7);
  box-shadow:
    0 18px 50px rgb(0 58 140 / 34%),
    0 0 25px rgb(54 223 255 / 17%);
}

.inner-visual .node {
  color: var(--tech-ice);
  border-color: rgb(54 223 255 / 22%);
  background: var(--tech-800);
  box-shadow: 0 10px 25px rgb(0 8 18 / 20%);
}

.about-graphic span {
  color: var(--tech-ice);
  border-color: rgb(54 223 255 / 22%);
  background: var(--tech-800);
}

.about-graphic span:nth-child(2) {
  color: var(--tech-950);
  border-color: var(--tech-cyan);
  background: var(--tech-cyan);
}

.capability-card.featured {
  color: #fff;
  border-color: var(--tech-line);
  background:
    radial-gradient(circle at 90% 100%, rgb(54 223 255 / 12%), transparent 34%),
    var(--tech-800);
}

.capability-icon {
  color: var(--tech-blue);
  border-color: #c9ddec;
  background: #edf6fc;
}

.featured .capability-icon {
  color: var(--tech-cyan);
  border-color: rgb(54 223 255 / 22%);
  background: rgb(54 223 255 / 8%);
}

.platform-band,
.about,
.site-footer {
  background: var(--tech-950);
}

.platform-stack div {
  border-color: rgb(54 223 255 / 12%);
  background: rgb(10 34 54 / 72%);
}

.platform-stack div:hover {
  border-color: rgb(54 223 255 / 34%);
  background: rgb(15 52 79 / 82%);
}

.platform-stack span,
.text-link.light,
.about-values strong,
.footer-column a:hover {
  color: var(--tech-cyan);
}

.news-list {
  border-top-color: #a9c9da;
}

.news-list > a {
  border-bottom-color: #d2e2ec;
}

.news-list > a:hover {
  background: #e5f1f8;
}

.news-list > a > div > span,
.news-list > a > b,
.news-list time strong {
  color: #1559a6;
}

.about-visual img {
  filter: grayscale(0.75) saturate(0.8) contrast(1.12);
}

.about-visual::after {
  background:
    linear-gradient(90deg, transparent 38%, var(--tech-950) 100%),
    linear-gradient(180deg, rgb(17 111 158 / 12%), rgb(5 13 23 / 38%));
}

.contact {
  background:
    linear-gradient(rgb(54 223 255 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(54 223 255 / 3%) 1px, transparent 1px),
    #e9f4fb;
  background-size: 56px 56px;
}

.contact-form {
  border: 1px solid #d0e2ec;
  background: rgb(248 252 255 / 96%);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--tech-blue);
  box-shadow: 0 0 0 3px rgb(47 124 255 / 9%);
}

.contact-form button,
.dark-button {
  color: var(--tech-950) !important;
  background: var(--tech-cyan) !important;
}

.contact-form button:hover,
.dark-button:hover {
  background: #7ceaff !important;
}

.footer-bottom {
  border-top-color: rgb(54 223 255 / 10%);
}

@media (max-width: 860px) {
  .site-header:not(.scrolled),
  .site-header.menu-active,
  .site-header.scrolled {
    color: #f4fbff;
    background: rgb(5 13 23 / 97%);
  }

  .main-nav {
    color: #e7f7ff;
    background: var(--tech-900);
  }

  .main-nav a {
    border-bottom-color: rgb(54 223 255 / 10%);
  }
}

/* Reference-inspired homepage */
@media (min-width: 861px) {
  body[data-route="home"] {
    overflow-x: hidden;
  }
}

body[data-route="home"],
body[data-route="home"] main,
body[data-route="home"] .route-page[data-page="home"] {
  background: #fff;
}

body[data-route="home"] .route-page[data-page="home"] {
  min-height: 0;
}

body[data-route="home"] .site-header,
body[data-route="home"] .site-header.scrolled,
body[data-route="home"] .site-header.menu-active {
  color: #172235;
  border-bottom: 1px solid #e7e9ec;
  background: rgb(255 255 255 / 97%);
  box-shadow: none;
}

body[data-route="home"] .site-header .brand-logo,
body[data-route="home"] .site-header.scrolled .brand-logo,
body[data-route="home"] .site-header.menu-active .brand-logo {
  color: #ad7b2d;
}

body[data-route="home"] .main-nav a::after,
body[data-route="home"] .site-header.scrolled .main-nav a::after {
  background: #155eef;
}

.reference-home-hero {
  position: relative;
  display: grid;
  width: 100%;
  height: 100svh;
  min-height: 680px;
  max-height: 920px;
  overflow: hidden;
  padding-top: 72px;
  border-bottom: 1px solid #e7eef8;
  background:
    linear-gradient(90deg, rgb(21 94 239 / 5%) 1px, transparent 1px) 0 0 / 68px 68px,
    linear-gradient(180deg, rgb(21 94 239 / 4%) 1px, transparent 1px) 0 0 / 68px 68px,
    linear-gradient(135deg, #fff 0%, #f7fbff 54%, #eef6ff 100%);
  grid-template-columns: 45% 55%;
}

.reference-home-hero::before,
.reference-home-hero::after {
  display: none !important;
  content: none !important;
}

#hero-canvas {
  display: none !important;
}


.reference-home-copy {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: flex-start;
  padding: clamp(110px, 15vh, 150px) 58px 72px max(7vw, calc((100vw - 1240px) / 2));
  flex-direction: column;
}

.reference-home-copy h1 {
  margin: 0;
  color: #0b1f3a;
  font-size: clamp(48px, 4.5vw, 72px);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: 0;
}

.reference-home-line {
  display: block;
  width: 54px;
  height: 3px;
  margin: 24px 0 27px;
  background: linear-gradient(90deg, #155eef, #36d6ff);
}

.reference-home-intro {
  max-width: 470px;
  margin: 0;
  color: #536173;
  font-size: clamp(14px, 1.08vw, 16px);
  line-height: 2;
}

.reference-home-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  clip-path: none;
}

.reference-home-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 50%;
  filter: saturate(0.82) contrast(1.02) brightness(1.04);
  transform: none;
}

.reference-home-image-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #f8fbff 0%, rgb(248 251 255 / 70%) 8%, transparent 23%),
    linear-gradient(180deg, rgb(255 255 255 / 12%), rgb(21 94 239 / 9%));
  pointer-events: none;
}

.future-building-brand {
  position: absolute;
  top: 22px;
  right: 5%;
  display: flex;
  width: 240px;
  min-height: 72px;
  justify-content: center;
  padding: 10px 20px;
  color: #fff;
  border-left: 3px solid #36d6ff;
  background: rgb(7 17 31 / 78%);
  box-shadow: 0 18px 54px rgb(21 94 239 / 18%);
  backdrop-filter: blur(12px);
  flex-direction: column;
}

.future-building-brand strong {
  font-size: 18px;
  font-weight: 650;
  letter-spacing: 2.5px;
}

.future-building-brand small {
  margin-top: 5px;
  color: rgb(255 255 255 / 70%);
  font-size: 7px;
  letter-spacing: 1.5px;
}

body[data-route="home"] .home-portals {
  background: #fff;
}

body[data-route="home"] .home-portals .eyebrow.dark {
  color: #aa792c;
}

body[data-route="home"] .home-portals .portal-grid a {
  border-color: #e4e7ea;
  border-top-color: #d9c29b;
  background: #fbfcfd;
}

body[data-route="home"] .home-portals .portal-grid a::before {
  background: #ad7b2d;
}

body[data-route="home"] .home-portals .portal-grid a.featured {
  color: #172235;
  border-color: #dfd4c0;
  background:
    radial-gradient(circle at 90% 100%, rgb(173 123 45 / 10%), transparent 35%),
    #f8f6f1;
}

body[data-route="home"] .home-portals .portal-grid .featured p {
  color: #6a7787;
}

body[data-route="home"] .home-portals .portal-grid span,
body[data-route="home"] .home-portals .portal-grid b,
body[data-route="home"] .home-portals .portal-grid .featured span,
body[data-route="home"] .home-portals .portal-grid .featured b {
  color: #9f6e25;
}

.home-tech-section {
  position: relative;
  min-height: calc(100svh - 24px);
  overflow: hidden;
  padding: clamp(92px, 12vh, 132px) 0 clamp(84px, 10vh, 120px);
  border-bottom: 1px solid #e8eef7;
  background: #fff;
}

.home-tech-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(21 94 239 / 5%) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, rgb(21 94 239 / 4%) 1px, transparent 1px) 0 0 / 72px 72px;
  content: "";
  mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 72%, transparent 100%);
  pointer-events: none;
}

.home-tech-section::after {
  position: absolute;
  top: 14%;
  right: -9%;
  width: 46%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(54 214 255 / 72%), transparent);
  content: "";
  transform: rotate(-28deg);
  transform-origin: center;
  pointer-events: none;
}

.home-tech-shell {
  position: relative;
  z-index: 1;
  display: grid;
  width: var(--shell);
  margin: 0 auto;
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  gap: clamp(44px, 6vw, 96px);
}

.home-tech-eyebrow {
  margin: 0 0 18px;
  color: #155eef;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.4px;
}

.home-tech-copy h2 {
  max-width: 620px;
  margin: 0;
  color: #0b1f3a;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 650;
  line-height: 1.13;
  letter-spacing: 0;
}

.home-tech-copy > p:not(.home-tech-eyebrow) {
  max-width: 570px;
  margin: 26px 0 0;
  color: #5b6a7d;
  font-size: 16px;
  line-height: 2;
}

.home-tech-metrics {
  display: grid;
  max-width: 600px;
  margin-top: 42px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-tech-metrics div {
  min-height: 112px;
  padding: 22px 18px;
  border: 1px solid #dce8f7;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.home-tech-metrics strong {
  display: block;
  color: #155eef;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 720;
  line-height: 1;
}

.home-tech-metrics span {
  display: block;
  margin-top: 13px;
  color: #64748b;
  font-size: 13px;
}

.home-tech-visual {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(310px, 1.1fr) minmax(230px, 0.9fr);
  gap: 18px;
}

.home-orbit-panel {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid #dbe8f8;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgb(21 94 239 / 7%) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(180deg, rgb(21 94 239 / 6%) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(145deg, #ffffff 0%, #f4f9ff 100%);
  box-shadow: 0 26px 70px rgb(12 34 57 / 10%);
}

.home-orbit-panel::before {
  position: absolute;
  inset: 52px;
  border: 1px solid rgb(21 94 239 / 20%);
  border-radius: 50%;
  content: "";
}

.home-orbit-panel::after {
  position: absolute;
  top: 50%;
  right: 38px;
  left: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(21 94 239 / 36%), transparent);
  content: "";
}

.home-orbit-pulse {
  position: absolute;
  inset: 112px;
  border: 1px dashed rgb(54 214 255 / 44%);
  border-radius: 50%;
}

.home-orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 178px;
  height: 178px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgb(54 214 255 / 45%);
  border-radius: 50%;
  background: linear-gradient(145deg, #07111f, #155eef);
  box-shadow: 0 22px 44px rgb(21 94 239 / 24%);
  text-align: center;
  transform: translate(-50%, -50%);
  flex-direction: column;
}

.home-orbit-core strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.home-orbit-core small {
  width: 128px;
  margin-top: 10px;
  color: rgb(255 255 255 / 72%);
  font-size: 10px;
  line-height: 1.6;
}

.home-node {
  position: absolute;
  min-width: 92px;
  padding: 9px 12px;
  color: #0b1f3a;
  border: 1px solid #cfe0f5;
  border-radius: 999px;
  background: rgb(255 255 255 / 92%);
  box-shadow: 0 12px 28px rgb(12 34 57 / 9%);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  text-align: center;
}

.home-node.n1 {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}

.home-node.n2 {
  top: 48%;
  right: 36px;
}

.home-node.n3 {
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
}

.home-node.n4 {
  top: 48%;
  left: 36px;
}

.home-stack-list {
  display: grid;
  gap: 14px;
}

.home-stack-list div {
  min-height: 102px;
  padding: 20px 18px;
  border: 1px solid #dce8f7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgb(12 34 57 / 7%);
}

.home-stack-list span {
  color: #16b364;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.6px;
}

.home-stack-list strong {
  display: block;
  margin-top: 10px;
  color: #0b1f3a;
  font-size: 18px;
}

.home-stack-list small {
  display: block;
  margin-top: 8px;
  color: #697789;
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 860px) {
  body[data-route="home"] .main-nav {
    color: #172235;
    background: #fff;
  }

  body[data-route="home"] .main-nav a {
    border-bottom-color: #eceff2;
  }

  .reference-home-hero {
    height: auto;
    min-height: 100svh;
    padding-top: 68px;
    grid-template-columns: 1fr;
  }

  .reference-home-copy {
    min-height: 350px;
    padding: 70px 28px 48px;
  }

  .reference-home-visual {
    height: min(46vh, 420px);
    min-height: 300px;
    clip-path: none;
  }

  .reference-home-image-fade {
    background: linear-gradient(180deg, rgb(246 248 250 / 25%), transparent 22%);
  }

  .home-tech-section {
    min-height: auto;
    padding: 76px 0 82px;
  }

  .home-tech-shell {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .home-tech-copy h2 {
    max-width: 720px;
    font-size: clamp(34px, 8vw, 48px);
  }

  .home-tech-copy > p:not(.home-tech-eyebrow) {
    max-width: 720px;
  }

  .home-tech-visual {
    grid-template-columns: 1fr;
  }

  .home-orbit-panel {
    min-height: 420px;
  }

  .home-stack-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .reference-home-copy {
    min-height: 330px;
    padding: 58px 20px 42px;
  }

  .reference-home-copy h1 {
    font-size: 42px;
  }

  .reference-home-intro {
    max-width: 360px;
    font-size: 13px;
    line-height: 1.9;
  }

  .reference-home-visual {
    height: 320px;
    min-height: 320px;
  }

  .future-building-brand {
    top: 18px;
    right: 4%;
    width: 190px;
    min-height: 64px;
    padding: 9px 14px;
  }

  .future-building-brand strong {
    font-size: 16px;
    letter-spacing: 2px;
  }

  .future-building-brand small {
    margin-top: 5px;
    font-size: 7px;
  }

  .home-tech-section {
    padding: 62px 0 68px;
  }

  .home-tech-metrics,
  .home-stack-list {
    grid-template-columns: 1fr;
  }

  .home-tech-metrics {
    margin-top: 32px;
  }

  .home-tech-metrics div,
  .home-stack-list div {
    min-height: auto;
  }

  .home-orbit-panel {
    min-height: 340px;
  }

  .home-orbit-panel::before {
    inset: 38px;
  }

  .home-orbit-pulse {
    inset: 82px;
  }

  .home-orbit-core {
    width: 132px;
    height: 132px;
  }

  .home-orbit-core strong {
    font-size: 14px;
  }

  .home-orbit-core small {
    width: 104px;
    font-size: 9px;
  }

  .home-node {
    min-width: 76px;
    padding: 7px 9px;
    font-size: 10px;
  }

  .home-node.n1 {
    top: 44px;
  }

  .home-node.n2 {
    right: 18px;
  }

  .home-node.n3 {
    bottom: 44px;
  }

  .home-node.n4 {
    left: 18px;
  }
}

/* Homepage footer alignment */
body[data-route="home"] .site-footer {
  display: block;
  color: #fff;
  background: var(--tech-950);
}

body[data-route="home"] .footer-main {
  display: grid;
  width: var(--shell);
  margin: 0 auto;
  padding: 64px 0 28px;
  grid-template-columns: 1.8fr repeat(2, 1fr);
  gap: 55px;
}

body[data-route="home"] .footer-brand > p {
  max-width: 270px;
  margin: 24px 0 0;
  color: rgb(255 255 255 / 42%);
  font-size: 11px;
  line-height: 1.8;
}

body[data-route="home"] .footer-filing {
  color: rgb(255 255 255 / 62%);
}

body[data-route="home"] .footer-column strong {
  color: #fff;
}

body[data-route="home"] .footer-column a {
  color: rgb(255 255 255 / 42%);
}

body[data-route="home"] .footer-bottom {
  display: flex;
  width: var(--shell);
  min-height: 64px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  color: rgb(255 255 255 / 28%);
  border-top: 1px solid rgb(255 255 255 / 10%);
  font-size: 9px;
  gap: 12px;
  flex-wrap: wrap;
}

body[data-route="home"] .reference-home-hero {
  background:
    linear-gradient(90deg, rgb(21 94 239 / 5%) 1px, transparent 1px) 0 0 / 68px 68px,
    linear-gradient(180deg, rgb(21 94 239 / 4%) 1px, transparent 1px) 0 0 / 68px 68px,
    linear-gradient(135deg, #fff 0%, #f7fbff 54%, #eef6ff 100%) !important;
}

.route-page:not([data-page="home"]) .inner-hero,
.route-page:not([data-page="home"]) .simple-hero {
  color: #0c2239;
  border-bottom-color: #edf1f5;
}

.route-page:not([data-page="home"]) .inner-hero-copy h1,
.route-page:not([data-page="home"]) .simple-hero .inner-hero-copy h1,
.route-page:not([data-page="home"]) .inner-hero-copy > p:last-child {
  color: #0c2239;
}

/* Header trademark logo */
.site-header .header-brand {
  width: auto;
  min-width: 0;
  align-items: center;
  gap: 0;
}

.site-header .header-brand-mark {
  display: block;
  width: clamp(156px, 13vw, 224px);
  height: auto;
  max-height: 44px;
  object-fit: contain;
}

@media (max-width: 560px) {
  .site-header .header-brand-mark {
    width: 148px;
    max-height: 38px;
  }
}

/* AI dropdown navigation */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  height: 100%;
  align-items: center;
}

.nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  height: 100%;
  align-items: center;
  gap: 6px;
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  display: block;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.nav-dropdown-toggle::before {
  position: absolute;
  right: 28%;
  bottom: 15px;
  left: 28%;
  height: 2px;
  background: #ad7b2d;
  content: "";
  opacity: 0;
  transition: opacity 0.2s ease;
}

.nav-dropdown.open .nav-dropdown-toggle::before,
.nav-dropdown-toggle.active::before {
  opacity: 1;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 6px);
  left: 50%;
  z-index: 20;
  display: grid;
  min-width: 320px;
  padding: 8px;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: rgb(255 255 255 / 98%);
  box-shadow: 0 18px 46px rgb(12 34 57 / 14%);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.main-nav .nav-dropdown-menu a {
  height: 38px;
  padding: 0 12px;
  align-items: center;
  color: #172235;
  border-radius: 4px;
  font-size: 13px;
}

.main-nav .nav-dropdown-menu a::after {
  display: none;
}

.main-nav .nav-dropdown-menu a:hover,
.main-nav .nav-dropdown-menu a.active {
  color: #9f6e25;
  background: #f7f3ec;
}

.main-nav .nav-dropdown-menu .nav-business-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  min-height: 64px;
  height: auto;
  padding: 10px 12px;
  align-items: center;
  color: #153a70;
  border-radius: 0;
  transition: background 0.18s ease, color 0.18s ease;
}

.main-nav .nav-dropdown-menu .nav-business-item:hover,
.main-nav .nav-dropdown-menu .nav-business-item.active {
  color: #153a70;
  background: #f3f8fd;
}

.nav-business-badge {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-business-badge.badge-gc {
  background: #7c3aed;
}

.nav-business-badge.badge-at {
  background: #0891b2;
}

.nav-business-badge.badge-mk {
  background: #e91e5a;
}

.nav-business-badge.badge-dc {
  background: #059669;
}

.nav-business-text {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.nav-business-text strong {
  color: #153a70;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.25;
}

.nav-business-text small {
  color: #8393aa;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.ai-detail-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.ai-detail-layout article {
  padding: 34px;
  border: 1px solid #e3eaf1;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgb(12 34 57 / 6%);
}

.ai-detail-layout span {
  color: #b78636;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
}

.ai-detail-layout h2 {
  margin: 18px 0 12px;
  color: #0c2239;
  font-size: 24px;
}

.ai-detail-layout p {
  margin: 0;
  color: #637083;
  line-height: 1.9;
}

@media (max-width: 860px) {
  .nav-dropdown {
    display: block;
    height: auto;
  }

  .nav-dropdown-toggle {
    width: 100%;
    height: 58px;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .nav-dropdown-toggle::before {
    display: none;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    padding: 6px 0 10px 16px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav .nav-dropdown-menu a {
    height: 42px;
    padding: 0;
    color: #536173;
    border-bottom: 0;
    font-size: 14px;
  }

  .main-nav .nav-dropdown-menu .nav-business-item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    min-height: 58px;
    height: auto;
    padding: 8px 0;
  }

  .nav-business-badge {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 12px;
  }

  .nav-business-text strong {
    font-size: 15px;
  }

  .nav-business-text small {
    font-size: 12px;
  }

  .ai-detail-layout {
    grid-template-columns: 1fr;
  }
}

/* AI dropdown stacking fix */
.site-header,
.site-header.scrolled,
.site-header.menu-active {
  z-index: 2000;
  overflow: visible;
}

.main-nav,
.nav-dropdown {
  overflow: visible;
}

.nav-dropdown {
  z-index: 2010;
}

.nav-dropdown-menu {
  z-index: 2020;
}

.reference-home-visual,
.reference-home-visual img,
.reference-home-image-fade {
  pointer-events: none;
}

/* AI dropdown click-through final fix */
.site-header,
.site-header.scrolled,
.site-header.menu-active {
  z-index: 9999 !important;
  isolation: isolate;
  overflow: visible !important;
}

.main-nav,
.nav-dropdown,
.nav-dropdown-menu {
  overflow: visible !important;
}

.nav-dropdown-menu {
  z-index: 10000 !important;
}

body[data-route="home"] .reference-home-hero {
  z-index: 0;
}

body[data-route="home"] .reference-home-hero,
body[data-route="home"] .reference-home-hero * {
  pointer-events: none;
}

body[data-route="home"] .site-header,
body[data-route="home"] .site-header * {
  pointer-events: auto;
}

/* Homepage supplied background image */
body[data-route="home"] .reference-home-hero {
  background:
    linear-gradient(90deg, rgb(255 255 255 / 70%) 0%, rgb(255 255 255 / 30%) 42%, transparent 68%),
    url("./assets/homepage-hero-background.png") center center / cover no-repeat !important;
}

body[data-route="home"] .reference-home-visual,
body[data-route="home"] .future-building-brand {
  display: none;
}

/* Homepage hero copy art direction */
body[data-route="home"] .reference-home-copy {
  max-width: 620px;
  padding-top: clamp(132px, 17vh, 178px);
}

body[data-route="home"] .reference-home-copy::before {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 14px;
  color: #8a6424;
  border: 1px solid rgb(177 124 44 / 28%);
  border-radius: 999px;
  background: rgb(255 255 255 / 62%);
  box-shadow: 0 14px 42px rgb(15 42 68 / 8%);
  content: "SHUIHUA FUTURE";
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.6px;
  backdrop-filter: blur(14px);
}

body[data-route="home"] .reference-home-copy h1 {
  position: relative;
  width: fit-content;
  color: #0b1f3a;
  background: linear-gradient(112deg, #07111f 0%, #123f74 48%, #b78636 100%);
  background-clip: text;
  font-size: clamp(58px, 5.9vw, 96px);
  font-weight: 780;
  letter-spacing: 0;
  text-shadow: 0 16px 44px rgb(11 31 58 / 10%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body[data-route="home"] .reference-home-copy h1::after {
  position: absolute;
  right: -54px;
  bottom: 12px;
  width: 38px;
  height: 38px;
  border-top: 2px solid rgb(183 134 54 / 62%);
  border-right: 2px solid rgb(21 94 239 / 42%);
  content: "";
}

body[data-route="home"] .reference-home-line {
  position: relative;
  width: 142px;
  height: 2px;
  margin: 30px 0 28px;
  overflow: visible;
  background: linear-gradient(90deg, #b78636 0%, #155eef 58%, rgb(54 214 255 / 0%) 100%);
}

body[data-route="home"] .reference-home-line::before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b78636;
  box-shadow: 24px 0 0 rgb(21 94 239 / 72%);
  content: "";
}

body[data-route="home"] .reference-home-intro {
  position: relative;
  max-width: 548px;
  margin: 0;
  padding: 0;
  color: #27384c;
  font-size: clamp(15px, 1.08vw, 17px);
  font-weight: 500;
  line-height: 2.1;
  text-shadow:
    0 1px 0 rgb(255 255 255 / 86%),
    0 14px 34px rgb(255 255 255 / 72%);
}

body[data-route="home"] .reference-home-intro::after {
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 86px;
  height: 2px;
  background: linear-gradient(90deg, rgb(183 134 54 / 78%), rgb(21 94 239 / 52%), transparent);
  content: "";
}

@media (max-width: 860px) {
  body[data-route="home"] .reference-home-copy {
    padding-top: 88px;
  }

  body[data-route="home"] .reference-home-copy h1 {
    font-size: clamp(48px, 12vw, 72px);
  }

  body[data-route="home"] .reference-home-intro {
    max-width: 100%;
    padding: 0;
  }
}

@media (max-width: 560px) {
  body[data-route="home"] .reference-home-copy::before {
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: 2px;
  }

  body[data-route="home"] .reference-home-copy h1::after {
    display: none;
  }

  body[data-route="home"] .reference-home-line {
    width: 112px;
    margin: 24px 0 22px;
  }
}

/* Business detail pages */
.business-page .business-hero {
  min-height: 640px;
  background:
    radial-gradient(circle at 84% 20%, rgb(21 94 239 / 8%), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 52%, #eef6ff 100%) !important;
}

.business-page .business-hero > .section-shell {
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(44px, 6vw, 92px);
}

.business-copy h1 {
  font-size: clamp(60px, 7vw, 112px);
  font-weight: 780;
  letter-spacing: 0;
}

.business-copy > p:last-child {
  max-width: 560px;
  color: #425066 !important;
  font-size: 15px;
  line-height: 2.05;
}

.business-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.business-tags span {
  padding: 8px 13px;
  color: #153a70;
  border: 1px solid #dbe7f5;
  border-radius: 999px;
  background: rgb(255 255 255 / 82%);
  box-shadow: 0 12px 30px rgb(18 49 84 / 7%);
  font-size: 12px;
  font-weight: 700;
}

.business-hero-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid #dce8f6;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 34px 90px rgb(18 49 84 / 13%);
}

.business-hero-visual::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgb(21 94 239 / 12%);
  border-radius: 14px;
  content: "";
  pointer-events: none;
}

.business-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.business-aigc .business-copy h1 {
  color: #6d38d5;
}

.business-agent .business-copy h1 {
  color: #087e9c;
}

.business-marketing .business-copy h1 {
  color: #d91e58;
}

.business-aidc .business-copy h1 {
  color: #058761;
}


/* AI agent page */
body[data-route="ai-model"] .site-header,
body[data-route="ai-model"] .site-header.scrolled,
body[data-route="ai-model"] .site-header.menu-active {
  color: #172235;
  border-bottom: 1px solid #e7e9ec;
  background: rgb(255 255 255 / 97%);
  box-shadow: none;
}

body[data-route="ai-model"] .site-header .header-brand-mark {
  filter: none;
}

body[data-route="ai-model"] .main-nav {
  color: #172235;
}

body[data-route="ai-model"] .main-nav a::after,
body[data-route="ai-model"] .site-header.scrolled .main-nav a::after {
  background: #0891b2;
}

@media (max-width: 860px) {
  body[data-route="ai-model"] .main-nav {
    color: #172235;
    background: #fff;
  }

  body[data-route="ai-model"] .main-nav a,
  body[data-route="ai-model"] .nav-dropdown-toggle {
    border-bottom-color: #edf1f6;
  }
}

.business-agent .business-hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgb(8 145 178 / 9%), transparent 34%),
    linear-gradient(135deg, #fff 0%, #f7fbff 54%, #eef9fb 100%) !important;
}

.business-agent .business-hero > .section-shell {
  grid-template-columns: minmax(360px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(44px, 5vw, 82px);
}

.business-agent .business-copy {
  max-width: 590px;
}

.business-agent .business-copy h1 {
  color: #0b7f99;
  text-shadow: 0 12px 34px rgb(255 255 255 / 75%);
}

.business-agent .business-copy > p:last-child {
  color: #344a61 !important;
}

.business-agent .business-tags span {
  color: #0b6e83;
  border-color: #c9eef4;
  background: rgb(255 255 255 / 76%);
}

.business-agent .business-hero-visual {
  overflow: hidden;
  border: 1px solid #dcebf2;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 34px 90px rgb(18 49 84 / 13%);
  transform: translateY(16px);
}

.business-agent .business-hero-visual::before {
  display: none;
}

.business-agent .business-hero-visual img {
  display: block;
  width: 100%;
  height: clamp(380px, 38vw, 530px);
  object-fit: cover;
  object-position: center;
}

.agent-transformation-section {
  padding: clamp(58px, 5.8vw, 88px) 0;
  background:
    linear-gradient(90deg, rgb(8 145 178 / 4%) 1px, transparent 1px) 0 0 / 74px 74px,
    #fff;
}

.agent-transformation-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.agent-transformation-heading h2 {
  margin: 10px 0 0;
  color: #0c2d6b;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 780;
  line-height: 1.16;
}

.agent-transformation-heading > p:last-child {
  max-width: 760px;
  margin: 14px 0 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
}

.agent-stage-list {
  display: grid;
  gap: 18px;
}

.agent-stage-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: flex-start;
  padding: 24px 26px;
  border: 1px solid #edf1f6;
  border-radius: 20px;
  background: #f8fafc;
  box-shadow: 0 18px 50px rgb(15 45 82 / 5%);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.agent-stage-card:hover {
  transform: translateY(-3px);
  border-color: #d7e7f0;
  box-shadow: 0 24px 70px rgb(15 45 82 / 9%);
}

.agent-stage-index {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
}

.stage-cyan .agent-stage-index,
.stage-cyan .agent-stage-copy > span {
  background: #0891b2;
}

.stage-purple .agent-stage-index,
.stage-purple .agent-stage-copy > span {
  background: #6d28d9;
}

.stage-indigo .agent-stage-index,
.stage-indigo .agent-stage-copy > span {
  background: #5b21b6;
}

.agent-stage-copy > span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 9px;
  color: #fff;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
}

.agent-stage-copy h3 {
  margin: 10px 0 7px;
  color: #0c2d6b;
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 760;
  line-height: 1.28;
}

.agent-stage-copy p {
  max-width: 920px;
  margin: 0 0 13px;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
}

.agent-stage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.agent-stage-tags b {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 3px 10px;
  color: #0891b2;
  border: 1px solid rgb(8 145 178 / 16%);
  border-radius: 999px;
  background: rgb(8 145 178 / 7%);
  font-size: 11px;
  font-weight: 650;
}

.agent-system-section {
  padding: clamp(54px, 5vw, 80px) 0 clamp(60px, 6vw, 92px);
  background:
    radial-gradient(circle at 88% 8%, rgb(109 40 217 / 7%), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.agent-system-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.agent-system-heading h2 {
  margin: 10px 0 0;
  color: #0c2d6b;
  font-size: clamp(29px, 3.2vw, 45px);
  font-weight: 780;
  line-height: 1.16;
}

.agent-system-heading > p:last-child {
  max-width: 720px;
  margin: 12px 0 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.75;
}

.agent-system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.agent-system-card {
  position: relative;
  overflow: hidden;
  min-height: 318px;
  padding: 25px 24px;
  border: 1px solid #e0edf4;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 96%), rgb(248 252 255 / 92%)),
    #fff;
  box-shadow: 0 22px 64px rgb(15 45 82 / 7%);
}

.agent-system-card::after {
  position: absolute;
  right: -44px;
  bottom: -56px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgb(8 145 178 / 8%);
  content: "";
}

.agent-system-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 14px;
  background: linear-gradient(145deg, #0891b2, #6d28d9);
  box-shadow: 0 16px 36px rgb(8 145 178 / 18%);
}

.agent-system-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.agent-system-card > span {
  display: inline-flex;
  margin: 18px 0 8px;
  padding: 3px 9px;
  color: #0891b2;
  border-radius: 999px;
  background: rgb(8 145 178 / 8%);
  font-size: 11px;
  font-weight: 750;
}

.agent-system-card h3 {
  margin: 0;
  color: #0c2d6b;
  font-size: clamp(20px, 1.75vw, 24px);
  font-weight: 780;
  line-height: 1.25;
}

.agent-system-card p {
  margin: 13px 0 16px;
  color: #475569;
  font-size: 14px;
  line-height: 1.68;
}

.agent-system-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.agent-system-tags b {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 3px 10px;
  color: #0b7f99;
  border: 1px solid rgb(8 145 178 / 16%);
  border-radius: 999px;
  background: rgb(8 145 178 / 7%);
  font-size: 11px;
  font-weight: 650;
}

@media (max-width: 980px) {
  .business-agent .business-hero > .section-shell {
    grid-template-columns: 1fr;
  }

  .business-agent .business-hero-visual img {
    height: auto;
  }

  .agent-system-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .agent-stage-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .agent-system-card {
    min-height: 0;
    padding: 24px;
  }
}

/* AI marketing page */
body[data-route="ai-agent"] .site-header,
body[data-route="ai-agent"] .site-header.scrolled,
body[data-route="ai-agent"] .site-header.menu-active {
  color: #172235;
  border-bottom: 1px solid #e7e9ec;
  background: rgb(255 255 255 / 97%);
  box-shadow: none;
}

body[data-route="ai-agent"] .site-header .header-brand-mark {
  filter: none;
}

body[data-route="ai-agent"] .main-nav {
  color: #172235;
}

body[data-route="ai-agent"] .main-nav a::after,
body[data-route="ai-agent"] .site-header.scrolled .main-nav a::after {
  background: #d91e58;
}

@media (max-width: 860px) {
  body[data-route="ai-agent"] .main-nav {
    color: #172235;
    background: #fff;
  }

  body[data-route="ai-agent"] .main-nav a,
  body[data-route="ai-agent"] .nav-dropdown-toggle {
    border-bottom-color: #edf1f6;
  }
}

.business-marketing {
  background: #fff;
}

body[data-route="ai-agent"] .business-marketing .business-hero.marketing-hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 94%) 0%, rgb(255 255 255 / 86%) 31%, rgb(255 255 255 / 34%) 55%, rgb(255 255 255 / 0%) 74%),
    url("./assets/marketing-hero-ai.png") center calc(50% + 28px) / cover no-repeat !important;
}

.business-marketing .business-hero > .section-shell {
  display: flex;
  min-height: 624px;
  align-items: center;
  justify-content: flex-start;
}

.business-marketing .business-copy {
  max-width: 620px;
  position: relative;
  z-index: 2;
}

.business-marketing .business-copy h1 {
  color: #d91e58;
  text-shadow: 0 12px 34px rgb(255 255 255 / 78%);
}

.business-marketing .business-copy > p:last-child {
  color: #344a61 !important;
}

.business-marketing .business-tags span {
  color: #b9164a;
  border-color: #f5ccda;
  background: rgb(255 255 255 / 78%);
}

.marketing-hero-visual {
  display: none;
}

.marketing-hero-visual::before {
  display: none;
}

.marketing-hero-visual img {
  display: block;
  width: 100%;
  height: clamp(380px, 38vw, 535px);
  object-fit: cover;
  object-position: center;
}

.marketing-pain-section,
.marketing-module-section,
.marketing-system-section,
.marketing-leads-section,
.marketing-advantages-section {
  background: #fff;
}

.marketing-pain-section {
  padding: clamp(62px, 6vw, 92px) 0 clamp(50px, 5vw, 78px);
}

.marketing-center-heading {
  max-width: 850px;
  margin: 0 auto 34px;
  text-align: center;
}

.marketing-center-heading h2,
.marketing-section-heading h2 {
  margin: 10px 0 0;
  color: #0c2d6b;
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 780;
  line-height: 1.16;
}

.marketing-center-heading h2 span,
.marketing-section-heading h2 span {
  margin-left: 8px;
  color: #d91e58;
}

.marketing-pain-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.marketing-pain-grid article,
.marketing-feature-card,
.marketing-system-grid article,
.marketing-advantage-grid article {
  border: 1px solid #e7edf5;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 96%), rgb(248 252 255 / 92%)),
    #fff;
  box-shadow: 0 18px 56px rgb(15 45 82 / 6%);
}

.marketing-pain-grid article {
  min-height: 176px;
  padding: 24px 20px;
  border-radius: 18px;
  text-align: center;
}

.marketing-pain-grid b {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: #d91e58;
  border-radius: 14px;
  background: #fff0f5;
  font-size: 12px;
  font-weight: 800;
}

.marketing-pain-grid h3 {
  margin: 18px 0 8px;
  color: #0c2d6b;
  font-size: 19px;
  font-weight: 760;
}

.marketing-pain-grid p {
  margin: 0;
  color: #5b6879;
  font-size: 13px;
  line-height: 1.65;
}

.marketing-module-section {
  padding: clamp(60px, 5.8vw, 90px) 0;
  background:
    linear-gradient(90deg, rgb(217 30 88 / 4%) 1px, transparent 1px) 0 0 / 72px 72px,
    #fff;
}

.marketing-system-section,
.marketing-leads-section {
  padding: clamp(60px, 5.8vw, 88px) 0;
}

.marketing-system-section {
  background: linear-gradient(180deg, #fff 0%, #f9fbff 100%);
}

.marketing-leads-section {
  background:
    radial-gradient(circle at 88% 8%, rgb(217 30 88 / 7%), transparent 30%),
    #fff;
}

.marketing-section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.marketing-section-heading > p:last-child {
  max-width: 760px;
  margin: 14px 0 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
}

.marketing-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0;
  padding: 4px 12px;
  color: #d91e58;
  border: 1px solid #f5ccda;
  border-radius: 999px;
  background: #fff3f7;
  font-size: 12px;
  font-weight: 760;
}

.marketing-two-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.marketing-feature-card {
  padding: 30px;
  border-radius: 22px;
}

.marketing-feature-card small {
  display: inline-flex;
  padding: 4px 10px;
  color: #d91e58;
  border-radius: 999px;
  background: #fff0f5;
  font-size: 12px;
  font-weight: 760;
}

.marketing-feature-card h3 {
  margin: 16px 0 10px;
  color: #0c2d6b;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 780;
  line-height: 1.25;
}

.marketing-feature-card > p {
  margin: 0 0 22px;
  color: #475569;
  font-size: 14px;
  line-height: 1.75;
}

.marketing-step-list,
.marketing-metric-list {
  display: grid;
  gap: 12px;
}

.marketing-step-list div,
.marketing-metric-list div,
.marketing-mini-grid span {
  border: 1px solid #edf1f6;
  border-radius: 14px;
  background: #f8fafc;
}

.marketing-step-list div {
  display: grid;
  grid-template-columns: 44px minmax(110px, 0.34fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
}

.marketing-step-list b {
  color: #d91e58;
  font-size: 12px;
  font-weight: 800;
}

.marketing-step-list strong,
.marketing-metric-list strong,
.marketing-mini-grid b {
  color: #102a56;
  font-size: 14px;
  font-weight: 760;
}

.marketing-step-list span,
.marketing-metric-list span,
.marketing-mini-grid em {
  color: #64748b;
  font-size: 12px;
  font-style: normal;
  line-height: 1.55;
}

.marketing-metric-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 16px;
  padding: 15px 16px;
}

.marketing-metric-list b {
  color: #d91e58;
  font-size: 13px;
  font-weight: 800;
}

.marketing-metric-list span {
  grid-column: 1 / -1;
}

.marketing-compare-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.marketing-compare-panel > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 22px;
  border: 1px solid #e7edf5;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 48px rgb(15 45 82 / 5%);
}

.marketing-compare-panel span {
  grid-column: 1 / -1;
  color: #475569;
  font-size: 13px;
  font-weight: 760;
}

.marketing-compare-panel strong {
  color: #0c2d6b;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 820;
}

.marketing-compare-panel em {
  color: #8a98aa;
  font-size: 11px;
  font-style: normal;
}

.marketing-compare-panel > div:nth-child(2) strong {
  color: #d91e58;
}

.marketing-system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.marketing-system-grid article {
  min-height: 330px;
  padding: 28px;
  border-radius: 22px;
}

.marketing-system-grid b {
  display: inline-flex;
  color: #d91e58;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.marketing-system-grid h3 {
  margin: 18px 0 10px;
  color: #0c2d6b;
  font-size: 22px;
  font-weight: 780;
}

.marketing-system-grid p {
  margin: 0 0 20px;
  color: #475569;
  font-size: 14px;
  line-height: 1.75;
}

.marketing-system-grid article div,
.marketing-system-grid article div span {
  display: flex;
}

.marketing-system-grid article div {
  flex-wrap: wrap;
  gap: 8px;
}

.marketing-system-grid article div span,
.marketing-funnel span {
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  color: #b9164a;
  border: 1px solid rgb(217 30 88 / 16%);
  border-radius: 999px;
  background: #fff3f7;
  font-size: 11px;
  font-weight: 650;
}

.marketing-funnel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  padding: 22px;
  border: 1px solid #e7edf5;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 48px rgb(15 45 82 / 5%);
}

.marketing-funnel i {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, #f1b5c9, #d91e58);
}

.marketing-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.marketing-mini-grid span {
  display: grid;
  gap: 5px;
  padding: 14px;
}

.marketing-advantages-section {
  padding: clamp(58px, 5.5vw, 84px) 0 clamp(68px, 6.4vw, 102px);
}

.marketing-advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.marketing-advantage-grid article {
  padding: 30px;
  border-radius: 22px;
  text-align: center;
}

.marketing-advantage-grid b {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: #d91e58;
  border-radius: 15px;
  background: #fff0f5;
  font-size: 12px;
  font-weight: 800;
}

.marketing-advantage-grid h3 {
  margin: 18px 0 10px;
  color: #0c2d6b;
  font-size: 21px;
  font-weight: 780;
}

.marketing-advantage-grid p {
  margin: 0;
  color: #5b6879;
  font-size: 14px;
  line-height: 1.75;
}

@media (max-width: 1180px) {
  .marketing-pain-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .marketing-system-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .marketing-two-grid,
  .marketing-compare-panel,
  .marketing-advantage-grid {
    grid-template-columns: 1fr;
  }

  body[data-route="ai-agent"] .business-marketing .business-hero.marketing-hero {
    min-height: 620px;
    background:
      linear-gradient(90deg, rgb(255 255 255 / 95%) 0%, rgb(255 255 255 / 82%) 46%, rgb(255 255 255 / 32%) 100%),
      url("./assets/marketing-hero-ai.png") 58% calc(50% + 24px) / cover no-repeat !important;
  }

  .business-marketing .business-hero > .section-shell {
    min-height: 544px;
  }

  .marketing-compare-panel > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .marketing-pain-grid,
  .marketing-mini-grid {
    grid-template-columns: 1fr;
  }

  .marketing-step-list div {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .marketing-step-list span {
    grid-column: 2;
  }

  .marketing-feature-card,
  .marketing-system-grid article,
  .marketing-advantage-grid article {
    padding: 24px;
  }
}

/* AIDC page */
body[data-route="ai-industry"] .site-header,
body[data-route="ai-industry"] .site-header.scrolled,
body[data-route="ai-industry"] .site-header.menu-active {
  color: #172235;
  border-bottom: 1px solid #e7e9ec;
  background: rgb(255 255 255 / 97%);
  box-shadow: none;
}

body[data-route="ai-industry"] .site-header .header-brand-mark {
  filter: none;
}

body[data-route="ai-industry"] .main-nav {
  color: #172235;
}

body[data-route="ai-industry"] .main-nav a::after,
body[data-route="ai-industry"] .site-header.scrolled .main-nav a::after {
  background: #058761;
}

@media (max-width: 860px) {
  body[data-route="ai-industry"] .main-nav {
    color: #172235;
    background: #fff;
  }

  body[data-route="ai-industry"] .main-nav a,
  body[data-route="ai-industry"] .nav-dropdown-toggle {
    border-bottom-color: #edf1f6;
  }
}

.business-aidc {
  background: #fff;
}

body[data-route="ai-industry"] .business-aidc .business-hero.aidc-hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 95%) 0%, rgb(255 255 255 / 88%) 31%, rgb(255 255 255 / 40%) 55%, rgb(255 255 255 / 0%) 74%),
    url("./assets/aidc-hero-compute.png") center calc(50% + 28px) / cover no-repeat !important;
}

.business-aidc .business-hero > .section-shell {
  display: flex;
  min-height: 624px;
  align-items: center;
  justify-content: flex-start;
}

.business-aidc .business-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.business-aidc .business-copy h1 {
  color: #0c2d6b;
  text-shadow: 0 12px 34px rgb(255 255 255 / 78%);
}

.business-aidc .business-copy > p:last-child {
  color: #344a61 !important;
}

.business-aidc .business-tags span {
  color: #047857;
  border-color: #b7eadb;
  background: rgb(255 255 255 / 80%);
}

.aidc-hero-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 0 20px;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, #0c2d6b, #058761);
  box-shadow: 0 18px 42px rgb(5 135 97 / 18%);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
}

.aidc-engine-section,
.aidc-compute-section,
.aidc-hpc-section,
.aidc-infra-section,
.aidc-solutions-section,
.aidc-advantages-section,
.aidc-cta-section {
  background: #fff;
}

.aidc-engine-section {
  padding: clamp(62px, 6vw, 92px) 0;
}

.aidc-center-heading {
  max-width: 880px;
  margin: 0 auto 34px;
  text-align: center;
}

.aidc-center-heading h2,
.aidc-section-heading h2,
.aidc-cta-card h2 {
  margin: 10px 0 0;
  color: #0c2d6b;
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 780;
  line-height: 1.16;
}

.aidc-center-heading > p:last-child,
.aidc-section-heading > p:last-child,
.aidc-cta-card > p {
  max-width: 760px;
  margin: 14px auto 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
}

.aidc-engine-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.aidc-engine-grid article,
.aidc-card-grid article,
.aidc-infra-grid article,
.aidc-advantage-grid article,
.aidc-cta-card {
  border: 1px solid #dfeaf6;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 96%), rgb(248 252 255 / 92%)),
    #fff;
  box-shadow: 0 18px 56px rgb(15 45 82 / 6%);
}

.aidc-engine-grid article {
  position: relative;
  min-height: 340px;
  padding: 32px;
  overflow: hidden;
  border-radius: 24px;
}

.aidc-engine-grid article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a56db, #058761);
  content: "";
}

.aidc-engine-grid article span,
.aidc-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 12px;
  color: #1a56db;
  border: 1px solid #cbdcf7;
  border-radius: 999px;
  background: #f1f6ff;
  font-size: 12px;
  font-weight: 760;
}

.aidc-kicker.green {
  color: #047857;
  border-color: #b7eadb;
  background: #effcf7;
}

.aidc-engine-grid article:nth-child(2) span {
  color: #047857;
  border-color: #b7eadb;
  background: #effcf7;
}

.aidc-engine-grid h3,
.aidc-card-grid h3,
.aidc-infra-grid h3,
.aidc-advantage-grid h3 {
  margin: 18px 0 8px;
  color: #0c2d6b;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 780;
  line-height: 1.25;
}

.aidc-engine-grid small {
  display: block;
  color: #64748b;
  font-size: 13px;
  font-weight: 650;
}

.aidc-engine-grid p,
.aidc-card-grid p,
.aidc-infra-grid p,
.aidc-advantage-grid p {
  margin: 18px 0 20px;
  color: #475569;
  font-size: 14px;
  line-height: 1.75;
}

.aidc-engine-grid div,
.aidc-infra-grid article span {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.aidc-engine-grid b {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 4px 10px;
  color: #0c5dc4;
  border: 1px solid rgb(26 86 219 / 16%);
  border-radius: 999px;
  background: #f1f6ff;
  font-size: 11px;
  font-weight: 650;
}

.aidc-compute-section,
.aidc-hpc-section,
.aidc-infra-section,
.aidc-solutions-section,
.aidc-advantages-section,
.aidc-cta-section {
  padding: clamp(60px, 5.8vw, 90px) 0;
}

.aidc-compute-section,
.aidc-solutions-section {
  background:
    linear-gradient(90deg, rgb(26 86 219 / 4%) 1px, transparent 1px) 0 0 / 72px 72px,
    #fff;
}

.aidc-hpc-section,
.aidc-advantages-section {
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.aidc-section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.aidc-card-grid,
.aidc-infra-grid,
.aidc-advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.aidc-card-grid article,
.aidc-infra-grid article {
  min-height: 300px;
  padding: 28px;
  border-radius: 22px;
}

.aidc-card-grid b,
.aidc-advantage-grid b {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: #1a56db;
  border-radius: 15px;
  background: #f1f6ff;
  font-size: 12px;
  font-weight: 800;
}

.aidc-card-grid.green b,
.aidc-advantage-grid b {
  color: #047857;
  background: #effcf7;
}

.aidc-infra-grid article span {
  color: #1a56db;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.aidc-solution-table {
  display: grid;
  gap: 10px;
}

.aidc-solution-head,
.aidc-solution-table article {
  display: grid;
  grid-template-columns: 0.85fr 1.1fr 1.45fr;
  gap: 16px;
  align-items: center;
}

.aidc-solution-head {
  padding: 0 22px 8px;
  color: #8a98aa;
  font-size: 12px;
  font-weight: 760;
}

.aidc-solution-table article {
  padding: 22px;
  border: 1px solid #dfeaf6;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 42px rgb(15 45 82 / 5%);
}

.aidc-solution-table h3 {
  margin: 0;
  color: #0c2d6b;
  font-size: 16px;
  font-weight: 760;
}

.aidc-solution-table p,
.aidc-solution-table strong {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.65;
}

.aidc-solution-table strong {
  color: #334155;
  font-weight: 650;
}

.aidc-advantage-grid article {
  min-height: 270px;
  padding: 30px;
  border-radius: 22px;
  text-align: center;
}

.aidc-cta-section {
  padding-bottom: clamp(76px, 7vw, 112px);
}

.aidc-cta-card {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(38px, 5vw, 58px);
  border-radius: 28px;
  text-align: center;
}

.aidc-cta-card a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  padding: 0 24px;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, #0c2d6b, #058761);
  box-shadow: 0 18px 42px rgb(5 135 97 / 18%);
  font-size: 15px;
  font-weight: 760;
  text-decoration: none;
}

@media (max-width: 1180px) {
  .aidc-card-grid,
  .aidc-infra-grid,
  .aidc-advantage-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  body[data-route="ai-industry"] .business-aidc .business-hero.aidc-hero {
    min-height: 620px;
    background:
      linear-gradient(90deg, rgb(255 255 255 / 96%) 0%, rgb(255 255 255 / 82%) 48%, rgb(255 255 255 / 34%) 100%),
      url("./assets/aidc-hero-compute.png") 60% calc(50% + 24px) / cover no-repeat !important;
  }

  .business-aidc .business-hero > .section-shell {
    min-height: 544px;
  }

  .aidc-engine-grid {
    grid-template-columns: 1fr;
  }

  .aidc-solution-head {
    display: none;
  }

  .aidc-solution-table article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .aidc-engine-grid article,
  .aidc-card-grid article,
  .aidc-infra-grid article,
  .aidc-advantage-grid article {
    padding: 24px;
  }
}


/* AIGC page supplied hero background */
body[data-route="ai-compute"] .site-header,
body[data-route="ai-compute"] .site-header.scrolled,
body[data-route="ai-compute"] .site-header.menu-active {
  color: #172235;
  border-bottom: 1px solid #e7e9ec;
  background: rgb(255 255 255 / 97%);
  box-shadow: none;
}

body[data-route="ai-compute"] .site-header .header-brand-mark {
  filter: none;
}

body[data-route="ai-compute"] .main-nav {
  color: #172235;
}

body[data-route="ai-compute"] .main-nav a::after,
body[data-route="ai-compute"] .site-header.scrolled .main-nav a::after {
  background: #7c3aed;
}

@media (max-width: 860px) {
  body[data-route="ai-compute"] .main-nav {
    color: #172235;
    background: #fff;
  }

  body[data-route="ai-compute"] .main-nav a,
  body[data-route="ai-compute"] .nav-dropdown-toggle {
    border-bottom-color: #edf1f6;
  }
}

.business-aigc .business-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #fff !important;
  isolation: isolate;
}

.business-aigc .business-hero::before {
  position: absolute;
  top: 72px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background: url("./assets/aigc-hero-background.png") right top / cover no-repeat;
  content: "";
}

.business-aigc .business-hero::after {
  position: absolute;
  top: 72px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #fff 0%, rgb(255 255 255 / 92%) 22%, rgb(255 255 255 / 42%) 46%, rgb(255 255 255 / 0%) 72%),
    linear-gradient(180deg, rgb(255 255 255 / 0%) 78%, #fff 100%);
  content: "";
  pointer-events: none;
}

.business-aigc .business-hero > .section-shell {
  position: relative;
  z-index: 2;
  min-height: 648px;
  grid-template-columns: minmax(0, 0.62fr) minmax(420px, 1.38fr);
}

.business-aigc .business-hero-visual {
  display: none;
}

.business-aigc .business-copy {
  max-width: 590px;
  padding: 34px 0;
  transform: translateY(clamp(28px, 4vw, 58px));
}

.business-aigc .business-copy h1 {
  color: #155eef;
  text-shadow: 0 12px 34px rgb(255 255 255 / 80%);
}

.business-aigc .business-copy > p:last-child {
  color: #36475e !important;
  text-shadow: 0 1px 0 rgb(255 255 255 / 88%);
}

.business-aigc .business-tags span {
  background: rgb(255 255 255 / 76%);
  backdrop-filter: blur(10px);
}

.dreamf-community-link {
  display: inline-flex;
  min-width: clamp(228px, 18vw, 286px);
  min-height: 56px;
  margin-top: clamp(42px, 5vw, 68px);
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  color: #fff;
  border-radius: 12px;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 58%, #6d28d9 100%);
  box-shadow: 0 18px 42px rgb(116 72 212 / 24%);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.dreamf-community-link:hover {
  transform: translateY(-2px);
  color: #fff;
  background: linear-gradient(135deg, #9f7aea 0%, #8655f2 56%, #7541df 100%);
  box-shadow: 0 22px 54px rgb(116 72 212 / 30%);
}

.dreamf-community-link svg {
  flex: 0 0 auto;
  fill: currentColor;
}

@media (max-width: 980px) {
  .business-aigc .business-hero::before {
    top: 68px;
    background-position: center center;
  }

  .business-aigc .business-hero::after {
    top: 68px;
    background: linear-gradient(180deg, rgb(255 255 255 / 96%) 0%, rgb(255 255 255 / 78%) 48%, rgb(255 255 255 / 24%) 100%);
  }

  .business-aigc .business-hero > .section-shell {
    grid-template-columns: 1fr;
  }

  .business-aigc .business-copy {
    transform: translateY(20px);
  }
}

/* AIGC collaboration and asset section */
.aigc-collab-section {
  position: relative;
  overflow: hidden;
  height: auto;
  padding: 34px 46px 42px;
  color: #072747;
  background: #fff;
}

.aigc-collab-shell {
  position: relative;
  max-width: 1180px;
  height: auto;
  min-height: 0;
  margin: 0 auto;
}

.aigc-collab-heading {
  position: relative;
  z-index: 2;
  top: auto;
  left: auto;
  max-width: 680px;
}

.aigc-collab-heading h2 {
  margin: 0;
  color: #001f3d;
  font-size: clamp(28px, 2.45vw, 38px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.aigc-collab-heading p {
  margin: 12px 0 0;
  color: #54719a;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.55;
}

.aigc-process-row {
  position: relative;
  z-index: 2;
  top: auto;
  left: auto;
  display: grid;
  max-width: none;
  width: auto;
  margin-top: 30px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.aigc-process-item {
  display: grid;
  min-width: 0;
  align-items: center;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
}

.aigc-process-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: #5167ff;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgb(255 255 255 / 92%) 0 42%, transparent 44%),
    linear-gradient(145deg, #fbfbff, #f6f4ff);
  box-shadow: 0 18px 40px rgb(67 87 255 / 8%);
}

.aigc-process-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.aigc-process-item strong {
  display: block;
  color: #071f3d;
  font-size: 14px;
  font-weight: 680;
  line-height: 1.2;
}

.aigc-process-item small {
  display: block;
  margin-top: 4px;
  color: #4d668d;
  font-size: 12px;
  line-height: 1.28;
}

.aigc-system-cards {
  position: relative;
  z-index: 2;
  top: auto;
  left: auto;
  display: grid;
  max-width: none;
  width: auto;
  margin-top: 24px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.aigc-system-card {
  min-height: 148px;
  padding: 20px 18px 18px;
  border: 1px solid #dbe5f3;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 46px rgb(17 49 87 / 3%);
}

.aigc-system-card.is-highlight {
  border-color: #ffbd7a;
}

.aigc-card-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: #536dff;
  border-radius: 8px;
  background: #edf4ff;
}

.aigc-system-card.is-highlight .aigc-card-icon {
  color: #ff731d;
  background: #fff6eb;
}

.aigc-card-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.aigc-system-card h3 {
  margin: 12px 0 8px;
  color: #071f3d;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.25;
}

.aigc-system-card p {
  margin: 0;
  color: #486385;
  font-size: 13px;
  line-height: 1.5;
}

.aigc-benefit-row {
  position: relative;
  z-index: 2;
  top: auto;
  right: auto;
  left: auto;
  display: grid;
  margin-top: 28px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 38px);
}

.aigc-benefit-item {
  display: grid;
  min-height: 74px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) 78px;
  gap: 10px;
}

.aigc-benefit-item h3 {
  margin: 0;
  color: #2f27ff;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 560;
  line-height: 1.28;
}

.aigc-benefit-item p {
  margin: 7px 0 0;
  color: #526b8d;
  font-size: 12.5px;
  line-height: 1.5;
}

.aigc-mini-visual {
  position: relative;
  display: block;
  width: 78px;
  height: 62px;
  filter: drop-shadow(0 20px 22px rgb(83 90 255 / 14%));
}

.aigc-mini-visual::before,
.aigc-mini-visual::after,
.aigc-mini-visual i,
.aigc-mini-visual b,
.aigc-mini-visual em {
  position: absolute;
  display: block;
  content: "";
}

.aigc-mini-visual::before {
  right: 12px;
  bottom: 10px;
  width: 48px;
  height: 38px;
  border: 1px solid rgb(90 108 255 / 28%);
  border-radius: 14px;
  background: linear-gradient(145deg, rgb(255 255 255 / 88%), rgb(96 116 255 / 42%));
  box-shadow: inset 0 0 18px rgb(255 255 255 / 55%);
  transform: skewX(-10deg) rotate(-3deg);
}

.aigc-mini-visual::after {
  right: 22px;
  bottom: 20px;
  width: 28px;
  height: 20px;
  border-radius: 9px;
  background: linear-gradient(145deg, #f8fbff, #765cff);
  opacity: .78;
}

.aigc-mini-visual i {
  right: 36px;
  bottom: 30px;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #8f64ff;
}

.aigc-mini-visual b {
  right: 56px;
  bottom: 18px;
  width: 26px;
  height: 26px;
  border-radius: 11px;
  background: linear-gradient(145deg, #65e0ff, #5a62ff);
  opacity: .82;
  transform: rotate(-14deg);
}

.aigc-mini-visual em {
  right: 4px;
  bottom: 14px;
  width: 30px;
  height: 28px;
  border-radius: 12px;
  background: linear-gradient(145deg, #dff6ff, #744dff);
  opacity: .68;
  transform: rotate(8deg);
}

.visual-camera b {
  width: 30px;
  height: 32px;
}

.visual-camera em {
  right: 0;
  bottom: 18px;
  width: 24px;
  height: 20px;
  border-radius: 50% 16px 16px 50%;
}

.visual-orbit::before {
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.visual-orbit::after {
  right: 26px;
  bottom: 20px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  box-shadow: 0 0 0 9px rgb(94 113 255 / 14%);
}

.visual-orbit i {
  right: 36px;
  bottom: 30px;
  width: 8px;
  height: 8px;
}

.visual-orbit b {
  right: 20px;
  bottom: 38px;
  width: 12px;
  height: 46px;
  border-radius: 8px;
}

.visual-tools i {
  right: 38px;
  bottom: 20px;
  width: 8px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(#5b65ff, #ffffff);
  transform: rotate(12deg);
}

.visual-tools b {
  right: 58px;
  bottom: 20px;
  width: 8px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(#60e7ff, #ffffff);
  transform: rotate(-12deg);
}

.visual-tools em {
  right: 6px;
  bottom: 22px;
  border-radius: 50%;
}

.visual-folder::before {
  width: 56px;
  height: 40px;
  border-radius: 12px 12px 16px 16px;
}

.visual-folder::after {
  right: 30px;
  bottom: 48px;
  width: 30px;
  height: 16px;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(145deg, #ddf6ff, #8a5bff);
}

.aigc-collab-visual {
  display: none !important;
}

.business-aigc .business-detail-section {
  padding-top: clamp(34px, 3.5vw, 48px);
}

@media (max-width: 1320px) {
  .aigc-collab-section {
    height: auto;
    padding: 40px 36px 36px;
  }

  .aigc-collab-shell {
    height: auto;
    min-height: auto;
  }

  .aigc-collab-heading,
  .aigc-process-row,
  .aigc-system-cards,
  .aigc-benefit-row {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
  }

  .aigc-collab-visual {
    position: absolute;
    top: 24px;
    right: 20px;
    width: min(36vw, 430px);
    min-width: 0;
    opacity: .28;
  }

  .aigc-process-row,
  .aigc-system-cards {
    max-width: none;
    width: auto;
  }

  .aigc-process-row {
    margin-top: 42px;
  }

  .aigc-system-cards {
    margin-top: 30px;
  }

  .aigc-benefit-row {
    margin-top: 42px;
  }
}

@media (max-width: 1080px) {
  .aigc-collab-section {
    padding-inline: 28px;
  }

  .aigc-process-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .aigc-system-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .aigc-benefit-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .aigc-collab-section {
    padding: 42px 20px 34px;
  }

  .aigc-collab-visual {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    width: min(100%, 440px);
    min-width: 0;
    margin: 28px auto 0;
    opacity: .92;
  }

  .aigc-process-row,
  .aigc-system-cards,
  .aigc-benefit-row {
    grid-template-columns: 1fr;
  }

  .aigc-process-row {
    margin-top: 34px;
  }

  .aigc-system-card {
    min-height: 0;
  }

  .aigc-benefit-item {
    grid-template-columns: minmax(0, 1fr) 106px;
  }

  .aigc-mini-visual {
    width: 106px;
    transform: scale(.88);
    transform-origin: right center;
  }
}

.business-detail-section {
  background:
    linear-gradient(90deg, rgb(21 94 239 / 4%) 1px, transparent 1px) 0 0 / 70px 70px,
    #fff !important;
}

.business-section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.business-section-heading h2 {
  margin: 10px 0 0;
  color: #0b1f3a;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 720;
  line-height: 1.2;
}

.business-detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.business-detail-grid article {
  min-height: 280px;
  border-color: #dfeaf6;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 94%), rgb(248 251 255 / 88%)),
    #fff;
  box-shadow: 0 18px 50px rgb(18 49 84 / 7%);
}

.business-detail-grid article h2 {
  color: #0b1f3a;
  font-size: 22px;
}

.business-detail-grid article p {
  color: #5f6f84;
}

@media (max-width: 980px) {
  .business-page .business-hero > .section-shell {
    grid-template-columns: 1fr;
  }

  .business-hero-visual {
    max-width: 680px;
  }

  .business-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .business-page .business-hero {
    min-height: auto;
  }

  .business-copy h1 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .business-tags {
    margin-top: 22px;
  }
}




/* Homepage company intro split panel */
.home-company-section {
  padding: 72px 36px 26px;
  background: #f9fbff !important;
}

.home-company-panel {
  display: grid;
  max-width: 1800px;
  margin: 0 auto;
  align-items: center;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(56px, 7vw, 118px);
}

.home-company-copy {
  max-width: 520px;
  padding-left: clamp(18px, 2.2vw, 42px);
}

.home-company-eyebrow {
  margin: 0 0 10px;
  color: #2558d8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.4px;
}

.home-company-copy h2 {
  margin: 0;
  color: #0f2447;
  font-size: clamp(38px, 3.8vw, 58px);
  font-weight: 820;
  line-height: 1.05;
  letter-spacing: 0;
}

.home-company-copy h3 {
  margin: 14px 0 0;
  color: #0f2447;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 720;
  line-height: 1.2;
}

.home-company-line {
  display: block;
  width: 48px;
  height: 3px;
  margin: 24px 0 30px;
  background: #b78636;
}

.home-company-copy p:not(.home-company-eyebrow) {
  margin: 0;
  color: #4d5b72;
  font-size: clamp(14px, 0.98vw, 17px);
  font-weight: 560;
  line-height: 2.05;
}

.home-company-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid #dce7f3;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 28px 72px rgb(15 36 71 / 10%);
}

.home-company-visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgb(255 255 255 / 72%);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.home-company-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 2.25 / 1;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 980px) {
  .home-company-section {
    padding: 56px 28px 24px;
  }

  .home-company-panel {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-company-copy {
    max-width: 760px;
    padding-left: 0;
  }

  .home-company-visual img {
    aspect-ratio: 1.9 / 1;
  }
}

@media (max-width: 560px) {
  .home-company-section {
    padding: 48px 18px 20px;
  }

  .home-company-copy h2 {
    font-size: 44px;
  }

  .home-company-copy h3 {
    font-size: 21px;
  }

  .home-company-line {
    margin: 18px 0 20px;
  }

  .home-company-copy p:not(.home-company-eyebrow) {
    font-size: 14px;
    line-height: 1.9;
  }
}

/* Homepage value architecture panel */
.home-values-section {
  padding: 58px 36px 72px;
  background: #f9fbff !important;
}

.value-panel {
  max-width: 1800px;
  margin: 0 auto;
  padding: 36px 48px 42px;
  overflow: hidden;
  border: 1px solid #e1e9f4;
  border-radius: 20px;
  background:
    radial-gradient(circle at 82% 18%, rgb(37 88 216 / 8%), transparent 34%),
    linear-gradient(135deg, #fff 0%, #fbfdff 54%, #f4f8ff 100%);
  box-shadow: 0 18px 56px rgb(15 36 71 / 7%);
}

.value-panel-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.value-panel-heading h2 {
  margin: 0;
  color: #0f2447;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0;
}

.value-panel-heading span {
  width: 50px;
  height: 3px;
  background: #b78636;
}

.summary-icon,
.flow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

.flow-icon svg {
  display: block;
}

.value-flow {
  position: relative;
  display: grid;
  padding-top: 6px;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

.value-flow::before {
  position: absolute;
  top: 39px;
  right: 12.5%;
  left: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2f65dc 12%, #2f65dc 88%, transparent);
  content: "";
}

.value-flow-item {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.value-flow-item:not(:last-child)::after {
  position: absolute;
  top: 31px;
  right: -24px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #2f65dc;
  content: "";
}

.flow-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 22px;
  border: 1px solid #d5e0ef;
  border-radius: 50%;
  background: #f8fbff;
  box-shadow: 0 0 0 10px rgb(37 88 216 / 4%);
}

.icon-tech svg {
  fill: #2558d8;
}

.icon-customer svg {
  fill: #924cd0;
}

.icon-cooper svg {
  fill: #20b8c4;
}

.icon-safe svg {
  fill: #30b370;
}

.value-flow-item h3 {
  margin: 0 0 12px;
  color: #0f2447;
  font-size: 20px;
  font-weight: 800;
}

.value-flow-item p {
  max-width: 220px;
  margin: 0;
  color: #56647a;
  font-size: 14px;
  font-weight: 560;
  line-height: 1.7;
}

@media (max-width: 1200px) {
  .value-panel {
    padding: 34px 32px 40px;
  }

  .value-flow {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 42px;
  }

  .value-flow::before,
  .value-flow-item::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .home-values-section {
    padding: 40px 18px 52px;
  }

  .value-panel {
    padding: 28px 20px 34px;
    border-radius: 18px;
  }

  .value-panel-heading {
    margin-bottom: 28px;
  }

  .value-panel-heading h2 {
    font-size: 22px;
  }

  .value-flow {
    grid-template-columns: 1fr;
  }

  .flow-icon {
    margin-bottom: 18px;
  }
}

/* News reference layout */
body[data-route="news"] .site-header,
body[data-route="news"] .site-header.scrolled,
body[data-route="news"] .site-header.menu-active {
  color: #1a2433;
  border-color: rgb(16 24 40 / 8%);
  background: rgb(255 255 255 / 97%);
  box-shadow: 0 8px 28px rgb(22 40 68 / 7%);
  backdrop-filter: blur(18px);
}

body[data-route="news"] .site-header .header-brand-mark {
  filter: none;
}

body[data-route="news"] .main-nav a::after,
body[data-route="news"] .site-header.scrolled .main-nav a::after {
  background: #b78636;
}

.news-page {
  color: #1d2939;
  background: #fff;
}

.news-reference-hero {
  position: relative;
  min-height: 270px;
  padding-top: 76px;
  overflow: hidden;
  border-bottom: 1px solid #e8edf3;
  background: linear-gradient(180deg, #f8fbfe 0%, #edf3f8 100%);
}

.news-reference-hero::before {
  position: absolute;
  top: 76px;
  right: 0;
  bottom: 0;
  left: 0;
  background:
    linear-gradient(90deg, rgb(248 250 252 / 98%) 0%, rgb(248 250 252 / 90%) 31%, rgb(248 250 252 / 46%) 52%, rgb(248 250 252 / 6%) 74%),
    url("./assets/news-hero-building.png") center calc(50% + 26px) / cover no-repeat;
  content: "";
}

.news-hero-shell {
  position: relative;
  display: grid;
  min-height: 194px;
  align-items: center;
  grid-template-columns: 1fr;
}

.news-hero-copy {
  position: relative;
  z-index: 2;
}

.news-hero-copy h1 {
  margin: 0;
  color: #1d2939;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 780;
  letter-spacing: 0;
  line-height: 1.15;
}

.news-hero-copy span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 14px 0 13px;
  background: #b78636;
}

.news-hero-copy p {
  margin: 0;
  color: #536274;
  font-size: 15px;
  line-height: 1.8;
}

.news-photo {
  position: relative;
  overflow: hidden;
  min-height: 110px;
  border: 1px solid #dce5ee;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 18%), rgb(255 255 255 / 0%) 42%),
    linear-gradient(145deg, #d7e3ee 0%, #f4f7fa 44%, #aebfd0 100%);
}

.news-photo::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 0%) 0 34%, rgb(255 255 255 / 28%) 34% 35%, rgb(255 255 255 / 0%) 35% 100%),
    linear-gradient(180deg, rgb(27 45 70 / 0%) 0 55%, rgb(27 45 70 / 15%) 55% 100%);
  content: "";
}

.news-photo::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgb(29 41 57 / 44%);
  content: attr(data-label);
  font-size: clamp(24px, 4vw, 52px);
  font-weight: 760;
  letter-spacing: 0;
}

.news-hero-photo {
  display: none;
}

.news-hero-photo::before {
  background:
    repeating-linear-gradient(90deg, rgb(255 255 255 / 36%) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(180deg, rgb(255 255 255 / 28%) 0 1px, transparent 1px 28px),
    linear-gradient(180deg, rgb(255 255 255 / 0%) 0%, rgb(28 44 65 / 16%) 100%);
}

.news-hero-photo::after {
  color: rgb(29 41 57 / 30%);
  font-size: clamp(40px, 7vw, 86px);
}

.news-reference-section {
  padding: 0 0 58px;
  background: #fff;
}

.news-tabs {
  display: flex;
  height: 48px;
  align-items: flex-end;
  gap: 48px;
  border-bottom: 1px solid #e4e9ef;
}

.news-tabs button {
  position: relative;
  height: 48px;
  padding: 0 0 14px;
  color: #536274;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
}

.news-tabs button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: transparent;
  content: "";
}

.news-tabs button.active {
  color: #1d2939;
}

.news-tabs button.active::after {
  background: #b78636;
}

.news-feature-layout {
  display: grid;
  margin-top: 22px;
  grid-template-columns: minmax(0, 1.48fr) minmax(320px, 0.92fr);
  gap: 28px;
}

.news-feature-card {
  display: grid;
  min-height: 246px;
  overflow: hidden;
  border: 1px solid #e2e8ef;
  border-radius: 3px;
  background: #fff;
  grid-template-columns: 58% 42%;
}

.news-feature-photo {
  min-height: 246px;
  border: 0;
  border-right: 1px solid #e2e8ef;
  background: url("./assets/news-feature-building.png") center center / cover no-repeat;
}

.news-feature-photo::before,
.news-feature-photo::after {
  content: none;
}

.news-feature-copy {
  display: flex;
  min-width: 0;
  padding: 34px 34px 30px;
  flex-direction: column;
}

.news-feature-copy h2 {
  margin: 0;
  color: #1f2937;
  font-size: 22px;
  font-weight: 780;
  line-height: 1.35;
}

.news-feature-copy time {
  margin-top: 10px;
  color: #667085;
  font-size: 13px;
}

.news-feature-copy p {
  margin: 15px 0 0;
  color: #667085;
  font-size: 13px;
  line-height: 1.9;
}

.news-feature-copy a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #9a6a22;
  font-size: 13px;
  font-weight: 720;
}

.news-feature-copy a span,
.news-more-link span {
  transition: transform 0.18s ease;
}

.news-feature-copy a:hover span,
.news-more-link:hover span {
  transform: translateX(3px);
}

.news-side-list {
  display: flex;
  min-width: 0;
  border-top: 1px solid #e4e9ef;
  flex-direction: column;
}

.news-side-list a:not(.news-more-link) {
  display: grid;
  min-height: 44px;
  align-items: center;
  gap: 18px;
  color: #344054;
  border-bottom: 1px solid #e4e9ef;
  grid-template-columns: minmax(0, 1fr) auto;
  transition: color 0.18s ease;
}

.news-side-list a:not(.news-more-link):hover {
  color: #9a6a22;
}

.news-side-list span {
  overflow: hidden;
  font-size: 13px;
  font-weight: 620;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-side-list time {
  color: #7a8696;
  font-size: 12px;
  white-space: nowrap;
}

.news-more-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: #9a6a22;
  font-size: 13px;
  font-weight: 720;
}

.news-card-grid {
  display: grid;
  margin-top: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.news-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e2e8ef;
  border-radius: 3px;
  background: #fff;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.news-card:hover {
  border-color: #cfd8e3;
  box-shadow: 0 16px 36px rgb(30 51 78 / 10%);
  transform: translateY(-2px);
}

.news-card .news-photo {
  min-height: 128px;
  border: 0;
  border-bottom: 1px solid #e2e8ef;
}

.news-card .news-photo::after {
  font-size: 30px;
}

.news-card .news-aidc-node-photo {
  background: url("./assets/news-aidc-node.png") center center / cover no-repeat;
}

.news-card .news-product-roadmap-photo {
  background: url("./assets/news-product-roadmap.png") center center / cover no-repeat;
}

.news-card .news-ai-platform-photo {
  background: url("./assets/news-ai-platform.png") center center / cover no-repeat;
}

.news-card .news-aigc-workbench-photo {
  background: url("./assets/news-aigc-workbench.png") center center / cover no-repeat;
}

.news-card .news-aidc-node-photo::before,
.news-card .news-aidc-node-photo::after,
.news-card .news-product-roadmap-photo::before,
.news-card .news-product-roadmap-photo::after,
.news-card .news-ai-platform-photo::before,
.news-card .news-ai-platform-photo::after,
.news-card .news-aigc-workbench-photo::before,
.news-card .news-aigc-workbench-photo::after {
  content: none;
}

.news-card div:last-child {
  padding: 16px 18px 17px;
}

.news-card span {
  display: block;
  margin-bottom: 7px;
  color: #9a6a22;
  font-size: 12px;
  font-weight: 720;
}

.news-card h3 {
  margin: 0 0 8px;
  overflow: hidden;
  color: #1f2937;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.42;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-card time {
  color: #667085;
  font-size: 12px;
}

@media (max-width: 980px) {
  .news-hero-shell {
    grid-template-columns: 1fr;
  }

  .news-hero-photo {
    left: 38%;
  }

  .news-feature-layout,
  .news-feature-card {
    grid-template-columns: 1fr;
  }

  .news-feature-photo {
    border-right: 0;
    border-bottom: 1px solid #e2e8ef;
  }

  .news-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .news-reference-hero {
    min-height: 250px;
  }

  .news-hero-shell {
    min-height: 174px;
  }

  .news-hero-photo {
    right: -20px;
    left: 34%;
    opacity: 0.72;
  }

  .news-tabs {
    height: auto;
    gap: 26px;
    overflow-x: auto;
    padding-top: 2px;
  }

  .news-tabs button {
    height: 46px;
    white-space: nowrap;
  }

  .news-feature-copy {
    padding: 24px 22px 24px;
  }

  .news-side-list a:not(.news-more-link) {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 12px 0;
  }

  .news-side-list span {
    white-space: normal;
  }

  .news-card-grid {
    grid-template-columns: 1fr;
  }
}

/* Join us page */
body[data-route="contact"] .site-header,
body[data-route="contact"] .site-header.scrolled,
body[data-route="contact"] .site-header.menu-active {
  color: #1a2433;
  border-color: rgb(16 24 40 / 8%);
  background: rgb(255 255 255 / 97%);
  box-shadow: 0 8px 28px rgb(22 40 68 / 7%);
  backdrop-filter: blur(18px);
}

body[data-route="contact"] .site-header .header-brand-mark {
  filter: none;
}

body[data-route="contact"] .main-nav a::after,
body[data-route="contact"] .site-header.scrolled .main-nav a::after {
  background: #b78636;
}

.join-page {
  color: #1d2939;
  background: #fff;
}

.join-hero {
  min-height: 270px;
  padding-top: 76px;
  overflow: hidden;
  border-bottom: 1px solid #e3e8ef;
  background:
    linear-gradient(90deg, rgb(248 250 252 / 98%) 0%, rgb(248 250 252 / 92%) 33%, rgb(248 250 252 / 50%) 58%, rgb(248 250 252 / 10%) 100%),
    linear-gradient(135deg, #f8fbfe 0%, #dce6ef 52%, #b6c5d4 100%);
}

.join-hero-shell {
  position: relative;
  display: grid;
  min-height: 194px;
  align-items: center;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 40px;
}

.join-hero-copy {
  position: relative;
  z-index: 2;
}

.join-hero-copy h1 {
  margin: 0;
  color: #1d2939;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1.08;
}

.join-hero-copy p {
  margin: 16px 0 0;
  color: #536274;
  font-size: 18px;
  font-weight: 560;
}

.join-hero-visual {
  position: absolute;
  top: 0;
  right: calc((100vw - min(1240px, calc(100% - 64px))) / -2);
  bottom: 0;
  left: 34%;
  background:
    linear-gradient(90deg, rgb(248 250 252 / 78%) 0%, rgb(248 250 252 / 18%) 28%, rgb(248 250 252 / 0%) 58%),
    url("./assets/join-hero-office.png") center center / cover no-repeat;
}

.join-section {
  padding: 0 0 70px;
  background: #fff;
}

.join-tabs {
  display: flex;
  height: 56px;
  align-items: flex-end;
  gap: 72px;
  border-bottom: 1px solid #e4e9ef;
}

.join-tabs button {
  position: relative;
  height: 56px;
  padding: 0 0 16px;
  color: #536274;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  font-weight: 720;
}

.join-tabs button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: transparent;
  content: "";
}

.join-tabs button.active {
  color: #9a6a22;
}

.join-tabs button.active::after {
  background: #b78636;
}

.join-content-grid {
  display: block;
  padding: 34px 0 24px;
}

.join-values,
.join-jobs {
  min-width: 0;
}

.join-values {
  padding-right: 0;
  border-right: 0;
}

.join-values h2,
.join-jobs h2,
.join-contact-card h2 {
  margin: 0;
  color: #1f2937;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0;
}

.join-value-grid {
  display: grid;
  margin-top: 28px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #e3e8ef;
  border-left: 1px solid #e3e8ef;
}

.join-value-grid article {
  min-height: 126px;
  padding: 22px 18px 20px;
  text-align: center;
  border-right: 1px solid #e3e8ef;
  border-bottom: 1px solid #e3e8ef;
}

.join-icon {
  display: block;
  width: 38px;
  height: 38px;
  margin: 0 auto 12px;
  fill: none;
  stroke: #253142;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.join-icon .accent {
  stroke: #b78636;
}

.join-value-grid span {
  display: block;
  margin-bottom: 7px;
  color: #1f2937;
  font-size: 17px;
  font-weight: 800;
}

.join-value-grid p {
  max-width: 220px;
  margin: 0 auto;
  color: #667085;
  font-size: 12px;
  line-height: 1.7;
}

.join-jobs-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.join-filters {
  display: flex;
  gap: 14px;
}

.join-filters button {
  min-width: 112px;
  height: 38px;
  padding: 0 28px 0 14px;
  color: #667085;
  border: 1px solid #d5dce5;
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  text-align: left;
}

.join-job-table {
  margin-top: 20px;
  border-top: 1px solid #dfe5ec;
}

.join-job-row {
  display: grid;
  min-height: 48px;
  align-items: center;
  gap: 14px;
  padding: 0 14px;
  color: #344054;
  border-bottom: 1px solid #e2e8ef;
  grid-template-columns: 1.35fr 1fr 0.8fr 0.8fr 24px;
  font-size: 13px;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.join-job-row:not(.join-job-header):hover {
  color: #9a6a22;
  background: #fbf8f2;
}

.join-job-header {
  min-height: 42px;
  color: #667085;
  background: #f7f9fc;
  font-size: 12px;
  font-weight: 760;
}

.join-job-row b {
  color: #98a2b3;
  font-size: 22px;
  font-weight: 400;
  text-align: right;
}

.join-bottom {
  display: grid;
  align-items: stretch;
  margin-top: 6px;
  padding: 32px 0;
  border-radius: 3px;
  background: linear-gradient(180deg, #f8fafc 0%, #f3f6fa 100%);
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: 42px;
}

.join-contact-card {
  display: grid;
  min-width: 0;
  padding: 0 34px;
  border-right: 1px solid #dce3eb;
  grid-template-columns: 0.78fr 1fr;
  gap: 28px;
}

.join-contact-card h2 {
  margin-bottom: 18px;
}

.join-contact-card p {
  margin: 0 0 11px;
  color: #344054;
  font-size: 14px;
  line-height: 1.65;
}

.join-contact-card span {
  color: #667085;
}

.join-office-photo {
  min-height: 160px;
  overflow: hidden;
  border: 1px solid #dbe3ec;
  border-radius: 4px;
  background: url("./assets/join-office-building.png") center center / cover no-repeat;
}

.join-form.contact-form {
  display: grid;
  gap: 16px 24px;
  padding: 0 34px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  grid-template-columns: 1fr 1fr;
}

.join-form label {
  display: grid;
  align-items: start;
  grid-template-columns: 72px 1fr;
  gap: 12px;
}

.join-form label > span {
  padding-top: 11px;
  color: #344054;
  font-size: 13px;
  font-weight: 760;
}

.join-form input,
.join-form select,
.join-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 13px;
  color: #1f2937;
  border: 1px solid #d7dee7;
  border-radius: 3px;
  outline: 0;
  background: #fff;
  font-size: 13px;
}

.join-form textarea {
  resize: vertical;
}

.join-form button {
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: 3px;
  color: #fff;
  background: #a67633;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  grid-column: 2;
}

.join-form button:hover {
  background: #8e6229;
}

@media (max-width: 1080px) {
  .join-content-grid,
  .join-bottom {
    grid-template-columns: 1fr;
  }

  .join-values,
  .join-contact-card {
    padding-right: 0;
    border-right: 0;
  }

  .join-form.contact-form {
    padding: 0 34px;
  }
}

@media (max-width: 760px) {
  .join-hero-shell {
    min-height: 176px;
    grid-template-columns: 1fr;
  }

  .join-hero-visual {
    left: 28%;
    opacity: 0.76;
  }

  .join-tabs {
    gap: 36px;
  }

  .join-value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .join-jobs-head,
  .join-filters {
    align-items: stretch;
    flex-direction: column;
  }

  .join-job-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 14px;
  }

  .join-job-header {
    display: none;
  }

  .join-contact-card,
  .join-form.contact-form {
    grid-template-columns: 1fr;
    padding: 0 22px;
  }

  .join-form label {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .join-form label > span {
    padding-top: 0;
  }

  .join-form button {
    grid-column: 1;
  }
}

@media (max-width: 520px) {
  .join-value-grid {
    grid-template-columns: 1fr;
  }
}

