:root {
  --ink: #10253f;
  --ink-2: #334863;
  --muted: #6d7f95;
  --bg: #f5f8fb;
  --paper: #ffffff;
  --line: #dfe8f2;
  --blue: #2568b8;
  --blue-2: #5f95cf;
  --cyan: #75b9d2;
  --green: #6f8879;
  --orange: #d79a63;
  --red: #d84b4b;
  --shadow: 0 18px 45px rgba(37, 104, 184, 0.11);
  --deep: #081a31;
  --electric: #35d2ff;
  --mint: #7df3c6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.64;
  overflow-x: hidden;
}

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

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

.nav {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 13px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(213, 222, 235, 0.88);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 850;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
}

.brand-text {
  display: grid;
  gap: 5px;
  line-height: 1.08;
}

.brand-name {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.brand-sub {
  display: grid;
  gap: 1px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.brand-sub span {
  color: var(--ink-2);
  text-transform: none;
}

.brand-sub small {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.35px;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 7px;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink-2);
  font-size: 14px;
}

.nav-links a {
  white-space: nowrap;
}

.nav-cta {
  padding: 8px 14px;
  color: #fff;
  background: var(--blue);
  border-radius: 6px;
  box-shadow: 0 10px 22px rgba(37, 104, 184, 0.18);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #f7fbff 0%, #ffffff 45%, #edf6fc 100%);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -20% -46% 42%;
  height: 420px;
  background: radial-gradient(circle, rgba(37, 104, 184, 0.13), rgba(37, 104, 184, 0));
  pointer-events: none;
}

.inner,
.hero-inner {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.74fr);
  gap: 42px;
  align-items: center;
  min-height: 690px;
  padding: 54px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

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

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-title {
  width: min(760px, 100%);
}

.hero-title span {
  display: block;
  width: max-content;
  max-width: 100%;
  text-align: left;
  text-align-last: auto;
  white-space: nowrap;
}

.hero-title .position-line {
  font-size: 0.76em;
  line-height: 1.18;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.14;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  line-height: 1.28;
  text-wrap: balance;
}

.no-wrap {
  white-space: nowrap;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 14px;
  color: var(--ink-2);
  font-size: 18px;
}

.hero-copy-secondary {
  margin-bottom: 28px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  white-space: nowrap;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #4d91d0);
  box-shadow: 0 12px 26px rgba(37, 104, 184, 0.22);
}

.button-dark {
  color: #fff;
  background: var(--ink);
}

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

.hero-card {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(151, 184, 219, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(37, 104, 184, 0.12);
}

.hero-card img {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  object-fit: cover;
  background: #f8fbff;
  border: 1px solid rgba(151, 184, 219, 0.58);
}

.hero-card .metric-grid {
  margin-top: 16px;
}

.system-preview {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(151, 184, 219, 0.62);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(247, 251, 255, 0.96), rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at 88% 10%, rgba(117, 185, 210, 0.26), transparent 34%);
}

.preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.preview-top strong {
  color: var(--ink);
  font-size: 13px;
}

.preview-top span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.preview-lines {
  display: grid;
  gap: 8px;
}

.preview-lines a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 10px;
  border: 1px solid rgba(223, 232, 242, 0.92);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.86);
}

.preview-lines span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.preview-lines em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  white-space: nowrap;
}

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

.metric {
  padding: 12px;
  background: #f7fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.metric strong {
  display: block;
  color: var(--blue);
  font-size: 22px;
  line-height: 1.1;
}

.metric span {
  color: var(--muted);
  font-size: 12px;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust span {
  padding: 8px 11px;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
}

section {
  padding: 72px clamp(18px, 5vw, 72px);
}

.page-head {
  padding: 48px clamp(18px, 5vw, 72px) 34px;
  background: linear-gradient(135deg, #f2f7ff, #ffffff);
  border-bottom: 1px solid var(--line);
}

.page-head h1 {
  margin-bottom: 14px;
}

.page-head p {
  max-width: 1040px;
  margin-bottom: 0;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.68;
  text-align: justify;
  text-align-last: left;
}

.page-head .about-intro {
  max-width: 1120px;
}

.page-head .contact-intro {
  width: min(1120px, 100%);
  max-width: none;
  text-align: justify;
  text-align-last: left;
  white-space: nowrap;
}

.company-position {
  max-width: 1120px;
  margin-top: 14px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 850;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.62fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 30px;
}

.lead,
.section-head p {
  margin-bottom: 0;
  color: var(--ink-2);
  font-size: 16px;
}

.grid-5,
.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 16px;
}

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

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

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

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

.leadership-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
}

.leadership-card {
  justify-self: end;
  width: min(460px, 100%);
  padding: 26px 28px;
}

.leadership-card ul {
  display: grid;
  gap: 12px;
  line-height: 1.78;
}

.card,
.tile,
.panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(24, 42, 69, 0.05);
}

.card,
.panel {
  padding: 22px;
}

.tile {
  padding: 20px;
}

.product {
  display: flex;
  flex-direction: column;
  min-height: 310px;
}

.product ul,
.panel ul,
.price-card ul {
  padding-left: 18px;
  margin: 14px 0 0;
  color: var(--ink-2);
}

.product p,
.tile p,
.panel p,
.price-card p {
  color: var(--ink-2);
}

.tag {
  display: inline-flex;
  width: max-content;
  margin-bottom: 13px;
  padding: 4px 8px;
  color: var(--blue);
  background: #edf5ff;
  border: 1px solid #d8e8ff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 850;
}

.tag.red {
  color: var(--red);
  background: #fff1f1;
  border-color: #ffd9d9;
}

.tag.green {
  color: var(--green);
  background: #eefaf5;
  border-color: #d5f0e4;
}

.tag.gold {
  color: #a45c00;
  background: #fff5e6;
  border-color: #ffe2b8;
}

.tag.cyan {
  color: #0b7f98;
  background: #ecfbff;
  border-color: #cff3fb;
}

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

.dark {
  color: #fff;
  background: linear-gradient(135deg, #142033, #1f5fb7);
}

.dark .section-head p,
.dark .tile p,
.dark .panel p {
  color: rgba(255, 255, 255, 0.82);
}

.dark .tile,
.dark .panel,
.dark .card {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.solution {
  border-left: 3px solid var(--blue);
}

.entry-card,
.compact-product {
  color: inherit;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.entry-card:hover,
.compact-product:hover,
.contact-method:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 104, 184, 0.35);
  box-shadow: 0 16px 34px rgba(37, 104, 184, 0.1);
}

.entry-card strong {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue);
  font-size: 14px;
}

.compact-product {
  min-height: 210px;
}

.compact-product p {
  margin-bottom: 16px;
}

.compact-product strong {
  display: inline-flex;
  margin-top: auto;
  color: var(--blue);
  font-size: 13px;
}

.product-radar {
  display: grid;
  grid-template-columns: 1.18fr repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.product-radar .compact-product:first-child {
  min-height: 260px;
  border-color: rgba(37, 104, 184, 0.32);
  background:
    linear-gradient(135deg, #ffffff, #f4f9ff),
    radial-gradient(circle at 100% 0%, rgba(37, 104, 184, 0.12), transparent 38%);
  box-shadow: 0 18px 42px rgba(37, 104, 184, 0.11);
}

.product-radar .compact-product:first-child h3 {
  font-size: 26px;
}

.product-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.product-switcher a {
  padding: 8px 12px;
  color: var(--blue);
  border: 1px solid #cfe1f7;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 850;
}

.product-overview {
  padding-top: 48px;
  padding-bottom: 48px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.product-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.overview-points {
  display: grid;
  gap: 12px;
}

.overview-points div {
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.overview-points strong {
  color: var(--ink);
  font-size: 15px;
}

.overview-points span {
  color: var(--ink-2);
  font-size: 14px;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.quick-links {
  display: grid;
  gap: 12px;
}

.route-visual-section {
  align-items: center;
}

.visual-card {
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(151, 184, 219, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(37, 104, 184, 0.12);
}

.visual-card img {
  width: 100%;
  min-height: 260px;
  max-height: 380px;
  object-fit: cover;
  border: 1px solid rgba(151, 184, 219, 0.58);
  border-radius: 8px;
  background: #f8fbff;
}

.equipment {
  align-items: stretch;
}

.equipment-card {
  overflow: hidden;
  padding: 0;
}

.equipment-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: #f4f6f9;
}

.equipment-card div {
  padding: 18px;
}

.equipment-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 12%, rgba(53,210,255,0.12), transparent 26%),
    linear-gradient(135deg, #ffffff, #f4f9ff);
  border-top: 1px solid rgba(151,184,219,0.46);
  border-bottom: 1px solid rgba(151,184,219,0.46);
}

.equipment-gallery,
.business-visual-grid {
  display: grid;
  gap: 16px;
}

.equipment-gallery {
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
}

.equipment-feature,
.business-visual-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 330px;
  overflow: hidden;
  padding: 22px;
  color: #fff;
  border: 1px solid rgba(151,184,219,0.72);
  border-radius: 14px;
  background: #0d2748;
  box-shadow: 0 24px 64px rgba(37,104,184,0.14);
}

.equipment-feature::after,
.business-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,26,49,0.04), rgba(8,26,49,0.22) 42%, rgba(8,26,49,0.82)),
    radial-gradient(circle at 18% 18%, rgba(53,210,255,0.24), transparent 32%);
  z-index: 1;
}

.equipment-feature img,
.business-visual-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .36s ease;
}

.equipment-feature:hover img,
.business-visual-card:hover img {
  transform: scale(1.07);
}

.equipment-feature span,
.equipment-feature small,
.business-visual-card span,
.business-visual-card strong,
.business-visual-card p {
  position: relative;
  z-index: 2;
}

.equipment-feature span {
  font-size: 24px;
  font-weight: 900;
}

.equipment-feature small {
  margin-top: 4px;
  color: rgba(255,255,255,0.74);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.business-visual-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.business-visual-card {
  min-height: 250px;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 18%, rgba(53,210,255,0.16), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(242,248,255,0.94));
}

.business-visual-card::after {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.76)),
    radial-gradient(circle at 18% 18%, rgba(53,210,255,0.18), transparent 32%);
}

.business-visual-card.visual-equipment {
  color: #fff;
}

.business-visual-card.visual-equipment::after {
  background: linear-gradient(180deg, rgba(8,26,49,0.02), rgba(8,26,49,0.18) 36%, rgba(8,26,49,0.84));
}

.business-visual-card span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.business-visual-card.visual-equipment span {
  color: rgba(255,255,255,0.9);
}

.business-visual-card strong {
  margin-top: 4px;
  font-size: 21px;
  line-height: 1.25;
}

.business-visual-card p {
  margin: 10px 0 0;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.7;
}

.business-visual-card.visual-equipment p {
  color: rgba(255,255,255,0.82);
}

.visual-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
}

.visual-split.reverse {
  grid-template-columns: minmax(420px, 1.08fr) minmax(0, 0.92fr);
}

.visual-split.reverse .visual-copy {
  order: 2;
}

.visual-split.reverse .visual-panel {
  order: 1;
}

.visual-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.1;
}

.visual-panel,
.image-strip-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(151,184,219,0.68);
  border-radius: 18px;
  background: #eef7ff;
  box-shadow: 0 28px 72px rgba(37,104,184,0.14);
}

.visual-panel {
  min-height: 420px;
}

.visual-panel img,
.image-strip-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-panel::after,
.image-strip-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,26,49,0.02), rgba(8,26,49,0.15) 38%, rgba(8,26,49,0.72)),
    radial-gradient(circle at 18% 16%, rgba(53,210,255,0.22), transparent 30%);
}

.visual-panel.light::after {
  background:
    linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.2) 44%, rgba(240,248,255,0.86)),
    radial-gradient(circle at 78% 18%, rgba(53,210,255,0.16), transparent 28%);
}

.visual-panel-caption,
.image-strip-card span,
.image-strip-card small {
  position: relative;
  z-index: 2;
}

.visual-panel-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: #fff;
}

.visual-panel.light .visual-panel-caption {
  color: var(--ink);
}

.visual-panel-caption strong,
.image-strip-card span {
  display: block;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.2;
}

.visual-panel-caption small,
.image-strip-card small {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.76);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.visual-panel.light .visual-panel-caption small {
  color: var(--muted);
}

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

.image-strip-card {
  min-height: 260px;
  display: grid;
  align-content: end;
  padding: 22px;
  color: #fff;
}

.visual-stack {
  display: grid;
  gap: 16px;
}

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

.visual-mini-grid a,
.visual-mini-grid article {
  padding: 18px;
  border: 1px solid rgba(151,184,219,0.6);
  border-radius: 12px;
  background: rgba(255,255,255,0.82);
}

.visual-mini-grid strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.visual-mini-grid span,
.visual-mini-grid p {
  color: var(--muted);
  font-size: 13px;
}

.hero-visual-airport {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(151,184,219,0.72);
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #eef8ff);
  box-shadow: 0 28px 82px rgba(37,104,184,0.16);
}

.hero-visual-airport img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
}

.hero-visual-airport::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.16) 45%, rgba(244,250,255,0.86)),
    radial-gradient(circle at 76% 18%, rgba(53,210,255,0.12), transparent 28%);
}

.hero-visual-caption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
}

.hero-visual-caption strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.hero-visual-caption small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.hero-visual-caption p {
  max-width: 520px;
  margin: 10px 0 0;
  color: var(--ink-2);
  font-size: 14px;
}

.article-visual-hero {
  margin-bottom: 0;
  padding-bottom: 0;
}

.article-visual-hero .visual-panel {
  min-height: 380px;
}

.price-card {
  position: relative;
}

.price {
  margin: 12px 0 8px;
  color: var(--blue);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
}

.price small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.content-list {
  display: grid;
  gap: 12px;
}

.content-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.content-item strong {
  color: var(--blue);
}

.contact-box {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(20, 32, 51, 0.96), rgba(23, 105, 224, 0.9)),
    url("hero-airport-ai-light.png") center/cover;
}

.contact-box .lead {
  color: rgba(255, 255, 255, 0.86);
}

.form {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
}

.form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  background: #fff;
  font: inherit;
}

.form textarea {
  min-height: 92px;
  resize: vertical;
}

footer {
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.footer-inner {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

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

.list-clean {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.list-clean li {
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
  color: var(--ink-2);
}

.contact-method {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.contact-method strong {
  color: var(--ink);
}

.contact-method a {
  color: var(--blue);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.company-card {
  position: relative;
}

.company-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.company-logo-row img {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 28px rgba(36, 80, 130, 0.14);
}

.company-logo-row strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 900;
}

.company-logo-row span {
  display: block;
  margin-top: 5px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.resource-row {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.resource-row p {
  margin-bottom: 0;
}

.showcase-card {
  overflow: hidden;
  padding: 0;
}

.showcase-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: linear-gradient(135deg, #f4f8ff, #fff);
}

.showcase-card .showcase-body {
  padding: 20px;
}

.showcase-card.logo-showcase img {
  object-fit: contain;
  padding: 30px;
}

.notice {
  padding: 14px 16px;
  color: var(--ink-2);
  background: #fff8ee;
  border: 1px solid #ffe1b9;
  border-radius: 8px;
}

.demo-stage-section {
  background: linear-gradient(135deg, #f7fbff 0%, #ffffff 52%, #edf6fc 100%);
}

.demo-stage-wrap {
  align-items: center;
}

.demo-subnav {
  margin-top: 24px;
}

.demo-screen {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 18px;
  color: #fff;
  border: 1px solid rgba(75, 130, 192, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(15, 41, 70, 0.96), rgba(21, 100, 173, 0.9)),
    radial-gradient(circle at 72% 18%, rgba(117, 185, 210, 0.5), transparent 30%);
  box-shadow: 0 30px 70px rgba(37, 104, 184, 0.22);
}

.demo-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.demo-topbar,
.demo-panels,
.demo-flow {
  position: relative;
  z-index: 2;
}

.demo-topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
}

.demo-topbar strong {
  color: #a8dcf0;
}

.demo-map {
  position: relative;
  height: 220px;
  margin: 18px 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 24% 26%, rgba(117, 185, 210, 0.28), transparent 20%),
    radial-gradient(circle at 78% 60%, rgba(111, 136, 121, 0.26), transparent 28%),
    rgba(255, 255, 255, 0.06);
}

.runway,
.taxiway {
  position: absolute;
  left: 12%;
  width: 76%;
  height: 9px;
  border-radius: 99px;
  transform: rotate(-9deg);
  transform-origin: center;
}

.runway {
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0 30px, rgba(255, 255, 255, 0.42) 30px 48px);
  box-shadow: 0 0 24px rgba(117, 185, 210, 0.36);
}

.runway-a {
  top: 72px;
}

.runway-b {
  top: 118px;
}

.taxiway {
  height: 3px;
  background: rgba(216, 232, 242, 0.5);
}

.taxiway-a {
  top: 95px;
  transform: rotate(19deg);
}

.taxiway-b {
  top: 148px;
  transform: rotate(-24deg);
}

.flight-dot,
.pulse {
  position: absolute;
  z-index: 2;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.flight-dot {
  background: #fff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
  animation: flightMove 6s linear infinite;
}

.dot-a {
  top: 66px;
  left: 12%;
}

.dot-b {
  top: 114px;
  left: 22%;
  animation-delay: 1.8s;
}

.dot-c {
  top: 138px;
  left: 44%;
  animation-delay: 3.2s;
}

.pulse {
  border: 2px solid rgba(216, 154, 99, 0.92);
  animation: pulseRing 2.4s ease-out infinite;
}

.pulse-a {
  top: 92px;
  left: 54%;
}

.pulse-b {
  top: 140px;
  left: 70%;
  animation-delay: 0.9s;
}

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

.demo-panel {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.demo-panel span,
.demo-panel em {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-style: normal;
}

.demo-panel strong {
  display: block;
  margin: 4px 0;
  color: #fff;
  font-size: 26px;
  line-height: 1;
}

.demo-panel.warning strong {
  color: #ffd39a;
}

.demo-panel.green strong {
  color: #bfe8ce;
}

.demo-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.demo-flow i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(117, 185, 210, 0.2), rgba(117, 185, 210, 0.9));
}

.demo-product {
  min-height: 260px;
}

.demo-product strong {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue);
  font-size: 13px;
}

@keyframes flightMove {
  0% {
    transform: translateX(0) translateY(0) scale(0.9);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  82% {
    opacity: 1;
  }
  100% {
    transform: translateX(330px) translateY(-52px) scale(1.08);
    opacity: 0;
  }
}

@keyframes pulseRing {
  0% {
    transform: scale(0.6);
    opacity: 0.9;
  }
  100% {
    transform: scale(3.4);
    opacity: 0;
  }
}

.hero-minimal .hero-inner {
  min-height: 620px;
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 22px;
}

.hero-kicker span {
  max-width: 100%;
  padding: 6px 9px;
  color: var(--blue);
  border: 1px solid #d4e6fb;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.architecture-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(151, 184, 219, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.96)),
    radial-gradient(circle at 90% 10%, rgba(117, 185, 210, 0.22), transparent 32%);
  box-shadow: var(--shadow);
}

.architecture-node {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.architecture-node strong {
  color: var(--ink);
  font-size: 15px;
}

.architecture-node span {
  color: var(--muted);
  font-size: 12px;
}

.architecture-line {
  width: 1px;
  height: 18px;
  margin: 0 auto;
  background: linear-gradient(var(--line), var(--blue-2));
}

.architecture-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mini-terminal {
  margin-top: 14px;
  padding: 12px;
  color: #dff4ff;
  border-radius: 8px;
  background: #10253f;
  font-size: 12px;
  line-height: 1.7;
}

.mini-terminal span {
  display: block;
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.signal {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
}

.signal strong {
  display: block;
  color: var(--blue);
  font-size: 20px;
  line-height: 1.1;
}

.signal span {
  color: var(--muted);
  font-size: 12px;
}

.matrix-strip {
  display: grid;
  grid-template-columns: 1.08fr repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.matrix-card {
  min-height: 188px;
  padding: 20px;
}

.matrix-card.primary {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 37, 63, 0.98), rgba(37, 104, 184, 0.88)),
    radial-gradient(circle at 90% 10%, rgba(117, 185, 210, 0.3), transparent 36%);
  border-color: rgba(37, 104, 184, 0.28);
}

.matrix-card.primary p,
.matrix-card.primary .tag {
  color: rgba(255, 255, 255, 0.84);
}

.matrix-card.primary .tag {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.capability-cloud {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.capability-pill {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.capability-pill strong {
  color: var(--ink);
  font-size: 14px;
}

.capability-pill span {
  color: var(--muted);
  font-size: 12px;
}

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

.insight-card {
  display: grid;
  gap: 12px;
  min-height: 315px;
  padding: 22px;
}

.insight-card .meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.insight-card p {
  margin-bottom: 0;
}

.insight-card strong {
  align-self: end;
  color: var(--blue);
  font-size: 14px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.28fr);
  gap: 34px;
  align-items: start;
}

.article-body {
  padding: 30px;
}

.article-body h2 {
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: 28px;
}

.article-body p,
.article-body ul {
  color: var(--ink-2);
  font-size: 16px;
}

.article-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 12px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.scenario-path {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.scenario-step {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.scenario-step span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.scenario-step strong {
  color: var(--ink);
}

.scenario-step p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  .inner,
  .hero-inner {
    width: 100%;
  }

  .hero-inner {
    width: min(1220px, calc(100% - 56px));
  }

  .hero-inner,
  .section-head,
  .leadership-layout,
  .product-radar,
  .product-overview-grid,
  .matrix-strip,
  .capability-cloud,
  .insight-grid,
  .article-layout,
  .scenario-path,
  .signal-row,
  .grid-5,
  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: 0;
    padding: 48px 0;
  }

  .nav {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .brand {
    width: 100%;
  }

  .nav-links {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 0 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 6px 9px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    font-size: 13px;
    line-height: 1.2;
  }

  .nav-links .nav-cta {
    color: #fff;
    background: var(--blue);
    border-color: var(--blue);
  }

  .no-wrap {
    white-space: normal;
  }

  .page-head .contact-intro {
    white-space: normal;
  }

  .company-position {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .page-head p {
    text-align: left;
  }

  .article-side {
    position: static;
  }
}

@media (max-width: 640px) {
  .inner {
    width: auto !important;
    max-width: none !important;
  }

  .hero-inner {
    width: calc(100vw - 72px);
    max-width: calc(100vw - 72px);
  }

  section,
  .page-head {
    padding-left: 24px;
    padding-right: 24px;
  }

  h1 {
    font-size: 31px;
    line-height: 1.16;
  }

  h2 {
    font-size: 27px;
  }

  h3 {
    font-size: 20px;
  }

  .nav {
    padding: 10px 16px 8px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-sub {
    font-size: 9px;
    letter-spacing: 0.2px;
  }

  .nav-links {
    margin: 0 -2px;
  }

  .nav-cta {
    padding: 6px 10px;
  }

  .hero-inner {
    padding: 34px 0 40px;
  }

  .hero-copy {
    font-size: 16px;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-kicker {
    gap: 7px;
  }

  .hero-kicker span {
    font-size: 11px;
    padding: 6px 8px;
    max-width: 100%;
  }

  .signal-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
  }

  .signal {
    padding: 10px 12px;
  }

  .hero-title span {
    width: auto;
    max-width: 100%;
    text-align: left;
    text-align-last: auto;
    white-space: normal;
  }

  .hero-title .position-line {
    font-size: 0.72em;
  }

  .hero-card {
    padding: 16px;
  }

  .hero .hero-card {
    display: none;
  }

  .hero-card img,
  .showcase-card img,
  .equipment-card img {
    height: 190px;
  }

  .preview-top,
  .preview-lines a {
    align-items: flex-start;
    flex-direction: column;
  }

  .preview-lines em {
    white-space: normal;
  }

  section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .product-switcher {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .product-switcher::-webkit-scrollbar {
    display: none;
  }

  .product-switcher a {
    flex: 0 0 auto;
  }

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

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

  .demo-flow {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .content-item {
    grid-template-columns: 1fr;
  }

  .resource-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .resource-row .button {
    justify-self: start;
  }
}

/* Mission-driven visual system for the airport agent platform */
.mission-hero {
  color: #fff;
  background:
    radial-gradient(circle at 76% 22%, rgba(53, 210, 255, 0.28), transparent 28%),
    radial-gradient(circle at 20% 76%, rgba(125, 243, 198, 0.16), transparent 30%),
    linear-gradient(135deg, #071729 0%, #102b4c 50%, #0a1b33 100%);
}

.mission-hero::before {
  inset: 0;
  height: auto;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.72;
}

.mission-hero .eyebrow,
.mission-hero .hero-copy,
.mission-hero .hero-copy-secondary {
  color: rgba(255,255,255,0.86);
}

.mission-hero .eyebrow::before {
  background: var(--electric);
}

.mission-hero h1 {
  color: #fff;
}

.mission-hero .button-outline {
  color: #dff8ff;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.28);
}

.mission-hero .signal {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}

.mission-hero .signal strong {
  color: var(--electric);
}

.mission-hero .signal span {
  color: rgba(255,255,255,0.76);
}

.mission-hero .hero-kicker span {
  color: #dff8ff;
  background: rgba(53, 210, 255, 0.1);
  border-color: rgba(53, 210, 255, 0.28);
}

.light-core-hero {
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 18%, rgba(53, 210, 255, 0.2), transparent 30%),
    radial-gradient(circle at 14% 82%, rgba(37, 104, 184, 0.08), transparent 30%),
    linear-gradient(135deg, #f8fcff 0%, #ffffff 48%, #edf7ff 100%);
}

.light-core-hero::before {
  inset: 0;
  height: auto;
  background:
    linear-gradient(rgba(37,104,184,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,104,184,0.045) 1px, transparent 1px);
  background-size: 36px 36px;
}

.light-core-hero .hero-copy,
.light-core-hero .hero-copy-secondary {
  color: var(--ink-2);
}

.dual-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1.2;
}

.dual-label {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1.15;
}

.dual-pill small,
.dual-label small,
.starcore-caption small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.starcore-card {
  position: relative;
  min-height: 460px;
  padding: 24px;
  border: 1px solid rgba(151,184,219,0.72);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 46%, rgba(53,210,255,0.28), transparent 25%),
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(240,248,255,0.92));
  box-shadow: 0 26px 70px rgba(37, 104, 184, 0.16);
  overflow: hidden;
}

.starcore-card::before {
  content: "";
  position: absolute;
  inset: 22px;
  background:
    linear-gradient(rgba(37,104,184,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,104,184,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  border-radius: 10px;
}

.starcore-system {
  position: absolute;
  inset: 50px 40px 70px;
}

.starcore-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(37,104,184,0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.starcore-ring.r1 {
  width: 310px;
  height: 310px;
  animation: rotateCore 18s linear infinite;
}

.starcore-ring.r2 {
  width: 230px;
  height: 230px;
  border-style: dashed;
  animation: rotateCore 12s linear reverse infinite;
}

.starcore-ring.r3 {
  width: 150px;
  height: 150px;
  border-color: rgba(53,210,255,0.42);
  box-shadow: 0 0 36px rgba(53,210,255,0.16);
  animation: breatheCore 3.8s ease-in-out infinite;
}

.starcore-beam {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 170px;
  transform-origin: 50% 0;
  background: linear-gradient(rgba(53,210,255,0.95), rgba(53,210,255,0));
  filter: drop-shadow(0 0 10px rgba(53,210,255,0.8));
  animation: rotateCore 7s linear infinite;
}

.starcore-beam.b2 {
  height: 142px;
  animation-duration: 9s;
  animation-direction: reverse;
}

.starcore-core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  border: 1px solid rgba(53,210,255,0.5);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,0.92) 0 16%, rgba(53,210,255,0.48) 17% 42%, rgba(37,104,184,0.9) 43% 100%);
  box-shadow: 0 0 36px rgba(53,210,255,0.54), inset 0 0 24px rgba(255,255,255,0.28);
  transform: translate(-50%, -50%);
}

.starcore-core strong {
  color: #fff;
  font-size: 26px;
  letter-spacing: 0.5px;
}

.starcore-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--electric);
  box-shadow: 0 0 22px rgba(53,210,255,0.92);
}

.starcore-dot.d1 { left: 16%; top: 32%; }
.starcore-dot.d2 { right: 18%; top: 28%; background: var(--mint); }
.starcore-dot.d3 { right: 24%; bottom: 28%; }
.starcore-dot.d4 { left: 23%; bottom: 22%; background: var(--mint); }

.starcore-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  display: grid;
  gap: 8px;
  z-index: 2;
}

.starcore-caption strong {
  color: var(--ink);
  font-size: 18px;
}

.starcore-caption p {
  margin: 0;
  color: var(--ink-2);
  font-size: 13px;
}

.light-mission-band {
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 10%, rgba(53,210,255,0.15), transparent 28%),
    linear-gradient(135deg, #ffffff, #f3f9ff);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.light-mission-band .section-head p,
.light-mission-band .tile p {
  color: var(--ink-2);
}

.light-mission-band .tile {
  background: rgba(255,255,255,0.88);
  border-color: rgba(151,184,219,0.56);
  box-shadow: 0 14px 34px rgba(37,104,184,0.08);
}

.light-mission-band .tag {
  color: var(--blue);
  background: #edf7ff;
  border-color: #d3e9ff;
}

@keyframes rotateCore {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes breatheCore {
  0%, 100% { transform: translate(-50%, -50%) scale(0.96); opacity: 0.72; }
  50% { transform: translate(-50%, -50%) scale(1.06); opacity: 1; }
}

.organism-card {
  position: relative;
  min-height: 430px;
  padding: 22px;
  color: #fff;
  border: 1px solid rgba(53, 210, 255, 0.32);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 42%, rgba(53, 210, 255, 0.28), transparent 24%),
    linear-gradient(135deg, rgba(9, 32, 58, 0.92), rgba(14, 64, 106, 0.7));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.organism-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(125, 243, 198, 0.18);
  border-radius: 50%;
  animation: orbitPulse 5.2s ease-in-out infinite;
}

.organism-core {
  position: absolute;
  left: 50%;
  top: 45%;
  display: grid;
  width: 142px;
  height: 142px;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(53, 210, 255, 0.48);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 210, 255, 0.22), rgba(8, 26, 49, 0.9));
  box-shadow: 0 0 48px rgba(53, 210, 255, 0.34);
  transform: translate(-50%, -50%);
}

.organism-core strong {
  display: block;
  font-size: 20px;
}

.organism-core span {
  color: rgba(255,255,255,0.72);
  font-size: 12px;
}

.organism-node {
  position: absolute;
  display: grid;
  gap: 3px;
  width: 132px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
}

.organism-node strong {
  color: #fff;
  font-size: 14px;
}

.organism-node span {
  color: rgba(255,255,255,0.72);
  font-size: 11px;
}

.organism-node.brain { left: 28px; top: 36px; }
.organism-node.body { right: 28px; top: 36px; }
.organism-node.heart { left: 28px; bottom: 52px; }
.organism-node.memory { right: 28px; bottom: 52px; }
.organism-node.hands { left: 50%; bottom: 18px; transform: translateX(-50%); }

.heartbeat-line {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 168px;
  height: 46px;
  background:
    linear-gradient(90deg, transparent 0 7%, rgba(53,210,255,0.8) 7% 9%, transparent 9% 15%, rgba(125,243,198,0.95) 15% 17%, transparent 17% 22%, rgba(53,210,255,0.75) 22% 24%, transparent 24% 100%);
  opacity: 0.7;
  animation: scanLine 3.4s linear infinite;
}

.mission-band {
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(53,210,255,0.22), transparent 28%),
    linear-gradient(135deg, #081a31, #123963);
}

.mission-band .section-head p,
.mission-band .tile p {
  color: rgba(255,255,255,0.78);
}

.mission-band .tile {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}

.mission-band .tag {
  color: #dff8ff;
  background: rgba(53,210,255,0.12);
  border-color: rgba(53,210,255,0.28);
}

.cape-cockpit {
  position: relative;
  min-width: 0;
  min-height: 420px;
  padding: 20px;
  color: #fff;
  border: 1px solid rgba(125,243,198,0.34);
  border-radius: 10px;
  background:
    radial-gradient(circle at 70% 18%, rgba(125,243,198,0.22), transparent 26%),
    linear-gradient(145deg, #071729, #123b48 56%, #092033);
  box-shadow: 0 28px 70px rgba(21, 92, 100, 0.22);
  overflow: hidden;
}

.cape-cockpit::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

.cape-topbar,
.cape-map,
.cape-kpis,
.cape-flow {
  position: relative;
  z-index: 2;
}

.cape-topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  font-size: 13px;
}

.cape-topbar strong {
  color: var(--mint);
}

.cape-map {
  position: relative;
  height: 210px;
  margin: 18px 0;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  background:
    radial-gradient(circle at 20% 28%, rgba(53,210,255,0.18), transparent 18%),
    radial-gradient(circle at 78% 64%, rgba(125,243,198,0.18), transparent 26%),
    rgba(255,255,255,0.05);
  overflow: hidden;
}

.carbon-route {
  position: absolute;
  left: 10%;
  width: 80%;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(53,210,255,0.08), rgba(125,243,198,0.95), rgba(53,210,255,0.18));
  box-shadow: 0 0 22px rgba(125,243,198,0.4);
  transform-origin: center;
}

.route-one { top: 70px; transform: rotate(-12deg); }
.route-two { top: 122px; transform: rotate(9deg); }
.route-three { top: 154px; transform: rotate(-4deg); opacity: 0.6; }

.carbon-node {
  position: absolute;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(125,243,198,0.9);
  border-radius: 50%;
  background: #092033;
  box-shadow: 0 0 24px rgba(125,243,198,0.6);
}

.cn-a { left: 18%; top: 66px; }
.cn-b { left: 52%; top: 112px; }
.cn-c { left: 78%; top: 146px; }

.carbon-pulse {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 22px rgba(125,243,198,0.9);
  animation: carbonMove 5.8s linear infinite;
}

.carbon-pulse.p2 {
  top: 116px;
  animation-delay: 2s;
}

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

.cape-kpi {
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
}

.cape-kpi span,
.cape-kpi em {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-style: normal;
}

.cape-kpi strong {
  display: block;
  color: #fff;
  font-size: 23px;
  line-height: 1.1;
}

.cape-kpi.green strong {
  color: var(--mint);
}

.cape-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  color: rgba(255,255,255,0.78);
  font-size: 12px;
}

.cape-flow span {
  padding: 5px 8px;
  border: 1px solid rgba(125,243,198,0.22);
  border-radius: 999px;
  background: rgba(125,243,198,0.08);
}

@keyframes orbitPulse {
  0%, 100% { transform: scale(0.96); opacity: 0.48; }
  50% { transform: scale(1.04); opacity: 0.9; }
}

@keyframes scanLine {
  0% { transform: translateX(-18%); opacity: 0.22; }
  45% { opacity: 0.9; }
  100% { transform: translateX(18%); opacity: 0.22; }
}

@keyframes carbonMove {
  0% { left: 12%; top: 74px; opacity: 0; transform: scale(0.8); }
  12% { opacity: 1; }
  55% { left: 54%; top: 116px; opacity: 1; transform: scale(1); }
  100% { left: 82%; top: 150px; opacity: 0; transform: scale(1.1); }
}

@media (max-width: 980px) {
  .cape-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cape-cockpit {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .page-head h1 {
    font-size: 28px;
    line-height: 1.18;
  }

  .light-core-hero {
    padding-top: 34px;
  }

  .starcore-card {
    min-height: 420px;
    padding: 16px;
  }

  .starcore-system {
    inset: 28px 8px 124px;
  }

  .starcore-ring.r1 {
    width: 248px;
    height: 248px;
  }

  .starcore-ring.r2 {
    width: 188px;
    height: 188px;
  }

  .starcore-ring.r3 {
    width: 124px;
    height: 124px;
  }

  .starcore-core {
    width: 92px;
    height: 92px;
  }

  .starcore-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .cape-cockpit {
    padding: 16px;
  }

  .cape-map {
    height: 190px;
  }

  .organism-card {
    min-height: 520px;
  }

  .organism-node {
    width: 124px;
  }

  .organism-node.brain { left: 14px; top: 28px; }
  .organism-node.body { right: 14px; top: 28px; }
  .organism-node.heart { left: 14px; bottom: 96px; }
  .organism-node.memory { right: 14px; bottom: 96px; }
}

@media (max-width: 640px) {
  .light-core-hero .hero-inner {
    width: calc(100vw - 84px);
    max-width: calc(100vw - 84px);
  }

  .light-core-hero .hero-copy {
    max-width: 300px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .light-core-hero .signal-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* International light-tech refresh: compact pages, fewer cards, clearer bilingual hierarchy. */
.split-label {
  display: inline-grid;
  gap: 4px;
  align-items: start;
  color: var(--blue);
  font-weight: 900;
}

.split-label small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.7px;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-tech-light {
  position: relative;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 16%, rgba(53, 210, 255, 0.26), transparent 30%),
    radial-gradient(circle at 12% 82%, rgba(125, 243, 198, 0.18), transparent 28%),
    linear-gradient(135deg, #fbfdff 0%, #ffffff 48%, #eff8ff 100%);
  overflow: hidden;
}

.hero-tech-light::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(37, 104, 184, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 104, 184, 0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,0.88) 45%, rgba(0,0,0,0.42) 100%);
  pointer-events: none;
}

.hero-tech-light .hero-inner {
  position: relative;
  z-index: 1;
  min-height: 650px;
}

.hero-copy-block {
  max-width: 720px;
}

.hero-tech-light .hero-copy {
  max-width: 680px;
  color: var(--ink-2);
}

.compact-signals {
  max-width: 700px;
}

.starcore-orbit {
  min-height: 500px;
  border-color: rgba(151, 184, 219, 0.72);
  background:
    radial-gradient(circle at 50% 45%, rgba(53, 210, 255, 0.34), transparent 24%),
    radial-gradient(circle at 72% 18%, rgba(125, 243, 198, 0.2), transparent 18%),
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(237, 247, 255, 0.92));
  box-shadow: 0 36px 90px rgba(37, 104, 184, 0.18);
}

.starcore-orbit .starcore-card::before,
.starcore-orbit::before {
  background-size: 22px 22px;
}

.starcore-data-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78%;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(53, 210, 255, 0.86), transparent);
  filter: drop-shadow(0 0 10px rgba(53, 210, 255, 0.58));
  opacity: 0.58;
  animation: dataSweep 5.5s ease-in-out infinite;
}

.starcore-data-line.l1 { transform: rotate(18deg) translateX(-50%); }
.starcore-data-line.l2 { transform: rotate(142deg) translateX(-50%); animation-delay: 1.4s; }
.starcore-data-line.l3 { transform: rotate(272deg) translateX(-50%); animation-delay: 2.6s; }

.flow-section {
  padding: 28px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2vw, 18px);
  padding: 14px;
  color: var(--ink);
  border: 1px solid rgba(151, 184, 219, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 42px rgba(37, 104, 184, 0.08);
}

.capability-flow span,
.capability-flow a {
  color: var(--ink);
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 900;
  white-space: nowrap;
}

.capability-flow i {
  flex: 1 1 34px;
  min-width: 18px;
  max-width: 82px;
  height: 1px;
  background: linear-gradient(90deg, rgba(37,104,184,0.16), rgba(53,210,255,0.82), rgba(37,104,184,0.16));
}

.capability-flow-full {
  border-radius: 12px;
}

.flow-note {
  max-width: 820px;
  margin: 16px auto 0;
  color: var(--ink-2);
  text-align: center;
}

.refined-head {
  gap: 10px;
}

.product-map {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 1.15fr) repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(151, 184, 219, 0.6);
  border-radius: 16px;
  background:
    radial-gradient(circle at 18% 16%, rgba(53, 210, 255, 0.13), transparent 22%),
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(245,250,255,0.95));
  box-shadow: 0 24px 70px rgba(37, 104, 184, 0.1);
}

.product-map::before {
  content: "";
  position: absolute;
  inset: 18px 24px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(53, 210, 255, 0.72), transparent);
}

.product-map-wide {
  grid-template-columns: minmax(240px, 1.15fr) repeat(3, minmax(0, 1fr));
}

.product-node {
  position: relative;
  display: grid;
  min-height: 154px;
  align-content: start;
  gap: 8px;
  padding: 18px;
  color: var(--ink);
  border: 1px solid rgba(151, 184, 219, 0.46);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.product-node:hover {
  transform: translateY(-3px);
  border-color: rgba(53, 210, 255, 0.62);
  box-shadow: 0 18px 45px rgba(37, 104, 184, 0.13);
}

.product-node small {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.product-node strong {
  font-size: 18px;
  line-height: 1.28;
}

.product-node span {
  color: var(--muted);
  font-size: 13px;
}

.product-node.flagship {
  color: #fff;
  background:
    radial-gradient(circle at 78% 22%, rgba(53,210,255,0.34), transparent 26%),
    linear-gradient(145deg, #123d78, #2568b8 58%, #163969);
  grid-row: span 2;
}

.product-node.flagship small,
.product-node.flagship span {
  color: rgba(255,255,255,0.78);
}

.product-node.flagship strong {
  font-size: 28px;
}

.business-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(151, 184, 219, 0.5);
  border-radius: 16px;
  background: rgba(151, 184, 219, 0.5);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(37, 104, 184, 0.08);
}

.business-strip a {
  display: grid;
  gap: 6px;
  padding: 22px;
  background: rgba(255,255,255,0.9);
}

.business-strip strong {
  color: var(--ink);
  font-size: 18px;
}

.business-strip small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

.subtle-band {
  background:
    radial-gradient(circle at 80% 12%, rgba(53,210,255,0.09), transparent 28%),
    linear-gradient(180deg, #f7fbff, #ffffff);
}

.insight-slim {
  display: grid;
  gap: 24px;
}

.insight-split {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(151, 184, 219, 0.55);
  border-radius: 14px;
  background: rgba(151, 184, 219, 0.55);
  overflow: hidden;
}

.insight-line {
  display: grid;
  grid-template-columns: 120px minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 20px 22px;
  background: rgba(255,255,255,0.94);
}

.insight-line span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.insight-line strong {
  color: var(--ink);
  font-size: 18px;
}

.insight-line em {
  color: var(--muted);
  font-style: normal;
}

.clean-contact {
  background:
    radial-gradient(circle at 18% 22%, rgba(53,210,255,0.13), transparent 26%),
    linear-gradient(135deg, #f8fcff, #ffffff);
}

.contact-cta-clean {
  position: relative;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 18%, rgba(53,210,255,0.14), transparent 28%),
    radial-gradient(circle at 86% 24%, rgba(125,243,198,0.16), transparent 24%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 52%, #eef8ff 100%);
  border-top: 1px solid rgba(151,184,219,0.5);
  border-bottom: 1px solid rgba(151,184,219,0.42);
}

.contact-cta-clean::before {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 1px solid rgba(151,184,219,0.24);
  border-radius: 18px;
  background:
    linear-gradient(rgba(37,104,184,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,104,184,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.contact-cta-clean .inner {
  position: relative;
  z-index: 1;
  align-items: center;
}

.contact-cta-clean h2 {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  max-width: 620px;
}

.contact-cta-clean .lead,
.contact-cta-clean .form-note {
  color: var(--ink-2);
}

.contact-cta-clean .form {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(151,184,219,0.62);
  box-shadow: 0 22px 58px rgba(37,104,184,0.12);
  backdrop-filter: blur(14px);
}

.contact-cta-clean .form label {
  color: var(--ink-2);
  font-weight: 800;
}

.contact-cta-clean .form input,
.contact-cta-clean .form select,
.contact-cta-clean .form textarea {
  border-color: rgba(151,184,219,0.72);
  background: #fff;
}

.form-note {
  margin: -2px 0 0;
  font-size: 12px;
  line-height: 1.65;
}

.starcore-orbit .starcore-system {
  isolation: isolate;
}

.starcore-orbit .starcore-ring {
  border-color: transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    conic-gradient(from 90deg, transparent 0 12%, rgba(53,210,255,0.92) 18%, rgba(37,104,184,0.28) 34%, transparent 42% 56%, rgba(125,243,198,0.82) 66%, rgba(53,210,255,0.28) 78%, transparent 88% 100%) border-box;
  box-shadow: inset 0 0 24px rgba(53,210,255,0.08), 0 0 28px rgba(37,104,184,0.12);
}

.starcore-orbit .starcore-ring.r2 {
  background:
    linear-gradient(#fff, #fff) padding-box,
    conic-gradient(from 240deg, transparent 0 16%, rgba(37,104,184,0.72) 24%, transparent 34% 58%, rgba(53,210,255,0.8) 66%, transparent 76% 100%) border-box;
}

.starcore-orbit .starcore-ring.r3 {
  background:
    linear-gradient(rgba(255,255,255,0.82), rgba(255,255,255,0.82)) padding-box,
    conic-gradient(from 30deg, rgba(53,210,255,0.95), transparent 32%, rgba(125,243,198,0.9), transparent 72%, rgba(37,104,184,0.72)) border-box;
}

.starcore-core {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.86);
  background:
    radial-gradient(circle at 44% 38%, rgba(255,255,255,0.98) 0 7%, rgba(172,238,255,0.86) 8% 20%, rgba(53,210,255,0.42) 21% 42%, rgba(37,104,184,0.86) 58% 100%),
    conic-gradient(from 210deg, rgba(53,210,255,0.12), rgba(255,255,255,0.9), rgba(125,243,198,0.2), rgba(37,104,184,0.5), rgba(53,210,255,0.12));
  box-shadow:
    0 0 34px rgba(53,210,255,0.62),
    0 0 90px rgba(37,104,184,0.25),
    inset 0 0 22px rgba(255,255,255,0.46);
}

.starcore-core strong {
  display: none;
}

.starcore-core span,
.starcore-core::before,
.starcore-core::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.starcore-core span {
  inset: 26px;
  background:
    radial-gradient(circle, #ffffff 0 16%, rgba(53,210,255,0.94) 17% 45%, rgba(125,243,198,0.4) 46% 100%);
  filter: blur(0.2px);
  box-shadow: 0 0 26px rgba(53,210,255,0.86), 0 0 52px rgba(125,243,198,0.42);
  animation: starcorePulse 2.8s ease-in-out infinite;
}

.starcore-core::before {
  inset: -24px;
  border: 1px solid rgba(255,255,255,0.42);
  border-top-color: rgba(53,210,255,0.95);
  border-right-color: rgba(125,243,198,0.65);
  animation: starcoreSpin 5.6s linear infinite;
}

.starcore-core::after {
  left: -38%;
  top: 46%;
  width: 176%;
  height: 10px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.92), rgba(53,210,255,0.58), transparent);
  filter: blur(0.5px);
  animation: starcoreScan 3.8s ease-in-out infinite;
}

.starcore-dot {
  animation: starcoreDot 3.6s ease-in-out infinite;
}

.starcore-dot.d2,
.starcore-dot.d4 {
  animation-delay: 1.2s;
}

@keyframes starcorePulse {
  0%, 100% { transform: scale(0.86); opacity: 0.82; }
  50% { transform: scale(1.12); opacity: 1; }
}

@keyframes starcoreSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes starcoreScan {
  0%, 100% { transform: translateX(-22%) rotate(-18deg); opacity: 0.12; }
  44% { opacity: 0.92; }
  55% { transform: translateX(22%) rotate(-18deg); opacity: 0.56; }
}

@keyframes starcoreDot {
  0%, 100% { transform: scale(0.78); opacity: 0.55; }
  50% { transform: scale(1.18); opacity: 1; }
}

.refined-page-head {
  background:
    radial-gradient(circle at 78% 16%, rgba(53,210,255,0.12), transparent 26%),
    linear-gradient(135deg, #fbfdff, #f2f9ff);
}

.platform-map {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 32px);
  border: 1px solid rgba(151, 184, 219, 0.58);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 43%, rgba(53,210,255,0.15), transparent 24%),
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(243,249,255,0.94));
  box-shadow: 0 28px 78px rgba(37,104,184,0.12);
}

.platform-layer {
  display: grid;
  gap: 12px;
}

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

.platform-layer.top a,
.platform-core,
.platform-layer.support a,
.platform-layer.systems a {
  border: 1px solid rgba(151, 184, 219, 0.52);
  border-radius: 12px;
  background: rgba(255,255,255,0.86);
}

.platform-layer.top a {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.platform-layer.top small,
.platform-core small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

.platform-layer.top strong {
  color: var(--ink);
  font-size: 20px;
}

.platform-layer.top span {
  color: var(--muted);
  font-size: 13px;
}

.platform-flow-line {
  width: 1px;
  height: 24px;
  margin: 0 auto;
  background: linear-gradient(var(--line), var(--electric), var(--line));
  box-shadow: 0 0 18px rgba(53,210,255,0.48);
}

.platform-core {
  display: grid;
  place-items: center;
  gap: 6px;
  width: min(420px, 100%);
  min-height: 118px;
  margin: 0 auto;
  color: #fff;
  border-color: rgba(53,210,255,0.4);
  background:
    radial-gradient(circle at 50% 50%, rgba(53,210,255,0.5), transparent 40%),
    linear-gradient(145deg, #123d78, #2568b8);
  box-shadow: 0 22px 60px rgba(37,104,184,0.2);
}

.platform-core strong {
  font-size: 26px;
}

.platform-core small {
  color: rgba(255,255,255,0.75);
}

.platform-layer.support {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.platform-layer.systems {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.platform-layer.support a,
.platform-layer.systems a {
  padding: 14px 10px;
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}

.platform-brief {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.platform-brief article {
  padding: 18px;
  border-left: 2px solid var(--blue);
  background: rgba(255,255,255,0.7);
}

.platform-brief h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.platform-brief p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.cta-panel {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(151,184,219,0.56);
  border-radius: 18px;
  background:
    radial-gradient(circle at 85% 20%, rgba(53,210,255,0.14), transparent 26%),
    rgba(255,255,255,0.9);
  box-shadow: 0 18px 52px rgba(37,104,184,0.08);
}

.role-solution-table {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(151,184,219,0.55);
  border-radius: 16px;
  background: rgba(151,184,219,0.55);
  overflow: hidden;
}

.solution-row {
  display: grid;
  grid-template-columns: 1fr 1.55fr 1.35fr 130px;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255,255,255,0.95);
}

.solution-row.head {
  color: var(--muted);
  background: #f5f9fe;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.45px;
}

.solution-row strong {
  color: var(--ink);
  font-size: 16px;
}

.solution-row span {
  color: var(--ink-2);
  font-size: 14px;
}

.solution-row a {
  display: inline-grid;
  place-items: center;
  min-height: 36px;
  color: var(--blue);
  border: 1px solid #c9def5;
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.tool-lineup,
.demo-path {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(151,184,219,0.55);
  border-radius: 16px;
  background: rgba(151,184,219,0.55);
  overflow: hidden;
}

.tool-lineup a,
.demo-path a {
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) minmax(0, 1.5fr);
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  background: rgba(255,255,255,0.95);
}

.demo-path a {
  grid-template-columns: 60px minmax(160px, 0.65fr) minmax(0, 1.3fr);
}

.tool-lineup strong,
.demo-path strong {
  color: var(--ink);
  font-size: 17px;
}

.tool-lineup span,
.demo-path span {
  color: var(--muted);
}

.demo-path small {
  color: var(--blue);
  font-size: 18px;
  font-weight: 950;
}

.demo-asset-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 18px 0;
}

.demo-asset-list span {
  padding: 8px 12px;
  border: 1px solid #c9def5;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 850;
}

.demo-asset-list i {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--line), var(--electric));
}

@keyframes dataSweep {
  0%, 100% { opacity: 0.18; filter: drop-shadow(0 0 4px rgba(53,210,255,0.35)); }
  50% { opacity: 0.86; filter: drop-shadow(0 0 16px rgba(53,210,255,0.85)); }
}

@media (max-width: 980px) {
  .hero-tech-light .hero-inner,
  .product-map,
  .product-map-wide,
  .visual-split,
  .visual-split.reverse,
  .image-strip,
  .equipment-gallery,
  .business-visual-grid,
  .platform-layer.top,
  .platform-layer.support,
  .platform-layer.systems,
  .platform-brief,
  .business-strip {
    grid-template-columns: 1fr;
  }

  .product-node.flagship {
    grid-row: auto;
  }

  .visual-split.reverse .visual-copy,
  .visual-split.reverse .visual-panel {
    order: initial;
  }

  .role-solution-table {
    background: transparent;
    border: 0;
    gap: 12px;
  }

  .solution-row,
  .solution-row.head {
    grid-template-columns: 1fr;
    border: 1px solid rgba(151,184,219,0.55);
    border-radius: 14px;
  }

  .solution-row.head {
    display: none;
  }

  .tool-lineup a,
  .demo-path a,
  .insight-line {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .inner {
    width: calc(100vw - 48px) !important;
    max-width: calc(100vw - 48px) !important;
  }

  .hero-tech-light .hero-inner {
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
    padding-top: 40px;
  }

  .hero-tech-light .hero-title {
    font-size: 36px;
  }

  .hero-tech-light .hero-copy {
    max-width: 100%;
  }

  .starcore-orbit {
    min-height: 430px;
  }

  .visual-panel {
    min-height: 300px;
  }

  .hero-visual-airport {
    min-height: 340px;
  }

  .image-strip-card,
  .equipment-feature,
  .business-visual-card {
    min-height: 230px;
  }

  .capability-flow {
    align-items: stretch;
    flex-direction: column;
    border-radius: 16px;
  }

  .capability-flow i {
    width: 1px;
    height: 18px;
    min-width: 0;
    margin: 0 auto;
  }

  .product-map,
  .platform-map {
    padding: 12px;
    border-radius: 14px;
  }

  .product-node,
  .business-strip a,
  .tool-lineup a,
  .demo-path a,
  .solution-row {
    padding: 16px;
  }

  .platform-core strong {
    font-size: 22px;
  }

  .refined-page-head h1,
  .refined-page-head p,
  .page-head h1,
  .page-head p,
  .company-position,
  .product-node,
  .product-node strong,
  .product-node span,
  .platform-layer a,
  .platform-core,
  .solution-row,
  .tool-lineup a,
  .demo-path a {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .product-map,
  .product-map-wide,
  .platform-map,
  .visual-split,
  .image-strip,
  .equipment-gallery,
  .business-visual-grid,
  .role-solution-table,
  .tool-lineup,
  .demo-path,
  .business-strip,
  .insight-split {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  main,
  section,
  .inner,
  .grid-2,
  .contact-method,
  .panel,
  .form {
    min-width: 0;
    max-width: 100%;
  }

  .contact-method p,
  .contact-method a,
  .visual-panel,
  .image-strip-card,
  .equipment-feature,
  .business-visual-card,
  .contact-cta-clean .lead,
  .contact-cta-clean .form-note,
  .page-head .contact-intro,
  .company-position {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .page-head h1,
  .page-head p,
  .visual-copy h2,
  .visual-copy p,
  .lead,
  .flow-note,
  .section-head p {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .visual-copy,
  .visual-panel,
  .image-strip-card,
  .visual-mini-grid,
  .visual-mini-grid article {
    width: 100%;
  }

  .visual-mini-grid {
    grid-template-columns: 1fr;
  }

  .hero-tech-light .hero-copy,
  .hero-copy,
  .hero-title,
  .hero-title span,
  .hero-visual-caption p {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-visual-airport {
    width: 100%;
    max-width: 100%;
  }
}

/* 2026-06 international visual refinement */
.hero-starcore {
  min-height: 520px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 46%, rgba(53, 210, 255, 0.24), transparent 28%),
    radial-gradient(circle at 74% 24%, rgba(125, 243, 198, 0.18), transparent 26%),
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(238,248,255,0.94));
}

.hero-starcore::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(151,184,219,0.28);
  border-radius: 18px;
  background:
    linear-gradient(rgba(37,104,184,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,104,184,0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.hero-starcore .starcore-system {
  inset: 38px 36px 112px;
  z-index: 1;
}

.hero-starcore .starcore-caption {
  left: 30px;
  right: 30px;
  bottom: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(151,184,219,0.36);
}

.hero-starcore .starcore-caption strong {
  font-size: 26px;
  line-height: 1.16;
}

.hero-starcore .starcore-caption p {
  max-width: 460px;
}

.product-visual-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.product-visual-strip a {
  position: relative;
  display: grid;
  min-height: 210px;
  overflow: hidden;
  align-content: end;
  padding: 18px;
  color: #fff;
  border: 1px solid rgba(151,184,219,0.6);
  border-radius: 18px;
  background: #103457;
  box-shadow: 0 22px 54px rgba(37,104,184,0.11);
}

.product-visual-strip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .32s ease;
}

.product-visual-strip a:hover img {
  transform: scale(1.06);
}

.product-visual-strip a::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,26,49,0.04), rgba(8,26,49,0.24) 40%, rgba(8,26,49,0.78)),
    radial-gradient(circle at 20% 20%, rgba(53,210,255,0.18), transparent 30%);
}

.product-visual-strip span {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 950;
}

.product-visual-strip-wide {
  margin-top: 22px;
}

.business-strip-system {
  margin-bottom: 22px;
}

.business-strip-system a {
  min-height: 104px;
}

.feature-lanes {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(151,184,219,0.55);
  border-radius: 18px;
  background: rgba(151,184,219,0.55);
  box-shadow: 0 20px 58px rgba(37,104,184,0.09);
}

.feature-lanes article {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(220px, 0.44fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
  background: rgba(255,255,255,0.96);
}

.feature-lanes.compact article {
  grid-template-columns: 72px minmax(180px, 0.55fr) minmax(0, 1fr);
}

.feature-lanes span,
.product-tier-map article > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .45px;
  text-transform: uppercase;
}

.feature-lanes strong {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.28;
}

.feature-lanes p,
.feature-lanes ul {
  margin: 0;
  color: var(--ink-2);
}

.feature-lanes .button {
  margin-top: 14px;
}

.product-tier-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(151,184,219,0.56);
  border-radius: 18px;
  background: rgba(151,184,219,0.56);
  box-shadow: 0 22px 62px rgba(37,104,184,0.1);
}

.carbon-tier-map {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-tier-map article {
  padding: 24px;
  background:
    radial-gradient(circle at 85% 12%, rgba(53,210,255,0.1), transparent 28%),
    rgba(255,255,255,0.96);
}

.product-tier-map h3 {
  margin: 8px 0 10px;
  color: var(--ink);
  font-size: 22px;
}

.product-tier-map p,
.product-tier-map li {
  color: var(--ink-2);
}

.product-tier-map ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.company-story-panel {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(151,184,219,0.56);
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 16%, rgba(53,210,255,0.12), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(244,250,255,0.94));
  box-shadow: 0 22px 60px rgba(37,104,184,0.1);
}

.company-story-panel p {
  color: var(--ink-2);
}

.visual-panel-caption p,
.visual-panel-caption ul {
  margin-top: 10px;
  color: inherit;
}

.visual-panel.light .visual-panel-caption p,
.visual-panel.light .visual-panel-caption li {
  color: var(--ink-2);
}

.insight-grid .insight-card {
  box-shadow: none;
  border-radius: 0;
}

.insight-grid {
  overflow: hidden;
  border: 1px solid rgba(151,184,219,0.55);
  border-radius: 18px;
  background: rgba(151,184,219,0.55);
  gap: 1px;
}

.insight-grid .insight-card {
  background: rgba(255,255,255,0.96);
}

@media (max-width: 980px) {
  .product-visual-strip,
  .product-tier-map,
  .carbon-tier-map {
    grid-template-columns: 1fr;
  }

  .feature-lanes article,
  .feature-lanes.compact article {
    grid-template-columns: 1fr;
  }

  .hero-starcore {
    min-height: 470px;
  }
}

@media (max-width: 640px) {
  .hero-starcore {
    min-height: 420px;
    border-radius: 18px;
  }

  .hero-starcore .starcore-system {
    inset: 30px 18px 132px;
  }

  .hero-starcore .starcore-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .hero-starcore .starcore-caption strong {
    font-size: 22px;
  }

  .product-visual-strip a {
    min-height: 190px;
  }

  .product-tier-map article,
  .feature-lanes article {
    padding: 18px;
  }
}

/* Hero starcore: runway matrix variant to avoid an eye-like circular visual */
.hero-starcore .starcore-ring {
  left: 13%;
  right: auto;
  width: 74%;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(53,210,255,0.92), rgba(125,243,198,0.52), transparent);
  box-shadow: 0 0 22px rgba(53,210,255,0.3);
  transform: rotate(-13deg);
  animation: runwayGlow 4.8s ease-in-out infinite;
}

.hero-starcore .starcore-ring.r1 {
  top: 34%;
  width: 78%;
  height: 5px;
}

.hero-starcore .starcore-ring.r2 {
  top: 49%;
  width: 70%;
  height: 4px;
  border: 0;
  animation-delay: .7s;
}

.hero-starcore .starcore-ring.r3 {
  top: 64%;
  width: 62%;
  height: 4px;
  border: 0;
  animation-delay: 1.4s;
}

.hero-starcore .starcore-core {
  left: 52%;
  top: 49%;
  width: 104px;
  height: 104px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(125,243,198,0.28)) padding-box,
    linear-gradient(135deg, rgba(53,210,255,0.92), rgba(37,104,184,0.78)) border-box;
  transform: translate(-50%, -50%) rotate(45deg);
}

.hero-starcore .starcore-core span {
  inset: 24px;
  border-radius: 14px;
  transform: rotate(-45deg);
  background:
    linear-gradient(135deg, rgba(53,210,255,0.95), rgba(37,104,184,0.92)),
    radial-gradient(circle, rgba(255,255,255,0.95), transparent 45%);
}

.hero-starcore .starcore-core::before,
.hero-starcore .starcore-core::after {
  border-radius: 24px;
}

.hero-starcore .starcore-data-line {
  opacity: .3;
}

@keyframes runwayGlow {
  0%, 100% { opacity: .42; filter: drop-shadow(0 0 4px rgba(53,210,255,.25)); }
  50% { opacity: 1; filter: drop-shadow(0 0 16px rgba(53,210,255,.7)); }
}

/* 2026-07 conversion, accessibility and mobile-navigation increment */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 999px;
  background: currentColor;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(37, 104, 184, 0.36);
  outline-offset: 3px;
}

.truth-note {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto 14px;
  color: #5d7087;
  font-size: 12px;
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.contact-disclosure {
  padding: 18px 20px;
  color: var(--ink-2);
  border: 1px solid #cfe1f7;
  border-radius: 10px;
  background: #f7fbff;
}

.contact-disclosure strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

#inquiry-form {
  scroll-margin-top: 84px;
}

@media (max-width: 1120px) {
  .nav {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .brand {
    width: auto;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 8px 0 4px;
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    min-height: 44px;
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #fff;
  }

  .nav-links a:not(.nav-cta):hover {
    background: #edf5ff;
  }

  .nav-links .nav-cta {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--blue), #174f8b);
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 10px 16px;
  }

  .brand-sub {
    display: none;
  }

  .nav-links {
    grid-template-columns: 1fr;
  }

  section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .inner,
  .hero-inner {
    width: min(100%, calc(100% - 4px));
  }

  .contact-actions .button {
    width: 100%;
  }
}

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

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

/* 2026-07 Chinese-primary international homepage increment */
.hero-global {
  isolation: isolate;
  background:
    radial-gradient(circle at 16% 8%, rgba(53, 210, 255, 0.13), transparent 31%),
    radial-gradient(circle at 92% 88%, rgba(125, 243, 198, 0.1), transparent 28%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 48%, #edf6fc 100%);
}

.hero-global::before {
  inset: 0;
  height: auto;
  opacity: 0.72;
  background:
    linear-gradient(rgba(37, 104, 184, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 104, 184, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.hero-global .hero-inner {
  grid-template-columns: minmax(0, 0.96fr) minmax(430px, 0.86fr);
  gap: clamp(34px, 5vw, 72px);
  min-height: 720px;
  padding: 66px 0;
}

.global-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.2px;
}

.global-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--electric));
}

.global-kicker small {
  padding-left: 10px;
  color: var(--muted);
  border-left: 1px solid var(--line);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.global-tagline {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.hero-global .hero-title {
  margin-bottom: 20px;
}

.hero-global .hero-title-brand {
  color: var(--ink);
  font-size: 1.08em;
  letter-spacing: -1.8px;
}

.hero-global .position-line {
  margin-top: 10px;
  color: var(--ink-2);
  font-size: 0.66em;
  font-weight: 780;
  letter-spacing: -0.8px;
}

.hero-global .position-line .position-line-first,
.hero-global .position-line .position-line-second {
  display: inline;
  width: auto;
  white-space: normal;
}

.hero-global .hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: 17px;
  line-height: 1.82;
}

.bilingual-button {
  min-width: 152px;
  flex-direction: column;
  gap: 1px;
  padding: 10px 18px;
  line-height: 1.18;
}

.bilingual-button small {
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.45px;
  opacity: 0.72;
  text-transform: uppercase;
}

.global-proof-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid rgba(151, 184, 219, 0.52);
  border-radius: 12px;
  background: rgba(151, 184, 219, 0.42);
  box-shadow: 0 18px 44px rgba(37, 104, 184, 0.08);
}

.global-proof-list div {
  min-width: 0;
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.9);
}

.global-proof-list strong,
.global-proof-list small {
  display: block;
}

.global-proof-list strong {
  color: var(--ink);
  font-size: 13px;
}

.global-proof-list small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.25px;
  text-transform: uppercase;
}

.hero-airport-frame {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(151, 184, 219, 0.65);
  border-radius: 28px 28px 28px 8px;
  background: #dfeef8;
  box-shadow: 0 32px 88px rgba(16, 37, 63, 0.18);
}

.hero-airport-frame::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 26, 49, 0.02) 28%, rgba(8, 26, 49, 0.2) 56%, rgba(8, 26, 49, 0.9)),
    linear-gradient(115deg, rgba(53, 210, 255, 0.12), transparent 52%);
  pointer-events: none;
}

.hero-airport-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform 0.6s ease;
}

.hero-airport-frame:hover img {
  transform: scale(1.04);
}

.hero-airport-frame figcaption {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 26px;
  color: #fff;
}

.hero-airport-frame figcaption span {
  display: block;
  margin-bottom: 8px;
  color: var(--mint);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.hero-airport-frame figcaption strong {
  display: block;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.16;
}

.hero-airport-frame figcaption p {
  max-width: 500px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .hero-global .hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-airport-frame {
    min-height: 460px;
  }
}

@media (max-width: 640px) {
  .hero-global .hero-inner {
    width: min(100%, calc(100% - 4px));
    gap: 30px;
    padding: 44px 0 32px;
  }

  .global-kicker {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .global-kicker::before {
    width: 28px;
  }

  .global-kicker small {
    padding: 0;
    border: 0;
  }

  .hero-global .hero-title {
    font-size: clamp(40px, 13vw, 52px);
  }

  .hero-global .position-line {
    margin-top: 12px;
    font-size: 0.56em;
    line-height: 1.3;
  }

  .hero-global .position-line .position-line-first,
  .hero-global .position-line .position-line-second {
    display: block;
    white-space: nowrap;
  }

  .hero-global .hero-copy {
    font-size: 16px;
  }

  .hero-global .actions,
  .hero-global .actions .button {
    width: 100%;
  }

  .global-proof-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-airport-frame {
    min-height: 370px;
    border-radius: 20px 20px 20px 6px;
  }

  .hero-airport-frame figcaption {
    left: 20px;
    right: 20px;
    bottom: 18px;
  }
}
