:root {
  --bg: #05070d;
  --bg-soft: #08111d;
  --bg-deep: #03050a;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --text: #f7f9fc;
  --muted: #a8b2c2;
  --muted-2: #7f8b9c;
  --line: rgba(255, 255, 255, 0.12);
  --cyan: #38d9ff;
  --green: #34f5a6;
  --blue: #68a7ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
  --radius: 28px;
  --max: 1180px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: radial-gradient(circle at 72% 6%, rgba(56, 217, 255, 0.13), transparent 30%),
              radial-gradient(circle at 14% 24%, rgba(52, 245, 166, 0.08), transparent 28%),
              var(--bg);
  color: var(--text);
  line-height: 1.65;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.032) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
  opacity: .38;
  z-index: -1;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 108px 0; position: relative; }
.section-tight { padding: 76px 0; }
.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 800;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 0 24px rgba(56, 217, 255, .7);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(52px, 7.6vw, 112px);
  line-height: .98;
  letter-spacing: -.065em;
  margin-bottom: 28px;
  max-width: 1040px;
}
h2 {
  font-size: clamp(34px, 5vw, 70px);
  line-height: 1.04;
  letter-spacing: -.05em;
  margin-bottom: 22px;
}
h3 {
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -.025em;
  margin-bottom: 14px;
}
.lead { color: #c8d0dc; font-size: clamp(18px, 2vw, 22px); max-width: 850px; }
.muted { color: var(--muted); }
.small { font-size: 14px; color: var(--muted-2); }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 7, 13, .78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 850; letter-spacing: -.02em; white-space: nowrap; }
.brand-mark { width: 34px; height: 34px; border-radius: 11px; flex: 0 0 auto; box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 12px 30px rgba(56,217,255,.18); }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 26px; color: #d6dbe4; font-size: 14px; }
.nav-links a { opacity: .86; }
.nav-links a:hover { opacity: 1; color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.mobile-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: var(--panel);
  color: var(--text);
  font-weight: 760;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); border-color: rgba(56,217,255,.55); }
.btn-primary { background: linear-gradient(135deg, var(--cyan), var(--green)); color: #021014; border: 0; }
.btn-ghost { background: rgba(255,255,255,.06); color: #fff; }

.hero { min-height: calc(100vh - 76px); display: grid; align-items: center; padding: 70px 0 96px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-title { max-width: 780px; }
.hero-title .hero-line { display: block; }
.hero-title .highlight {
  color: var(--cyan);
  position: relative;
  display: inline-block;
  padding-bottom: .04em;
  z-index: 0;
}
.hero-title .highlight::after {
  content: "";
  position: absolute;
  left: .04em;
  right: .02em;
  bottom: -.08em;
  height: .12em;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  z-index: -1;
  opacity: .98;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pill { border: 1px solid var(--line); background: rgba(255,255,255,.045); color: #b9c2d0; padding: 8px 12px; border-radius: 999px; font-size: 13px; }

.flow-visual, .deploy-visual, .medical-map, .diagram-visual {
  position: relative;
  border: 1px solid rgba(56,217,255,.22);
  border-radius: var(--radius);
  background: radial-gradient(circle at 50% 42%, rgba(56,217,255,.18), transparent 38%), linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,.04);
  overflow: hidden;
}
.flow-visual { min-height: 530px; padding: 30px; }
.flow-visual::before, .deploy-visual::before, .medical-map::before, .diagram-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(56,217,255,.11) 1px, transparent 1px), linear-gradient(90deg, rgba(56,217,255,.11) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .22;
}
.flow-canvas { position: relative; z-index: 1; height: 100%; min-height: 470px; display: grid; grid-template-rows: auto 1fr auto; gap: 24px; }
.flow-title { display: inline-flex; width: fit-content; padding: 8px 12px; border-radius: 999px; color: #d9fbff; border: 1px solid rgba(56,217,255,.25); background: rgba(5,7,13,.45); font-weight: 800; letter-spacing: .08em; }
.flow-center { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 132px; height: 132px; border-radius: 34px; display:grid; place-items:center; text-align:center; background: linear-gradient(135deg, rgba(56,217,255,.28), rgba(52,245,166,.18)); border: 1px solid rgba(255,255,255,.16); font-size: 28px; font-weight: 900; box-shadow: 0 0 80px rgba(56,217,255,.18); }
.flow-steps { list-style: none; padding: 0; margin: 80px 0 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 90px; }
.flow-step { position: relative; padding: 13px 15px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(5,7,13,.62); color: #dfe8f5; font-weight: 760; }
.flow-step::before { content:""; position:absolute; width:8px; height:8px; border-radius:50%; background: var(--cyan); box-shadow:0 0 18px rgba(56,217,255,.9); left: -5px; top: 50%; transform: translateY(-50%); animation: pulse 2.4s infinite ease-in-out; }
.flow-line { position: absolute; inset: 120px 70px 110px; border: 1px solid rgba(56,217,255,.18); border-radius: 36px; pointer-events: none; }
.flow-line::after { content:""; position:absolute; width:80px; height:3px; border-radius:999px; background: linear-gradient(90deg, transparent, var(--cyan), var(--green), transparent); left: 0; top: -2px; animation: flowMove 5.8s infinite linear; }
.flow-bottom { display:grid; grid-template-columns: repeat(3,1fr); gap: 12px; align-self:end; }
.flow-bottom div { padding: 14px 10px; text-align: center; background: rgba(5,7,13,.58); border:1px solid var(--line); border-radius:16px; color:#cfe8ef; font-size: 13px; }

.split { display:grid; grid-template-columns: .9fr 1.1fr; gap:54px; align-items:center; }
.panel { border:1px solid var(--line); background: var(--panel); border-radius: var(--radius); padding:34px; box-shadow: inset 0 1px 0 rgba(255,255,255,.05); }
.panel-visual { min-height: 380px; display:grid; place-items:center; background: radial-gradient(circle at center, rgba(56,217,255,.14), transparent 34%), linear-gradient(135deg, rgba(56,217,255,.10), rgba(52,245,166,.05)); }
.deploy-visual { width: 100%; min-height: 390px; padding: 28px; }
.deploy-layers { position: relative; z-index: 1; display:grid; gap: 14px; margin-top: 24px; }
.deploy-layer { display:flex; align-items:center; justify-content:space-between; gap:14px; border:1px solid rgba(56,217,255,.18); border-radius:18px; padding:16px 18px; background:rgba(5,7,13,.58); }
.deploy-layer strong { color:#fff; }
.deploy-layer span { color: var(--muted); font-size: 13px; }
.deploy-bar { height: 3px; width: 100%; background: rgba(56,217,255,.12); border-radius:999px; overflow:hidden; }
.deploy-bar::after { content:""; display:block; width: 38%; height:100%; border-radius:999px; background:linear-gradient(90deg,var(--cyan),var(--green)); animation: barFlow 3.2s infinite ease-in-out; }
.deploy-core { position: relative; z-index:1; display:inline-flex; padding: 10px 14px; border-radius: 999px; background: rgba(56,217,255,.12); border: 1px solid rgba(56,217,255,.25); color:#dffaff; font-weight:800; }

.diagram-visual { min-height: 360px; display:grid; place-items:center; padding:28px; }
.diagram-radar { width:min(78%,380px); aspect-ratio:1; border-radius:50%; border:1px dashed rgba(56,217,255,.34); position:relative; }
.diagram-radar::before { content:""; position:absolute; inset:22%; border:1px solid rgba(52,245,166,.38); border-radius:50%; }
.diagram-radar::after { content:""; position:absolute; inset:48%; border-radius:50%; background:linear-gradient(135deg,var(--cyan),var(--green)); box-shadow:0 0 40px rgba(56,217,255,.4); }

.medical-map { min-height: 460px; padding: 28px; }
.map-grid { position: relative; z-index:1; display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; height:100%; align-content:center; }
.map-node { min-height: 78px; display:grid; place-items:center; text-align:center; border:1px solid rgba(56,217,255,.2); border-radius:18px; background:rgba(5,7,13,.58); color:#dff7ff; font-weight:780; }
.map-node.core { grid-column: 2; background:linear-gradient(135deg,rgba(56,217,255,.25),rgba(52,245,166,.15)); color:#fff; box-shadow:0 0 70px rgba(56,217,255,.16); }
.map-caption { position: relative; z-index:1; margin-top: 18px; color: var(--muted); font-size: 14px; }

.cards { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.card { border:1px solid var(--line); background:linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.035)); border-radius:24px; padding:28px; min-height:230px; position:relative; overflow:hidden; }
.card::before { content:""; position:absolute; top:0; left:28px; width:54px; height:3px; background:linear-gradient(90deg,var(--cyan),var(--green)); }
.card .num { font-size:13px; letter-spacing:.12em; color:var(--cyan); margin-bottom:26px; }
.card p { color: var(--muted); margin-bottom:0; }
.card-list { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.module { border:1px solid rgba(255,255,255,.11); background:rgba(255,255,255,.045); border-radius:18px; padding:18px; color:#d9dee7; min-height:96px; }
.module small { display:block; color:var(--cyan); margin-bottom:8px; letter-spacing:.08em; }
.timeline { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:34px; }
.timeline-item { border-top:1px solid rgba(56,217,255,.35); padding-top:22px; }
.timeline-item strong { display:block; font-size:clamp(34px,4vw,56px); line-height:1; letter-spacing:-.06em; margin-bottom:18px; }
.timeline-item p { color: var(--muted); }
.banner { border-radius:34px; border:1px solid rgba(56,217,255,.22); padding:54px; background:radial-gradient(circle at 80% 20%, rgba(56,217,255,.18), transparent 30%), linear-gradient(135deg, rgba(56,217,255,.09), rgba(52,245,166,.045)); display:flex; align-items:center; justify-content:space-between; gap:34px; }
.banner h2 { margin-bottom:0; }
.banner p { margin-bottom:0; max-width:520px; }
.banner .btn { min-width: 140px; flex: 0 0 auto; }
.footer { border-top:1px solid var(--line); padding:48px 0; color:var(--muted); }
.footer-grid { display:grid; grid-template-columns:1.3fr repeat(3,1fr); gap:32px; }
.footer a { display:block; margin:8px 0; color:var(--muted); }
.footer a:hover { color:#fff; }
.page-hero { padding:112px 0 72px; }
.page-hero h1 { font-size:clamp(48px,7vw,94px); }
.two-col { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.insights { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.article-card { min-height:280px; }
.contact-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:34px; align-items:start; }
.form { display:grid; gap:14px; }
.form label { display:grid; gap:8px; color:#d7dde6; }
.form input, .form textarea, .form select { width:100%; border:1px solid var(--line); border-radius:16px; padding:14px 16px; background:rgba(255,255,255,.055); color:#fff; }
.form textarea { min-height:156px; resize:vertical; }
.notice { padding:14px 16px; border-radius:14px; border:1px solid rgba(56,217,255,.28); background:rgba(56,217,255,.08); color:#cdefff; }
.reveal { opacity:0; transform:translateY(24px); transition:opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity:1; transform:none; }

@keyframes pulse { 0%,100% { transform: translateY(-50%) scale(1); opacity: .72;} 50% { transform: translateY(-50%) scale(1.4); opacity: 1;} }
@keyframes flowMove { 0% { left: 0; top: -2px;} 25% { left: calc(100% - 80px); top: -2px;} 50% { left: calc(100% - 80px); top: calc(100% - 1px);} 75% { left: 0; top: calc(100% - 1px);} 100% { left: 0; top: -2px;} }
@keyframes barFlow { 0%,100% { transform: translateX(0); } 50% { transform: translateX(165%); } }

@media (max-width: 920px) {
  .nav-links, .nav-actions { display:none; }
  .mobile-toggle { display:inline-flex; border:1px solid var(--line); background:rgba(255,255,255,.05); color:white; width:42px; height:42px; border-radius:14px; align-items:center; justify-content:center; }
  .nav.open .nav-links { display:flex; position:absolute; top:76px; left:20px; right:20px; flex-direction:column; padding:22px; border:1px solid var(--line); border-radius:22px; background:rgba(5,7,13,.96); align-items:stretch; }
  .hero-grid, .split, .contact-grid { grid-template-columns:1fr; }
  .flow-visual { min-height: 510px; }
  .cards, .timeline, .footer-grid { grid-template-columns:1fr; }
  .card-list { grid-template-columns:repeat(2,1fr); }
  .banner { flex-direction:column; align-items:flex-start; padding:34px; }
}
@media (max-width: 560px) {
  .container { width:min(100% - 28px, var(--max)); }
  .section { padding:74px 0; }
  h1 { font-size:46px; line-height:1.06; letter-spacing:-.055em; }
  h2 { font-size:38px; }
  .hero { padding-top:56px; }
  .hero-title .highlight::after { bottom:-.02em; height:.10em; }
  .flow-visual { min-height: 620px; padding: 20px; }
  .flow-center { position: static; transform: none; margin: 8px auto 14px; width: 116px; height: 116px; font-size: 24px; }
  .flow-line { display:none; }
  .flow-steps { margin: 12px 0 0; grid-template-columns:1fr; gap: 12px; }
  .flow-bottom, .card-list, .insights, .two-col { grid-template-columns:1fr; }
  .visual-card { min-height:520px; }
  .brand span:last-child { font-size: 14px; }
  .brand-mark { width: 30px; height: 30px; }
  .banner .btn { width: auto; min-width: 150px; }
}


/* v3: balance hero title with right-side visual */
.hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 64px;
}
.hero-title {
  font-size: clamp(56px, 5.8vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  max-width: 620px;
  margin-bottom: 26px;
}
.hero-title .hero-line {
  display: block;
  white-space: nowrap;
}
.hero-title .highlight::after {
  bottom: -0.045em;
  height: 0.105em;
}
.flow-visual {
  min-height: 470px;
  align-self: center;
}
.flow-canvas {
  min-height: 410px;
}
.flow-center {
  width: 116px;
  height: 116px;
  border-radius: 30px;
  font-size: 25px;
  line-height: 1.12;
}
.flow-step {
  z-index: 2;
}
@media (max-width: 1050px) {
  .hero-title { font-size: clamp(50px, 6.4vw, 72px); max-width: 560px; }
  .hero-grid { gap: 44px; }
}
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-title { max-width: 760px; }
  .flow-visual { min-height: 440px; }
}
@media (max-width: 560px) {
  h1.hero-title {
    font-size: clamp(40px, 12vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.05em;
  }
  .hero-title .hero-line { white-space: nowrap; }
  .hero-title .highlight::after { bottom: -0.025em; height: 0.09em; }
}
@media (max-width: 380px) {
  h1.hero-title { font-size: 38px; }
}


/* v4: prevent awkward one-character line breaks in large Chinese headings */
h1, h2, h3 {
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
}

/* General heading scale: keep premium feel but avoid orphan characters */
h1 {
  font-size: clamp(46px, 6.4vw, 86px);
  line-height: 1.08;
  letter-spacing: -0.048em;
}

h2 {
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.14;
  letter-spacing: -0.04em;
  max-width: 1120px;
}

/* Home hero title must remain two clean lines on desktop */
h1.hero-title {
  font-size: clamp(56px, 5.2vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.052em;
  max-width: 760px;
}
.hero-title .hero-line {
  display: block;
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
}
.hero-title .highlight {
  display: inline-block;
  padding-bottom: 0.05em;
}
.hero-title .highlight::after {
  bottom: -0.035em;
  height: 0.095em;
}

/* Page hero headings should not be absurdly large; this fixes single-character wrap such as “始/断/序” */
.page-hero h1,
.contact-grid h2,
.banner h2,
.split h2 {
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
}
.page-hero h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.13;
  letter-spacing: -0.038em;
  max-width: 1180px;
}
.contact-grid h2,
.panel h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.16;
}
.split h2 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.15;
}
.banner h2 {
  font-size: clamp(30px, 3.5vw, 50px);
  line-height: 1.14;
}

/* Keep CTA text on one line */
.btn,
.banner .btn,
.nav-actions .btn {
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 1050px) {
  h1.hero-title {
    font-size: clamp(52px, 6vw, 70px);
    max-width: 680px;
  }
  .page-hero h1 {
    font-size: clamp(40px, 6vw, 64px);
  }
}

@media (max-width: 920px) {
  h1.hero-title {
    max-width: 100%;
  }
  .page-hero h1 {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  h1.hero-title {
    font-size: clamp(38px, 10.8vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.045em;
  }
  .hero-title .hero-line {
    white-space: normal;
    width: auto;
  }
  .hero-title .highlight {
    display: inline-block;
  }
  .page-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.16;
    letter-spacing: -0.035em;
  }
  h2,
  .split h2,
  .banner h2,
  .contact-grid h2,
  .panel h2 {
    font-size: clamp(28px, 8.2vw, 38px);
    line-height: 1.18;
    letter-spacing: -0.03em;
  }
}

@media (max-width: 380px) {
  h1.hero-title { font-size: 36px; }
  .page-hero h1 { font-size: 32px; }
}

/* v5: richer content visuals, dedicated interview/contact pages, and more stable banner layout */
.order-visual,
.govern-visual {
  position: relative;
  border: 1px solid rgba(56,217,255,.22);
  border-radius: var(--radius);
  background: radial-gradient(circle at 50% 42%, rgba(56,217,255,.16), transparent 38%), linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,.04);
  overflow: hidden;
}
.order-visual::before,
.govern-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(56,217,255,.11) 1px, transparent 1px), linear-gradient(90deg, rgba(56,217,255,.11) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .2;
}
.order-visual {
  min-height: 420px;
  padding: 28px;
}
.order-head,
.govern-core {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(56,217,255,.10);
  border: 1px solid rgba(56,217,255,.25);
  color: #e5fcff;
  font-weight: 800;
}
.order-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.order-grid::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 56px;
  bottom: 56px;
  width: 2px;
  background: linear-gradient(180deg, rgba(56,217,255,.15), rgba(56,217,255,.8), rgba(52,245,166,.55));
}
.order-stage {
  position: relative;
  padding: 18px 18px 18px 46px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(5,7,13,.58);
}
.order-stage::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 26px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(56,217,255,.85);
}
.order-stage small,
.govern-item span {
  display: block;
  color: var(--muted-2);
  margin-bottom: 8px;
}
.order-stage strong,
.govern-item strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
}
.order-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.order-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
  color: #d2ecf5;
  font-size: 13px;
}
.govern-visual {
  min-height: 420px;
  padding: 28px;
  display: grid;
  align-items: center;
}
.govern-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin-right: 120px;
}
.govern-item {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(56,217,255,.18);
  background: rgba(5,7,13,.6);
}
.govern-core {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  min-height: 120px;
  border-radius: 30px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
  background: linear-gradient(135deg, rgba(56,217,255,.28), rgba(52,245,166,.16));
  box-shadow: 0 0 70px rgba(56,217,255,.18);
}
.company-grid,
.jobs-grid {
  display: grid;
  gap: 18px;
}
.company-grid { grid-template-columns: 1.1fr .9fr; }
.jobs-grid { grid-template-columns: repeat(3, 1fr); }
.info-list { display: grid; gap: 16px; }
.info-item {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.info-item:last-child { border-bottom: 0; }
.info-item strong { font-size: 14px; color: #fff; }
.info-item span, .info-item a { color: var(--muted); }
.stack-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.banner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}
.banner p {
  max-width: 760px;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}
.form .btn + .btn { margin-top: -2px; }

@media (max-width: 1100px) {
  .banner {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .govern-stack { margin-right: 0; padding-bottom: 138px; }
  .govern-core {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-top: 8px;
  }
}
@media (max-width: 920px) {
  .company-grid,
  .jobs-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .order-visual,
  .govern-visual { padding: 20px; }
  .order-stage { padding: 16px 14px 16px 40px; }
  .order-stage strong,
  .govern-item strong { font-size: 16px; }
  .govern-stack { padding-bottom: 0; }
  .govern-core {
    width: 100%;
    min-height: 92px;
    border-radius: 22px;
  }
}

/* v6 fixes: safer banner layout + cleaner contact page structure */
.banner > :first-child {
  min-width: 0;
  max-width: 640px;
}
.banner .muted {
  min-width: 0;
}
.banner-balanced {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr) auto;
  gap: 34px;
}
.banner-title-2line {
  max-width: 11ch;
  word-break: normal;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}
.banner-title-2line span {
  display: block;
}
.contact-sections {
  display: grid;
  gap: 18px;
}
.contact-sections .panel {
  padding: 34px;
}
.vision-points {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}
.vision-point {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.vision-point strong {
  display: block;
  color: #fff;
  margin-bottom: 6px;
  font-size: 17px;
}
.vision-point span {
  color: var(--muted);
}
.jobs-grid-roles {
  margin-top: 8px;
  margin-bottom: 18px;
}
.jobs-grid-roles .job-role {
  min-height: 320px;
}
.jobs-grid-roles .job-role p + p {
  margin-top: 14px;
}

@media (max-width: 1100px) {
  .banner-balanced {
    grid-template-columns: 1fr;
  }
  .banner-title-2line {
    max-width: none;
  }
}


/* v7: final polish for contact page and banner collision prevention */
.banner {
  overflow: hidden;
}
.banner-balanced {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1fr) auto;
  gap: 42px;
  align-items: center;
}
.banner-balanced > div,
.banner-balanced > p,
.banner-balanced > a {
  position: relative;
  z-index: 1;
}
.banner-balanced p {
  max-width: 620px;
  justify-self: start;
  font-size: clamp(17px, 1.35vw, 19px);
}
.banner-title-2line {
  max-width: 680px;
  font-size: clamp(34px, 3.25vw, 48px);
  line-height: 1.16;
  letter-spacing: -0.035em;
}
.banner-title-2line span {
  display: block;
}

/* Contact page: four clear sections */
.contact-hero h1 {
  max-width: 900px;
}
.contact-anchor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.contact-anchor-list a,
.capability-pills span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  color: #cbd5e1;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 14px;
}
.contact-anchor-list a:hover {
  color: #fff;
  border-color: rgba(56,217,255,.5);
}
.contact-block {
  display: grid;
  gap: 22px;
}
.contact-section-title {
  max-width: 900px;
}
.contact-section-title h2 {
  max-width: 900px;
  margin-bottom: 0;
}
.capability-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.vision-grid,
.role-grid,
.contact-info-grid {
  display: grid;
  gap: 18px;
}
.vision-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.role-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.role-card {
  min-height: 440px;
}
.role-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.role-card li {
  margin: 8px 0;
}
.job-note {
  margin-top: 6px;
}
.contact-info-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.contact-info-grid .panel {
  min-height: 150px;
}
.contact-info-grid strong {
  display: block;
  color: #fff;
  margin-bottom: 12px;
}
.contact-info-grid span,
.contact-info-grid a {
  color: var(--muted);
}

/* Wider safety against text collision in all CTA banners */
.banner h2,
.banner p {
  overflow-wrap: normal;
  word-break: keep-all;
}
@media (max-width: 1180px) {
  .banner-balanced {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .banner-title-2line {
    max-width: 100%;
  }
  .banner-balanced p {
    max-width: 780px;
  }
}
@media (max-width: 920px) {
  .vision-grid,
  .role-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  .role-card {
    min-height: auto;
  }
}
@media (max-width: 560px) {
  .contact-anchor-list a,
  .capability-pills span {
    font-size: 13px;
  }
  .banner-title-2line {
    font-size: clamp(28px, 8vw, 38px);
  }
}


/* v8: remove duplicate CTA entrances, widen key lines, and diversify visuals */

.lead-wide { max-width: 1180px; }
@media (min-width: 1100px) {
  .lead-wide {
    white-space: nowrap;
    font-size: clamp(18px, 1.95vw, 21px);
  }
}
.banner-nocta { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
.banner-nocta .btn { display: none !important; }
@media (max-width: 1180px) {
  .banner-nocta { grid-template-columns: 1fr; }
}

/* Contact hero should directly expose sub-sections without another “联系我们” wrapper title */
.contact-hero h1 {
  max-width: 1200px;
  font-size: clamp(42px, 5.3vw, 82px);
  line-height: 1.08;
}

/* Visual variety system */
.visual-waterfall {
  background: radial-gradient(circle at 18% 18%, rgba(52,245,166,.12), transparent 28%),
              radial-gradient(circle at 84% 68%, rgba(56,217,255,.14), transparent 26%),
              linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}
.visual-waterfall .deploy-layer {
  position: relative;
  overflow: hidden;
  animation: floatCard 5.2s ease-in-out infinite;
}
.visual-waterfall .deploy-layer:nth-child(1) { animation-delay: 0s; }
.visual-waterfall .deploy-layer:nth-child(3) { animation-delay: .8s; }
.visual-waterfall .deploy-layer:nth-child(5) { animation-delay: 1.6s; }
.visual-waterfall .deploy-layer:nth-child(7) { animation-delay: 2.4s; }
.visual-waterfall .deploy-layer:nth-child(9) { animation-delay: 3.2s; }
.visual-waterfall .deploy-layer::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(56,217,255,.12), transparent);
  transform: translateX(-120%); animation: shimmerX 3.6s linear infinite;
}
.visual-waterfall .deploy-core { box-shadow: 0 0 34px rgba(52,245,166,.14); }

.visual-network, .visual-network-alt {
  background: radial-gradient(circle at 50% 50%, rgba(56,217,255,.13), transparent 30%),
              linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}
.visual-network .map-node, .visual-network-alt .map-node { animation: nodePulse 4s ease-in-out infinite; }
.visual-network .map-node:nth-child(3n), .visual-network-alt .map-node:nth-child(3n) { animation-delay: .8s; }
.visual-network .map-node:nth-child(4n), .visual-network-alt .map-node:nth-child(4n) { animation-delay: 1.6s; }
.visual-network .map-node.core, .visual-network-alt .map-node.core { animation: coreGlow 3.8s ease-in-out infinite; }
.visual-network::after, .visual-network-alt::after {
  content: ''; position: absolute; inset: 18px; border-radius: 24px;
  border: 1px dashed rgba(56,217,255,.18); pointer-events: none;
  animation: rotateSlow 24s linear infinite;
}
.visual-network-alt {
  background: radial-gradient(circle at 80% 22%, rgba(52,245,166,.10), transparent 25%),
              radial-gradient(circle at 24% 76%, rgba(56,217,255,.12), transparent 24%),
              linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}

.visual-lifecycle {
  background: radial-gradient(circle at 18% 24%, rgba(56,217,255,.15), transparent 22%),
              radial-gradient(circle at 82% 76%, rgba(52,245,166,.12), transparent 20%),
              linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}
.visual-lifecycle .order-grid::before { animation: pulseLine 3.2s ease-in-out infinite; }
.visual-lifecycle .order-stage { animation: riseFade 4.8s ease-in-out infinite; }
.visual-lifecycle .order-stage:nth-child(1) { animation-delay: 0s; }
.visual-lifecycle .order-stage:nth-child(2) { animation-delay: .7s; }
.visual-lifecycle .order-stage:nth-child(3) { animation-delay: 1.4s; }
.visual-lifecycle .order-stage:nth-child(4) { animation-delay: 2.1s; }

.visual-govern {
  background: radial-gradient(circle at 86% 50%, rgba(52,245,166,.10), transparent 22%),
              radial-gradient(circle at 24% 24%, rgba(56,217,255,.11), transparent 24%),
              linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}
.visual-govern .govern-item { position: relative; overflow: hidden; animation: breatheCard 5s ease-in-out infinite; }
.visual-govern .govern-item:nth-child(2) { animation-delay: .8s; }
.visual-govern .govern-item:nth-child(3) { animation-delay: 1.6s; }
.visual-govern .govern-item:nth-child(4) { animation-delay: 2.4s; }
.visual-govern .govern-item::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: -30%; width: 24%;
  background: linear-gradient(90deg, transparent, rgba(56,217,255,.12), transparent);
  transform: skewX(-18deg); animation: scanAcross 5.6s linear infinite;
}
.visual-govern .govern-core { animation: coreGlow 4.5s ease-in-out infinite; }

.skills-visual {
  background: radial-gradient(circle at 50% 20%, rgba(56,217,255,.09), transparent 24%),
              radial-gradient(circle at 50% 80%, rgba(52,245,166,.10), transparent 26%),
              linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}
.skills-visual .deploy-layer {
  border-color: rgba(52,245,166,.18);
  transform-origin: center;
  animation: stackShift 4.8s ease-in-out infinite;
}
.skills-visual .deploy-layer:nth-child(1) { animation-delay: 0s; }
.skills-visual .deploy-layer:nth-child(2) { animation-delay: .8s; }
.skills-visual .deploy-layer:nth-child(3) { animation-delay: 1.6s; }
.skills-visual .deploy-layer:nth-child(4) { animation-delay: 2.4s; }
.skills-visual .deploy-core { background: rgba(52,245,166,.12); border-color: rgba(52,245,166,.28); }

@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes shimmerX { 0% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }
@keyframes nodePulse { 0%,100% { transform: scale(1); box-shadow: none; } 50% { transform: scale(1.05); box-shadow: 0 0 22px rgba(56,217,255,.14); } }
@keyframes coreGlow { 0%,100% { box-shadow: 0 0 40px rgba(56,217,255,.18); } 50% { box-shadow: 0 0 68px rgba(52,245,166,.22); } }
@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulseLine { 0%,100% { opacity: .45; } 50% { opacity: 1; } }
@keyframes riseFade { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
@keyframes breatheCard { 0%,100% { transform: translateX(0); } 50% { transform: translateX(4px); } }
@keyframes scanAcross { 0% { left: -30%; } 100% { left: 110%; } }
@keyframes stackShift { 0%,100% { transform: translateX(0); } 50% { transform: translateX(6px); } }

@media (max-width: 1100px) {
  .lead-wide { white-space: normal; }
}
@media (prefers-reduced-motion: reduce) {
  .visual-waterfall .deploy-layer,
  .visual-network .map-node, .visual-network-alt .map-node,
  .visual-network::after, .visual-network-alt::after,
  .visual-lifecycle .order-stage, .visual-lifecycle .order-grid::before,
  .visual-govern .govern-item, .visual-govern .govern-item::after, .visual-govern .govern-core,
  .skills-visual .deploy-layer { animation: none !important; }
}


/* v9 refinements */
.banner.banner-nocta h2 { margin-bottom: 0; }
.banner.banner-nocta .muted { max-width: 620px; font-size: clamp(18px, 1.9vw, 21px); }
.banner.banner-nocta .eyebrow { display: none; }
.contact-page-compact, .contact-hero { display:none; }
.job-location {
  margin: -4px 0 10px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
}
.placeholder-page {
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: center;
  padding: 72px 0;
}
.placeholder-card {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 72px 52px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(56,217,255,.22);
  box-shadow: var(--shadow);
}
.placeholder-card h1 {
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(52px, 8vw, 96px);
}
.placeholder-card .lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 620px;
}
@media (max-width: 820px) {
  .placeholder-card { padding: 56px 26px; }
}


/* v10: final typography, modal, and visual polish */
:root {
  --content-wide: 1180px;
}

body {
  text-rendering: geometricPrecision;
}

.section {
  scroll-margin-top: 96px;
}

.lead {
  line-height: 1.72;
}

/* Safer big-heading rhythm across the whole site */
.page-hero h1,
.contact-section-title h2,
.banner h2 {
  text-wrap: balance;
}

@supports not (text-wrap: balance) {
  .page-hero h1,
  .contact-section-title h2,
  .banner h2 {
    word-break: keep-all;
  }
}

/* Top CTA remains the only appointment entrance; modal appears on click */
.appointment-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 5, 10, .74);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.appointment-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.appointment-modal__panel {
  position: relative;
  width: min(620px, 100%);
  min-height: 320px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 72px 40px 52px;
  border-radius: 32px;
  border: 1px solid rgba(56, 217, 255, .26);
  background:
    radial-gradient(circle at 50% 0%, rgba(56, 217, 255, .22), transparent 40%),
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  box-shadow: 0 32px 110px rgba(0,0,0,.58), inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden;
}

.appointment-modal__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(56,217,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(56,217,255,.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .34;
}

.appointment-modal__mark {
  position: absolute;
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 0 34px rgba(56,217,255,.78);
}

.appointment-modal__text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-align: center;
}

.appointment-modal__text span {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: rgba(233, 243, 255, .92);
}

.appointment-modal__text strong {
  font-size: clamp(56px, 7vw, 92px);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: .98;
  white-space: nowrap;
}

.appointment-modal__close {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #e9f3ff;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

/* Compact the repetitive “start from a scenario” banner */
.banner-nocta {
  min-height: 260px;
  padding: clamp(34px, 4vw, 56px);
}

.banner-nocta h2 {
  max-width: 600px;
}

.banner-nocta p {
  color: #b4c0ce;
}

/* Make homepage route section cleaner and prevent accidental two-line lead on desktop */
@media (min-width: 1280px) {
  .lead-wide {
    max-width: none;
    width: 100%;
    white-space: nowrap;
  }
}

/* Console-like visual for Hermes capability grid on homepage */
.console-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(56,217,255,.14), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
}

.console-panel::after {
  content: "";
  position: absolute;
  left: -30%;
  right: -30%;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(56,217,255,.8), rgba(52,245,166,.72), transparent);
  animation: consoleSweep 5.2s linear infinite;
}

.console-panel .module {
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.console-panel .module::after {
  content: "";
  position: absolute;
  inset: auto 12px 12px 12px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56,217,255,.44), transparent);
  opacity: .6;
}

.console-panel .module:hover {
  transform: translateY(-3px);
  border-color: rgba(56,217,255,.35);
  background: rgba(56,217,255,.055);
}

/* Timeline receives a clearer flow signal */
.timeline-flow {
  position: relative;
}

.timeline-flow::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 1px;
  height: 1px;
  background: linear-gradient(90deg, rgba(56,217,255,.05), rgba(56,217,255,.34), rgba(52,245,166,.28), rgba(56,217,255,.05));
}

.timeline-flow .timeline-item {
  position: relative;
}

.timeline-flow .timeline-item::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 0 24px rgba(56,217,255,.5);
}

/* Contact page: remove the old page-hero feeling and make the four sections read like a company page */
.contact-page main > .section:first-child {
  padding-top: 92px;
}

.contact-page .contact-section-title {
  border-left: 3px solid var(--cyan);
  padding-left: 18px;
}

.contact-page .contact-section-title .eyebrow::before {
  display: none;
}

.contact-page .panel,
.contact-page .card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.032));
}

.contact-page .role-card {
  min-height: 460px;
}

.job-location {
  display: inline-flex;
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(56,217,255,.22);
  background: rgba(56,217,255,.07);
}

/* Make each visual family feel less repetitive */
.flow-visual {
  border-radius: 32px;
}

.flow-visual .flow-bottom div {
  transition: transform .24s ease, border-color .24s ease;
}

.flow-visual .flow-bottom div:hover {
  transform: translateY(-3px);
  border-color: rgba(52,245,166,.42);
}

.order-visual .order-tags span {
  animation: tagBreathe 4s ease-in-out infinite;
}

.order-visual .order-tags span:nth-child(2) { animation-delay: .7s; }
.order-visual .order-tags span:nth-child(3) { animation-delay: 1.4s; }
.order-visual .order-tags span:nth-child(4) { animation-delay: 2.1s; }

.visual-govern .govern-core {
  border-radius: 36% 64% 42% 58% / 52% 34% 66% 48%;
}

.skills-visual .deploy-layers {
  perspective: 900px;
}

.skills-visual .deploy-layer {
  transform-style: preserve-3d;
}

/* Placeholder page only shows the requested prompt */
.placeholder-card {
  min-height: 300px;
}

.placeholder-card .eyebrow,
.placeholder-card .lead {
  display: none;
}

/* Mobile refinement */
@media (max-width: 920px) {
  .banner-nocta {
    min-height: auto;
  }
  .contact-page main > .section:first-child {
    padding-top: 68px;
  }
}

@media (max-width: 560px) {
  .appointment-modal__panel {
    min-height: 240px;
    padding: 60px 20px 38px;
  }
  .appointment-modal__text {
    gap: 8px;
  }
  .appointment-modal__text span {
    font-size: clamp(24px, 6.2vw, 30px);
  }
  .appointment-modal__text strong {
    font-size: clamp(42px, 11vw, 60px);
    white-space: normal;
  }
  .banner-nocta h2 {
    max-width: 100%;
  }
  .contact-page .role-card {
    min-height: auto;
  }
}

@keyframes consoleSweep {
  0% { transform: translateY(0) translateX(-20%); opacity: 0; }
  10% { opacity: 1; }
  50% { transform: translateY(340px) translateX(20%); opacity: .9; }
  100% { transform: translateY(680px) translateX(50%); opacity: 0; }
}

@keyframes tagBreathe {
  0%,100% { border-color: rgba(255,255,255,.12); transform: translateY(0); }
  50% { border-color: rgba(56,217,255,.38); transform: translateY(-2px); }
}

.contact-page .contact-section-title p.lead:empty { display:none; }
.contact-page #join .contact-section-title { margin-bottom: 10px; }


/* v12 final closing polish */
body.modal-open {
  overflow: hidden;
}

/* Reduce over-heavy heading density while keeping premium feel */
.page-hero h1 {
  max-width: 1060px;
}

.contact-page .section-tight {
  padding-top: 72px;
  padding-bottom: 72px;
}

.contact-page main > .section:first-child {
  padding-top: 90px;
}

.contact-page .contact-section-title h2 {
  font-size: clamp(34px, 4.2vw, 58px);
}

.contact-page #join .contact-section-title h2 {
  font-size: clamp(36px, 4.6vw, 64px);
}

.role-card {
  min-height: 420px;
}

.role-card h3 {
  font-size: clamp(24px, 2.1vw, 31px);
  letter-spacing: -.035em;
}

/* Modal: stable, elegant two-line message */
.appointment-modal__panel {
  width: min(640px, calc(100vw - 36px));
  min-height: 300px;
  padding: 76px 40px 56px;
  border-radius: 34px;
}

.appointment-modal__text {
  gap: 14px;
}

.appointment-modal__text span {
  display: block;
  color: rgba(209, 232, 242, .88);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1;
  letter-spacing: .08em;
  font-weight: 800;
}

.appointment-modal__text strong {
  display: block;
  color: #fff;
  font-size: clamp(58px, 6.1vw, 82px);
  line-height: .98;
  letter-spacing: -.07em;
  white-space: nowrap;
}

/* Direct placeholder page uses the same cleaner layout */
.coming-soon-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 100%;
  margin-bottom: 0;
}

.coming-soon-title span {
  display: block;
  color: rgba(209, 232, 242, .88);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1;
  letter-spacing: .08em;
  font-weight: 800;
}

.coming-soon-title strong {
  display: block;
  color: #fff;
  font-size: clamp(58px, 6.1vw, 82px);
  line-height: .98;
  letter-spacing: -.07em;
  white-space: nowrap;
}

/* Final card polish */
.card,
.panel,
.banner,
.flow-visual,
.deploy-visual,
.medical-map,
.order-visual,
.govern-visual {
  backdrop-filter: blur(10px);
}

.card:hover,
.panel:hover {
  border-color: rgba(56, 217, 255, .22);
}

/* Keep no-extra-CTA banners visually calm */
.banner-nocta {
  align-items: center;
}

.banner-nocta h2 {
  font-size: clamp(36px, 4.1vw, 58px);
}

.banner-nocta .muted {
  max-width: 680px;
}

/* Mobile final polish */
@media (max-width: 920px) {
  .nav-inner {
    height: 68px;
  }
  .nav.open .nav-links {
    top: 68px;
  }
  .contact-page main > .section:first-child {
    padding-top: 68px;
  }
  .role-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .appointment-modal__panel {
    min-height: 230px;
    padding: 64px 20px 40px;
    border-radius: 26px;
  }

  .appointment-modal__text strong,
  .coming-soon-title strong {
    white-space: normal;
    font-size: clamp(42px, 13vw, 58px);
    letter-spacing: -.055em;
  }

  .appointment-modal__text span,
  .coming-soon-title span {
    font-size: clamp(20px, 6vw, 26px);
  }

  .contact-page .contact-section-title h2,
  .contact-page #join .contact-section-title h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .banner-nocta h2 {
    font-size: clamp(30px, 8.5vw, 40px);
  }
}


/* v13 targeted fixes */
.contact-page #info .contact-section-title h2 {
  max-width: 780px;
}

.banner-governance {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
}
.banner-governance .eyebrow {
  margin-bottom: 16px;
}
.banner-governance .banner-title-2line {
  max-width: 8.6ch;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -.045em;
  margin-bottom: 0;
}
.banner-governance .muted {
  max-width: 100%;
  font-size: clamp(16px, 1.55vw, 18px);
  line-height: 1.68;
  justify-self: stretch;
}
.footer-grid .small {
  margin: 6px 0;
}

@media (max-width: 1180px) {
  .banner-governance {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .banner-governance .banner-title-2line {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .contact-page #info .contact-section-title h2 {
    font-size: clamp(30px, 8.2vw, 40px);
  }
  .banner-governance .banner-title-2line {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.12;
  }
}


/* V13.2 insights page tightening */
.insights-page .page-hero { padding: 112px 0 20px; }
.insights-page .page-hero h1 { margin-bottom: 0; }
.insights-page .section-tight { padding-top: 18px; }
@media (max-width: 560px) {
  .insights-page .page-hero { padding: 86px 0 16px; }
  .insights-page .section-tight { padding-top: 14px; }
}


/* V13.3 final micro polish */

/* Active navigation states */
.home-page .nav-links a[href="index.html"],
.hermes-page .nav-links a[href="hermes.html"],
.methodology-page .nav-links a[href="methodology.html"],
.medical-page .nav-links a[href="medical-ai.html"],
.insights-page .nav-links a[href="insights.html"],
.contact-page .nav-links a[href="contact.html"] {
  color: #fff;
  opacity: 1;
}

.home-page .nav-links a[href="index.html"]::after,
.hermes-page .nav-links a[href="hermes.html"]::after,
.methodology-page .nav-links a[href="methodology.html"]::after,
.medical-page .nav-links a[href="medical-ai.html"]::after,
.insights-page .nav-links a[href="insights.html"]::after,
.contact-page .nav-links a[href="contact.html"]::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

/* Footer备案 link polish */
.icp-link {
  color: var(--muted-2);
  display: inline-block;
}
.icp-link:hover {
  color: #fff;
}

/* Final vertical rhythm: keep pages visually consistent */
.page-hero {
  padding-top: 108px;
}
.page-hero h1 {
  letter-spacing: -0.046em;
}
.section-tight + .section-tight {
  padding-top: 54px;
}

/* Insights page final: tighter but not cramped */
.insights-page .page-hero {
  padding-bottom: 18px;
}
.insights-page .section-tight {
  padding-top: 14px;
}
.insights-page .article-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
}
.insights-page .article-card .btn {
  width: fit-content;
  margin-top: auto;
}

/* Contact page final: more official, less oversized */
.contact-page .contact-section-title h2 {
  max-width: 980px;
}
.contact-page #info .contact-section-title h2 {
  font-size: clamp(36px, 4.3vw, 64px);
}
.contact-info-grid .panel {
  min-height: 132px;
}

/* Banner final anti-overlap safeguard */
.banner,
.banner-balanced,
.banner-governance {
  isolation: isolate;
}
.banner-governance {
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
}
.banner-governance .banner-title-2line {
  max-width: 9.2ch;
}
.banner-governance .muted {
  max-width: 740px;
}

/* Card legibility */
.card p,
.module,
.muted,
.lead {
  text-wrap: pretty;
}

/* Mobile final polish */
@media (max-width: 920px) {
  .nav.open .nav-links a::after {
    display: none;
  }
  .page-hero {
    padding-top: 78px;
  }
  .insights-page .section-tight {
    padding-top: 10px;
  }
}

@media (max-width: 560px) {
  .nav-inner {
    height: 64px;
  }
  .brand span {
    font-size: 14px;
  }
  .page-hero h1 {
    font-size: clamp(34px, 9.6vw, 46px);
  }
  .contact-page #info .contact-section-title h2 {
    font-size: clamp(30px, 8.4vw, 40px);
  }
  .appointment-modal__close {
    right: 14px;
    top: 14px;
  }
}


/* V13.4 insights page final tightening */
.insights-page .page-hero {
  padding-bottom: 18px;
}
.insights-page .page-hero h1 {
  margin-bottom: 0;
}
.insights-page .section-tight {
  padding-top: 14px;
}
@media (max-width: 560px) {
  .insights-page .page-hero {
    padding-bottom: 14px;
  }
  .insights-page .section-tight {
    padding-top: 10px;
  }
}
