:root {
  --color-primary: #00d0ff;
  --color-primary-hover: #00bce6;
  --color-secondary: #0098ff;
  --color-navy: #003c55;
  --color-midnight: #062b3d;
  --color-ink: #062b3d;
  --color-body: #4b6472;
  --color-muted: #8ca2af;
  --color-line: #d6e2ea;
  --color-soft: #f5f9fc;
  --color-white: #ffffff;
  --color-success: #16c784;
  --color-warning: #ffb547;
  --color-error: #ff5a5f;
  --color-info: #0055ff;
  --shadow-sm: 0 2px 8px rgba(6, 43, 61, 0.06);
  --shadow-md: 0 16px 44px rgba(6, 43, 61, 0.1);
  --radius: 8px;
  --max: 1200px;
  --font-sans: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-white);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
  font-family: var(--font-sans);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

body:not(.header-scrolled) .site-header {
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
}

body.header-scrolled .site-header {
  background: rgba(7, 14, 26, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(0, 24, 39, 0.18);
  backdrop-filter: blur(14px);
}

.nav-shell {
  max-width: var(--max);
  min-height: 72px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 190px;
  text-decoration: none;
}

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

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 150ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
}

body.header-scrolled .nav-links a {
  color: rgba(255, 255, 255, 0.76);
}

body.header-scrolled .nav-links a:hover,
body.header-scrolled .nav-links a.active {
  color: var(--color-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.language-switch button {
  min-width: auto;
  padding: 0 9px;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.66);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
  transition: color 150ms ease;
}

.language-switch button + button {
  border-left: 1px solid rgba(255, 255, 255, 0.26);
}

.language-switch button:hover {
  color: var(--color-white);
}

.language-switch button.active {
  color: var(--color-primary);
  background: transparent;
  font-weight: 500;
}

body.header-scrolled .language-switch button {
  color: rgba(255, 255, 255, 0.62);
}

body.header-scrolled .language-switch button + button {
  border-left-color: rgba(255, 255, 255, 0.24);
}

body.header-scrolled .language-switch button:hover,
body.header-scrolled .language-switch button.active {
  color: var(--color-primary);
}

.nav-contact-link {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  transition: color 150ms ease;
}

.nav-contact-link:hover {
  color: var(--color-primary);
}

body.header-scrolled .nav-contact-link {
  color: rgba(255, 255, 255, 0.8);
}

body.header-scrolled .nav-contact-link:hover {
  color: var(--color-primary);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.mobile-toggle svg {
  margin: auto;
}

body.header-scrolled .mobile-toggle {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.mobile-panel {
  display: none;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 96px 0;
}

.section.tight {
  padding: 72px 0;
}

.section.soft {
  background: var(--color-soft);
}

.section.dark {
  color: var(--color-white);
  background: var(--color-midnight);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: #007aaa;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
}

.dark .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--color-primary);
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
}

.section-title {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  font-weight: 500;
}

.title-biline {
  white-space: pre-line;
}

.dark .section-title {
  color: var(--color-white);
}

.section-lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--color-body);
  font-size: 16px;
  line-height: 1.8;
}

.dark .section-lead,
.hero .section-lead,
.page-hero .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.section-head.center {
  display: block;
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head.center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  min-width: 120px;
  padding: 11px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  color: #001a36;
  background: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
}

.btn-secondary {
  color: var(--color-white);
  background: var(--color-navy);
}

.btn-outline {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(0, 208, 255, 0.1);
}

.btn-ghost {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.icon-line {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: var(--color-white);
  background:
    radial-gradient(circle at 83% 22%, rgba(0, 208, 255, 0.18), transparent 32%),
    radial-gradient(circle at 68% 74%, rgba(0, 85, 255, 0.2), transparent 36%),
    linear-gradient(120deg, #031f31 0%, #052c42 42%, #00364f 72%, #001827 100%);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 31, 49, 0.97) 0%, rgba(3, 31, 49, 0.82) 37%, rgba(0, 60, 85, 0.5) 64%, rgba(0, 152, 255, 0.1) 100%),
    radial-gradient(ellipse at 78% 45%, rgba(0, 208, 255, 0.22), transparent 34%),
    radial-gradient(ellipse at 88% 72%, rgba(0, 85, 255, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(0, 208, 255, 0.05), rgba(0, 0, 0, 0.12));
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 74% 48%, rgba(0, 208, 255, 0.1), transparent 38%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 720px);
  align-items: center;
  justify-content: start;
  min-height: calc(100vh - 72px);
  min-height: calc(100svh - 72px);
  padding-top: 78px;
  padding-bottom: 54px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.12;
  font-weight: 500;
}

.hero h1 {
  line-height: 1.22;
}

.accent {
  color: var(--color-primary);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.signal-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.signal-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--color-primary);
  border: 1px solid rgba(0, 208, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(0, 208, 255, 0.08);
}

.signal-item h3 {
  margin: 0 0 4px;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 500;
}

.signal-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.kpi-band {
  position: relative;
  z-index: 3;
  margin-top: -28px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-md);
}

.kpi-card {
  min-height: 142px;
  padding: 28px 24px;
  border-right: 1px solid var(--color-line);
  text-align: center;
}

.kpi-card-primary {
  background: var(--color-white);
}

.kpi-card:last-child {
  border-right: 0;
}

.kpi-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  color: var(--color-secondary);
  font-size: clamp(34px, 4.5vw, 48px);
  line-height: 1;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.kpi-unit {
  color: var(--color-secondary);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 500;
}

.kpi-card p {
  margin: 16px 0 0;
  color: var(--color-body);
  font-size: 15px;
  font-weight: 500;
}

.kpi-card small {
  display: block;
  margin-top: 9px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.55;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: start;
  gap: 56px;
}

.copy-stack p {
  margin: 0 0 18px;
  color: var(--color-body);
  font-size: 16px;
  line-height: 1.85;
}

.about-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-copy .value-grid {
  margin-top: 34px;
  text-align: left;
}

.value-grid,
.product-grid,
.trust-grid,
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.card-body {
  padding: 24px;
}

.card:hover {
  border-color: rgba(0, 208, 255, 0.56);
  box-shadow: 0 12px 32px rgba(0, 152, 255, 0.12);
}

.card h3,
.card h4 {
  margin: 0;
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 500;
}

.card p {
  margin: 12px 0 0;
  color: var(--color-body);
  font-size: 14px;
  line-height: 1.75;
}

.line-icon-box {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--color-secondary);
  border: 1px solid rgba(0, 152, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(0, 208, 255, 0.08);
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-card .text-link {
  margin-top: auto;
}

.product-points {
  display: grid;
  gap: 7px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.product-points li {
  position: relative;
  padding-left: 18px;
  color: var(--color-body);
  font-size: 13px;
}

.product-points li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--color-secondary);
}

.pillar-grid {
  align-items: stretch;
}

.pillar-card {
  border-left: 4px solid var(--color-primary);
}

.pillar-card .card-body {
  padding-left: 22px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #007aaa;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.text-link:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

.market-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 38px;
  align-items: stretch;
  margin-top: 42px;
}

.market-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 35%, rgba(0, 208, 255, 0.16), transparent 28%),
    radial-gradient(circle at 70% 62%, rgba(22, 199, 132, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.04);
}

.world-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.95;
}

.market-grid-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 1;
}

.market-land {
  fill: rgba(255, 255, 255, 0.08);
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 1.2;
}

.market-route {
  fill: none;
  stroke: url(#mapRoute);
  stroke-width: 2.4;
  stroke-linecap: round;
}

.market-route.secondary {
  stroke: rgba(0, 208, 255, 0.22);
  stroke-dasharray: 8 10;
}

.market-node.node-live {
  color: var(--color-success);
}

.market-node.node-expanding {
  color: var(--color-warning);
}

.market-node.node-planning {
  color: var(--color-primary);
}

.map-dot {
  fill: currentColor;
}

.map-pulse {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transform-origin: center;
  animation: pulse 2.4s ease-out infinite;
}

.market-label rect {
  fill: rgba(6, 43, 61, 0.82);
  stroke: rgba(255, 255, 255, 0.14);
}

.market-label text {
  fill: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 500;
}

.market-label text + text {
  fill: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 400;
}

.map-pulse.delay-1 {
  animation-delay: 0.8s;
}

.map-pulse.delay-2 {
  animation-delay: 1.6s;
}

@keyframes pulse {
  0% {
    r: 6;
    opacity: 0.85;
  }
  100% {
    r: 30;
    opacity: 0;
  }
}

.market-cards {
  display: grid;
  gap: 14px;
}

.market-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--color-success);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(22, 199, 132, 0.11), rgba(255, 255, 255, 0.05) 34%),
    rgba(255, 255, 255, 0.05);
}

.market-card.expanding {
  border-left-color: var(--color-warning);
  background:
    linear-gradient(90deg, rgba(255, 181, 71, 0.12), rgba(255, 255, 255, 0.05) 34%),
    rgba(255, 255, 255, 0.05);
}

.market-card.planning {
  border-left-color: var(--color-primary);
  background:
    linear-gradient(90deg, rgba(0, 208, 255, 0.11), rgba(255, 255, 255, 0.05) 34%),
    rgba(255, 255, 255, 0.05);
}

.market-card h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 8px;
  color: var(--color-white);
  font-size: 17px;
  font-weight: 500;
}

.market-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag,
.status-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
}

.tag {
  padding: 5px 10px;
  color: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.status-badge {
  padding: 4px 9px;
}

.status-live {
  color: var(--color-success);
  border: 1px solid rgba(22, 199, 132, 0.28);
  background: rgba(22, 199, 132, 0.14);
}

.status-expanding {
  color: var(--color-warning);
  border: 1px solid rgba(255, 181, 71, 0.28);
  background: rgba(255, 181, 71, 0.12);
}

.status-planning {
  color: var(--color-primary);
  border: 1px solid rgba(0, 208, 255, 0.28);
  background: rgba(0, 208, 255, 0.14);
}

#milestones .section-head.center {
  max-width: 860px;
  margin-bottom: 52px;
}

#milestones .section-title {
  max-width: 780px;
  margin: 0 auto;
}

#milestones .section-lead {
  max-width: 700px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 56px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 2px;
  background: #d7e6ef;
}

.timeline-item {
  position: relative;
  z-index: 1;
  padding: 0 22px;
  text-align: center;
}

.timeline-dot {
  position: relative;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0 auto 34px;
  border: 3px solid var(--color-primary);
  border-radius: 999px;
  background: var(--color-white);
  box-shadow: 0 0 0 6px var(--color-soft);
}

.timeline-dot::after {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(0, 208, 255, 0.14);
}

.timeline-item.is-final .timeline-dot {
  border-color: var(--color-warning);
}

.timeline-item.is-final .timeline-dot::after {
  background: var(--color-warning);
  box-shadow: 0 0 0 4px rgba(255, 181, 71, 0.16);
}

.timeline-item h3 {
  margin: 0 0 10px;
  color: var(--color-primary);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
}

.timeline-item.is-final h3 {
  color: var(--color-warning);
}

.timeline-item h4 {
  margin: 0 0 12px;
  color: var(--color-ink);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 500;
}

.timeline-item p {
  max-width: 260px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.75;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 36px;
  align-items: stretch;
}

.co-create {
  position: relative;
  overflow: hidden;
}

.co-create::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(0, 152, 255, 0.14), transparent 54%),
    linear-gradient(90deg, transparent, rgba(0, 208, 255, 0.16), transparent) top / 100% 1px no-repeat;
  pointer-events: none;
}

.co-create .container {
  position: relative;
  z-index: 1;
}

.cta-entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.cta-entry {
  display: block;
  min-height: 178px;
  padding: 24px 22px;
  color: var(--color-white);
  text-align: center;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.cta-entry:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 208, 255, 0.42);
  background: rgba(0, 208, 255, 0.08);
}

.cta-entry .line-icon-box {
  margin: 0 auto 16px;
  color: var(--color-primary);
  background: rgba(0, 208, 255, 0.08);
}

.cta-entry strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
}

.cta-entry small {
  display: block;
  max-width: 220px;
  margin: 8px auto 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.contact-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
}

.contact-row .signal-icon {
  width: 42px;
  height: 42px;
}

.contact-row strong {
  display: block;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
}

.contact-row a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  font-size: 14px;
}

.contact-row a:hover {
  color: var(--color-primary);
}

.form {
  display: grid;
  gap: 14px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 208, 255, 0.18);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.form-message {
  min-height: 20px;
  color: var(--color-success);
  font-size: 13px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  background:
    linear-gradient(90deg, rgba(6, 43, 61, 0.98), rgba(6, 43, 61, 0.86)),
    radial-gradient(circle at 80% 36%, rgba(0, 208, 255, 0.18), transparent 36%),
    var(--color-midnight);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: radial-gradient(circle, rgba(0, 208, 255, 0.45) 1px, transparent 1px);
  background-size: 34px 34px;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding-top: 92px;
  padding-bottom: 86px;
}

.breadcrumb {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.product-tabs {
  position: sticky;
  top: 72px;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(12px);
}

.tabs-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 28px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.tabs-inner a {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: var(--color-body);
  text-decoration: none;
  font-size: 13px;
  background: var(--color-white);
}

.tabs-inner a:hover {
  color: var(--color-secondary);
  border-color: rgba(0, 152, 255, 0.36);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(230px, 0.35fr) minmax(0, 1fr);
  gap: 34px;
  padding: 42px 0;
  border-bottom: 1px solid var(--color-line);
}

.product-detail:last-child {
  border-bottom: 0;
}

.product-kicker {
  color: var(--color-secondary);
  font-size: 13px;
  font-weight: 500;
}

.product-detail h2 {
  margin: 10px 0 0;
  color: var(--color-ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
  font-weight: 500;
}

.product-detail p {
  margin: 0;
  color: var(--color-body);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.detail-card {
  padding: 20px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
}

.detail-card h3 {
  margin: 0 0 9px;
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 500;
}

.detail-card p,
.detail-card li {
  color: var(--color-body);
  font-size: 14px;
  line-height: 1.75;
}

.detail-card ul {
  margin: 0;
  padding-left: 18px;
}

.value-table {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.value-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-line);
}

.value-row:last-child {
  border-bottom: 0;
}

.value-row strong {
  color: var(--color-ink);
  font-weight: 500;
}

.value-row span {
  color: var(--color-body);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.flow-step {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.flow-step::after {
  content: "";
  position: absolute;
  top: 34px;
  right: -9px;
  width: 18px;
  height: 1px;
  background: rgba(0, 208, 255, 0.62);
}

.flow-step:last-child::after {
  display: none;
}

.flow-step span {
  color: var(--color-primary);
  font-size: 12px;
}

.flow-step h3 {
  margin: 10px 0 8px;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
}

.flow-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.job-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.job-meta {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
  gap: 12px;
  margin: 18px 0 20px;
}

.job-meta-group {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
}

.job-meta-label {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.job-meta-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.job-meta-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  max-width: 100%;
  padding: 5px 10px;
  color: #007aaa;
  border-radius: 999px;
  background: rgba(0, 208, 255, 0.1);
  font-size: 12px;
  line-height: 1.45;
}

.job-section {
  margin-top: 18px;
}

.job-section strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 500;
}

.job-section ul {
  margin: 0;
  padding-left: 18px;
}

.job-section li {
  margin: 0 0 8px;
  color: var(--color-body);
  font-size: 14px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--color-midnight);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(0, 0.8fr));
  gap: 32px;
  padding: 58px 28px 34px;
}

.footer-brand img {
  width: 186px;
  height: auto;
}

.footer-brand p {
  max-width: 320px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.footer-col h3 {
  margin: 0 0 16px;
  color: var(--color-white);
  font-size: 13px;
  font-weight: 500;
}

.footer-col a,
.footer-col span {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 28px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--color-primary);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

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

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

@media (max-width: 1040px) {
  .nav-links,
  .nav-actions .nav-contact-link {
    display: none;
  }

  .mobile-toggle {
    display: grid;
  }

  .mobile-panel {
    position: fixed;
    inset: 72px 0 0;
    z-index: 49;
    display: block;
    padding: 24px 28px calc(28px + env(safe-area-inset-bottom));
    background: rgba(6, 43, 61, 0.98);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  body.nav-open .mobile-panel {
    transform: translateX(0);
  }

  .mobile-panel a {
    display: block;
    padding: 14px 0;
    color: rgba(255, 255, 255, 0.76);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    font-size: 18px;
  }

  .mobile-panel .language-switch {
    margin-top: 24px;
  }

  .hero-inner,
  .two-col,
  .market-layout,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .value-grid,
  .trust-grid,
  .jobs-grid,
  .flow-grid,
  .cta-entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .kpi-card:nth-child(2) {
    border-right: 0;
  }

  .kpi-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--color-line);
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
    gap: 46px 28px;
    margin-top: 54px;
  }

  .timeline::before {
    display: none;
  }

  .timeline-item {
    padding: 0 12px;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-shell {
    min-height: 66px;
    padding: 0 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 146px;
  }

  .mobile-panel {
    inset: 66px 0 0;
  }

  .container {
    padding: 0 20px;
  }

  .section,
  .section.tight {
    padding: 66px 0;
  }

  .section-head {
    display: block;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-inner {
    min-height: calc(100vh - 66px);
    min-height: calc(100svh - 66px);
    padding-top: 64px;
    padding-bottom: 54px;
    gap: 36px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(30px, 10vw, 40px);
  }

  .hero-actions,
  .form-grid {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .contact-card .btn {
    width: 100%;
  }

  .kpi-band {
    margin-top: 0;
  }

  .kpi-grid,
  .product-grid,
  .value-grid,
  .trust-grid,
  .jobs-grid,
  .detail-grid,
  .flow-grid,
  .cta-entry-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .job-meta {
    grid-template-columns: 1fr;
  }

  .kpi-card,
  .kpi-card:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .kpi-card:last-child {
    border-bottom: 0;
  }

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

  .market-card h3 {
    display: block;
  }

  .market-card h3 .status-badge {
    margin-top: 8px;
  }

  #milestones .section-head.center {
    margin-bottom: 42px;
  }

  .timeline {
    gap: 34px;
    margin-top: 40px;
  }

  .timeline-item {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 18px;
    padding: 0;
    text-align: left;
  }

  .timeline-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 44px;
    bottom: -24px;
    left: 17px;
    width: 2px;
    background: #d7e6ef;
  }

  .timeline-dot {
    margin: 3px 0 0;
  }

  .timeline-item p {
    max-width: none;
    margin: 0;
  }

  .value-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 48px 20px 26px;
  }

  .footer-bottom {
    display: block;
    padding: 18px 20px 26px;
  }

  .footer-bottom span,
  .footer-bottom a {
    display: block;
    margin-top: 8px;
  }
}
