:root {
  --bg: #07101b;
  --bg-soft: #0b1726;
  --panel: rgba(255, 255, 255, .075);
  --panel-strong: rgba(255, 255, 255, .115);
  --text: #f8fbff;
  --muted: #a9b7c7;
  --line: rgba(173, 197, 220, .2);
  --blue: #5b8cff;
  --cyan: #35dfcf;
  --green: #78e8a7;
  --ink: #07101b;
  --radius: 8px;
  --content: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, "Microsoft YaHei", Arial, sans-serif;
  background:
    radial-gradient(circle at 12% 5%, rgba(91, 140, 255, .22), transparent 27%),
    radial-gradient(circle at 88% 8%, rgba(53, 223, 207, .14), transparent 24%),
    var(--bg);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: 0; text-wrap: balance; word-break: auto-phrase; }
h1 { margin-bottom: 20px; font-size: clamp(42px, 5.2vw, 66px); line-height: 1.08; }
h2 { margin-bottom: 14px; font-size: clamp(29px, 4vw, 46px); line-height: 1.18; }
h3 { margin-bottom: 9px; font-size: 20px; line-height: 1.42; }
p, li { color: var(--muted); line-height: 1.8; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px max(20px, calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(7, 16, 27, .88);
  backdrop-filter: blur(20px);
}
.brand { display: grid; gap: 2px; }
.brand strong { font-size: 18px; }
.brand span { color: var(--muted); font-size: 12px; }
.nav-links { display: flex; align-items: center; justify-content: flex-end; gap: 16px; flex-wrap: wrap; font-size: 13px; }
.nav-links a { color: #c9d5e2; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: white; }

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  color: #03101d;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 16px 44px rgba(53, 223, 207, .14);
  font-weight: 800;
  cursor: pointer;
}
.btn.secondary { color: white; background: rgba(255,255,255,.07); box-shadow: none; }
.btn:hover { transform: translateY(-1px); }
.actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 28px; }

.hero, .section { position: relative; width: min(var(--content), calc(100% - 40px)); margin: 0 auto; }
.hero { min-height: 620px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr); gap: clamp(28px, 4vw, 54px); align-items: center; padding: 64px 0; }
.hero-copy { min-width: 0; }
.hero-copy > p { max-width: 720px; font-size: clamp(17px, 2vw, 21px); }
.title-line { display: block; white-space: nowrap; }
.product-hero h1 { font-size: clamp(40px, 4.55vw, 60px); }
.hero:has(.lifecycle-map) h1 { font-size: clamp(40px, 4.35vw, 56px); }
.geo-hero h1 { font-size: clamp(40px, 3.75vw, 48px); }
.geo-hero h1 .gradient-text { display: block; }
.eyebrow { display: inline-block; margin-bottom: 14px; color: var(--cyan); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.gradient-text { background: linear-gradient(135deg, #fff 8%, #c6f8ff 48%, #81a9ff 72%, #9dffc3); color: transparent; background-clip: text; -webkit-background-clip: text; }

.hero-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: radial-gradient(circle at 50% 48%, rgba(53,223,207,.18), transparent 27%), repeating-linear-gradient(90deg, rgba(91,140,255,.08) 0 1px, transparent 1px 42px), repeating-linear-gradient(0deg, rgba(53,223,207,.06) 0 1px, transparent 1px 42px), var(--panel);
  box-shadow: 0 34px 100px rgba(0,0,0,.3);
}
.visual-core { position: absolute; left: 50%; top: 48%; width: 170px; height: 170px; display: grid; place-items: center; transform: translate(-50%, -50%); border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: #06101d; box-shadow: 0 0 80px rgba(53,223,207,.28); text-align: center; font-size: 23px; font-weight: 900; }
.visual-orbit { position: absolute; left: 50%; top: 48%; width: 360px; height: 360px; transform: translate(-50%, -50%); border: 1px dashed rgba(126,232,167,.33); border-radius: 50%; animation: breathe 6s ease-in-out infinite; }
.visual-node { position: absolute; width: 142px; min-height: 78px; display: grid; align-content: center; gap: 4px; padding: 12px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.12); backdrop-filter: blur(16px); animation: float 5s ease-in-out infinite; }
.visual-node span { color: var(--muted); font-size: 12px; line-height: 1.45; }
.n1 { left: 6%; top: 9%; }.n2 { right: 6%; top: 19%; animation-delay: -1.2s; }.n3 { left: 8%; bottom: 14%; animation-delay: -2.4s; }.n4 { right: 7%; bottom: 10%; animation-delay: -3.6s; }

.lifecycle-map, .platform-console { min-height: 500px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(145deg, rgba(91,140,255,.12), rgba(53,223,207,.08)), var(--bg-soft); box-shadow: 0 34px 100px rgba(0,0,0,.3); }
.lifecycle-head, .platform-title { display: grid; gap: 6px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.lifecycle-head span, .platform-title span { color: var(--cyan); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.lifecycle-head strong, .platform-title strong { font-size: 22px; line-height: 1.35; }
.lifecycle-track { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; padding: 22px 0; }
.lifecycle-track::before { content: ""; position: absolute; left: 50%; top: 24px; bottom: 24px; width: 1px; background: linear-gradient(var(--cyan), var(--blue), var(--green)); opacity: .45; }
.lifecycle-track article { position: relative; min-height: 92px; display: grid; grid-template-columns: 36px 1fr; grid-template-rows: auto auto; column-gap: 10px; align-content: center; padding: 14px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.055); }
.lifecycle-track i { grid-row: 1 / 3; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: var(--cyan); background: rgba(53,223,207,.13); font-style: normal; font-size: 11px; font-weight: 900; }
.lifecycle-track strong { font-size: 15px; }
.lifecycle-track span { color: var(--muted); font-size: 12px; line-height: 1.45; }
.lifecycle-foot, .platform-status { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 16px; border-top: 1px solid var(--line); }
.lifecycle-foot span, .platform-status span { flex: 1; min-width: 110px; padding: 9px 10px; border-radius: 8px; color: #dffcff; background: rgba(53,223,207,.08); text-align: center; font-size: 12px; font-weight: 800; }

.geo-hero { grid-template-columns: minmax(0,.82fr) minmax(520px,1.18fr); }
.platform-columns { display: grid; grid-template-columns: 1fr .78fr 1fr; gap: 14px; align-items: center; padding: 22px 0; }
.platform-list { display: grid; gap: 7px; }
.platform-list small { margin-bottom: 3px; color: var(--cyan); font-weight: 900; }
.platform-list span { display: flex; align-items: center; gap: 8px; min-height: 34px; padding: 6px 9px; border: 1px solid rgba(173,197,220,.16); border-radius: 8px; color: #d9e7f5; background: rgba(255,255,255,.055); font-size: 12px; }
.platform-list i { width: 27px; height: 27px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 7px; color: #06101d; background: linear-gradient(135deg,var(--cyan),#9dffc3); font-style: normal; font-size: 9px; font-weight: 900; }
.search-list i { background: linear-gradient(135deg,#85a8ff,#71e6dc); }
.geo-core { min-height: 190px; display: grid; place-items: center; align-content: center; gap: 7px; border: 1px solid rgba(53,223,207,.35); border-radius: 50%; background: radial-gradient(circle,rgba(53,223,207,.22),rgba(7,16,27,.94) 67%); box-shadow: 0 0 55px rgba(53,223,207,.18); }
.geo-core b { font-size: 38px; }
.geo-core span { color: var(--muted); font-size: 11px; }
.topic-hero { grid-template-columns: minmax(0,1fr) minmax(380px,.82fr); }
.topic-hero h1 { font-size: clamp(42px,4.6vw,60px); }
.topic-map { min-height: 460px; display: grid; align-content: center; gap: 10px; padding: 34px; border: 1px solid var(--line); border-radius: 18px; background: radial-gradient(circle at 50% 45%, rgba(53,223,207,.17), transparent 35%), var(--panel); }
.topic-map strong, .topic-map b, .topic-map span { display: block; padding: 15px 17px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.06); }
.topic-map strong { color: var(--cyan); }.topic-map b { color: #dfffea; background: rgba(120,232,167,.1); }

.entity-strip { width: min(var(--content), calc(100% - 40px)); margin: -26px auto 0; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; }
.entity-item { padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.065); }
.entity-item small { display: block; margin-bottom: 5px; color: var(--cyan); }
.entity-item strong, .entity-item span { display: block; }
.entity-item strong { margin-bottom: 5px; }
.entity-item span { color: var(--muted); font-size: 13px; line-height: 1.55; }

.section { padding: 82px 0; }
.section.band { width: 100%; max-width: none; padding-inline: max(20px, calc((100vw - var(--content)) / 2)); border-block: 1px solid var(--line); background: rgba(255,255,255,.025); }
.heading { max-width: 820px; margin-bottom: 28px; }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 15px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 15px; }
.feature-grid .card { min-height: 178px; position: relative; padding-top: 50px; }
.module-index { position: absolute; top: 18px; right: 20px; color: rgba(53,223,207,.62); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.card { min-width: 0; min-height: 190px; padding: 23px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); transition: .22s ease; }
.card:hover { transform: translateY(-3px); border-color: rgba(53,223,207,.48); background: var(--panel-strong); }
.card p { margin-bottom: 0; }
.number { width: 34px; height: 34px; display: grid; place-items: center; margin-bottom: 16px; border-radius: 50%; background: rgba(53,223,207,.14); color: var(--cyan); font-weight: 900; }
.tag { display: inline-flex; margin-bottom: 12px; padding: 5px 8px; border-radius: 999px; background: rgba(120,232,167,.13); color: #b8ffd2; font-size: 12px; font-weight: 800; }

.flow { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 10px; }
.flow-step { position: relative; min-height: 170px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.flow-step:not(:last-child)::after { content: "→"; position: absolute; right: -12px; top: 50%; z-index: 2; color: var(--cyan); font-weight: 900; }

.case-card { display: grid; gap: 15px; min-height: 100%; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.case-card dl { display: grid; grid-template-columns: 104px 1fr; gap: 9px 14px; margin: 0; }
.case-card dt { color: white; font-weight: 800; }.case-card dd { margin: 0; color: var(--muted); line-height: 1.7; }
.cases-hero h1 { font-size: clamp(42px, 4.55vw, 60px); }
.case-list { display: grid; gap: 18px; }
.case-showcase { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: linear-gradient(145deg, rgba(91,140,255,.08), rgba(53,223,207,.035)), var(--panel); }
.case-showcase > header { display: flex; align-items: center; gap: 18px; padding: 24px 26px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.025); }
.case-showcase header small { display: block; margin-bottom: 5px; color: var(--cyan); font-weight: 800; }
.case-showcase header h3 { margin: 0; font-size: 25px; }
.case-no { flex: 0 0 auto; padding: 8px 10px; border: 1px solid rgba(53,223,207,.3); border-radius: 8px; color: var(--cyan); background: rgba(53,223,207,.09); font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.case-detail-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); }
.case-detail-grid > div { min-height: 150px; padding: 22px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.case-detail-grid > div:nth-child(3n) { border-right: 0; }
.case-detail-grid b { display: block; margin-bottom: 9px; color: #f5fbff; font-size: 15px; }
.case-detail-grid p { margin: 0; font-size: 14px; line-height: 1.72; }
.case-detail-grid .expected { grid-column: 1 / -1; min-height: 118px; background: linear-gradient(135deg, rgba(53,223,207,.09), rgba(91,140,255,.07)); }
.experience-cta { display: grid; grid-template-columns: 1.25fr .75fr; gap: 32px; align-items: center; margin-block: 72px; padding: 36px; border: 1px solid rgba(53,223,207,.32); border-radius: 18px; background: linear-gradient(145deg, rgba(53,223,207,.11), rgba(91,140,255,.08)); }
.experience-cta h2 { font-size: clamp(28px, 3.5vw, 42px); }
.experience-cta p { margin-bottom: 0; }
.experience-actions { display: grid; gap: 10px; }
.future-case { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 18px; padding: 26px; border: 1px dashed rgba(173,197,220,.3); border-radius: 16px; background: rgba(255,255,255,.03); }
.future-case h3 { margin-bottom: 7px; }.future-case p { margin-bottom: 0; }
.roi-link { display:inline-block; margin-top:12px; color:var(--cyan); font-size:12px; font-weight:900; }.case-evidence-note { display:flex; flex-wrap:wrap; gap:9px; align-items:center; margin-top:18px; padding:18px 22px; border:1px solid var(--line); border-radius:12px; background:rgba(53,223,207,.035); }.case-evidence-note strong { margin-right:auto; }.case-evidence-note span { padding:7px 9px; border-radius:999px; color:#9fb1c2; background:rgba(255,255,255,.04); font-size:9px; }

.profile { display: grid; grid-template-columns: .62fr 1.38fr; gap: 28px; align-items: stretch; }
.profile-mark { min-height: 360px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 18px; background: radial-gradient(circle, rgba(53,223,207,.24), transparent 44%), var(--panel); font-size: 24px; font-weight: 900; text-align: center; }
.profile-copy { padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: var(--panel); }

.faq { display: grid; gap: 10px; }
.faq details { padding: 17px 19px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.faq summary { cursor: pointer; font-weight: 800; }
.faq details p { margin: 12px 0 0; }

.diagnosis { display: grid; grid-template-columns: .78fr 1.22fr; gap: 28px; padding: 32px; border: 1px solid rgba(53,223,207,.3); border-radius: 18px; background: linear-gradient(145deg, rgba(53,223,207,.1), rgba(91,140,255,.07)); }
.form { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 13px; }
.field { display: grid; gap: 7px; color: #dbe7f3; font-size: 13px; }
.field.wide, .form-status { grid-column: 1 / -1; }
input, select, textarea { width: 100%; min-height: 44px; padding: 11px 13px; border: 1px solid rgba(255,255,255,.17); border-radius: var(--radius); color: white; background: rgba(4,10,18,.58); }
option { color: #111827; } textarea { min-height: 108px; resize: vertical; }
.form-status { display: none; padding: 13px; border: 1px solid rgba(120,232,167,.32); border-radius: var(--radius); color: #dfffea; background: rgba(120,232,167,.08); }
.form-status.visible { display: block; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 18px; }
.contact-panel { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.contact-list { display: grid; gap: 12px; margin: 18px 0 0; padding: 0; list-style: none; }
.contact-list li { padding-bottom: 12px; border-bottom: 1px solid var(--line); }

.site-footer { padding: 54px max(20px, calc((100vw - var(--content)) / 2)); border-top: 1px solid var(--line); background: rgba(4,10,18,.46); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; color: var(--muted); }
.footer-note { margin-top: 28px; padding-top: 16px; border-top: 1px solid var(--line); color: #75869a; font-size: 12px; }

@keyframes breathe { 50% { transform: translate(-50%, -50%) scale(1.02); opacity: .72; } }
@keyframes float { 50% { transform: translateY(-5px); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; } }

@media (max-width: 1100px) {
  .hero, .geo-hero, .topic-hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { max-width: 920px; }
  .hero-visual, .lifecycle-map, .platform-console { min-height: 430px; }
  .product-hero h1 { font-size: clamp(40px, 7vw, 62px); }
}

@media (max-width: 920px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .nav-links { justify-content: flex-start; }
  .hero, .profile, .diagnosis, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .entity-strip, .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-3, .feature-grid { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; }
  .case-detail-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .case-detail-grid > div, .case-detail-grid > div:nth-child(3n) { border-right: 1px solid var(--line); }
  .case-detail-grid > div:nth-child(2n) { border-right: 0; }
  .experience-cta { grid-template-columns: 1fr; }
  .future-case { align-items: flex-start; flex-direction: column; }
  .flow-step::after { display: none; }
  .hero { min-height: 0; }
}
@media (max-width: 560px) {
  .hero, .section { width: min(100% - 28px, var(--content)); }
  .entity-strip, .grid-2, .grid-4, .form { grid-template-columns: 1fr; }
  .entity-strip { width: calc(100% - 28px); margin-top: 0; }
  .hero { padding: 48px 0; }
  .hero-visual { min-height: 520px; }
  .visual-orbit { width: 270px; height: 270px; }
  .visual-core { width: 132px; height: 132px; font-size: 18px; }
  .visual-node { width: 112px; min-height: 66px; padding: 9px; font-size: 12px; }
  .n1 { left: 2%; }.n2 { right: 2%; }.n3 { left: 3%; }.n4 { right: 3%; }
  .diagnosis { padding: 20px; }
  .case-card dl { grid-template-columns: 1fr; }
  .case-detail-grid { grid-template-columns: 1fr; }
  .case-detail-grid > div, .case-detail-grid > div:nth-child(2n), .case-detail-grid > div:nth-child(3n) { min-height: 0; border-right: 0; }
  .case-showcase > header { align-items: flex-start; flex-direction: column; }
  .experience-cta { margin-block: 40px; padding: 24px; }
  h1 { font-size: 39px; }
  .title-line { white-space: normal; }
  .lifecycle-track, .platform-columns { grid-template-columns: 1fr; }
  .lifecycle-track::before { display: none; }
  .geo-core { width: 190px; justify-self: center; }
}

/* Homepage platform experience — isolated from inner pages. */
.home-page { --home-content: 1240px; background: #07111d; }
.home-page::before { background-size: 64px 64px; opacity: .75; }
.home-shell { width: min(var(--home-content), calc(100% - 48px)); margin-inline: auto; }
.home-header { min-height: 78px; padding-inline: max(24px, calc((100vw - var(--home-content)) / 2)); background: rgba(6,15,26,.72); transition: background .25s ease, box-shadow .25s ease; }
.home-header.is-scrolled { background: rgba(6,15,26,.95); box-shadow: 0 12px 40px rgba(0,0,0,.28); }
.home-header .brand strong { font-size: 19px; letter-spacing: -.02em; }
.home-header .nav-links { gap: 20px; }
.home-header .nav-cta { min-height: 38px; padding-inline: 14px; }
.menu-toggle { display: none; width: 46px; height: 42px; padding: 9px; border: 1px solid var(--line); border-radius: 9px; color: white; background: rgba(255,255,255,.05); cursor: pointer; }
.menu-toggle span { display: block; width: 20px; height: 1px; margin: 4px auto; background: currentColor; transition: .2s ease; }
.menu-toggle b { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.home-hero { position: relative; min-height: calc(100vh - 78px); display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding: clamp(72px,8vw,112px) 0 36px; border-bottom: 1px solid var(--line); background: linear-gradient(135deg,rgba(91,140,255,.08),transparent 38%), radial-gradient(circle at 72% 38%,rgba(53,223,207,.12),transparent 31%); }
.home-hero::before { content:""; position:absolute; inset:0; pointer-events:none; background: linear-gradient(90deg,rgba(255,255,255,.026) 1px,transparent 1px),linear-gradient(rgba(255,255,255,.026) 1px,transparent 1px); background-size:64px 64px; mask-image:linear-gradient(180deg,#000,transparent 92%); }
.hero-glow { position:absolute; width:420px; height:420px; border-radius:50%; filter:blur(90px); opacity:.14; pointer-events:none; }
.glow-a { right:7%; top:8%; background:var(--cyan); }.glow-b { left:-8%; bottom:-20%; background:var(--blue); }
.home-hero-grid { position:relative; display:grid; grid-template-columns:minmax(0,1.05fr) minmax(520px,.95fr); gap:clamp(44px,6vw,86px); align-items:center; }
.home-hero-copy { max-width:720px; }
.home-kicker { display:inline-flex; align-items:center; gap:10px; margin-bottom:22px; color:#bbcad8; font-size:13px; font-weight:800; letter-spacing:.05em; }
.home-kicker i { width:8px; height:8px; border-radius:50%; background:var(--cyan); box-shadow:0 0 18px var(--cyan); }
.home-hero h1 { margin-bottom:24px; font-size:clamp(48px,5.35vw,76px); line-height:1.03; letter-spacing:-.055em; }
.home-hero h1 .product-label { display:block; margin-bottom:12px; color:var(--cyan); font-size:.34em; line-height:1; letter-spacing:.08em; text-transform:uppercase; }
.home-hero h1 .title-row { display:block; white-space:nowrap; }
.home-hero h1 em { color:transparent; background:linear-gradient(120deg,#fff 2%,#c8faff 38%,#7fa8ff 73%,#9dffc3); background-clip:text; -webkit-background-clip:text; font-style:normal; }
.home-hero-copy > p { max-width:670px; margin-bottom:0; color:#b7c5d4; font-size:18px; line-height:1.85; }
.home-primary { min-height:50px; padding-inline:22px; }
.hero-trust { display:flex; flex-wrap:wrap; gap:18px; margin-top:36px; padding-top:21px; border-top:1px solid var(--line); }
.hero-trust span { display:flex; align-items:center; gap:8px; color:#c3d0dd; font-size:12px; }
.hero-trust b { color:var(--cyan); font-size:10px; letter-spacing:.1em; }

.growth-console { position:relative; min-height:550px; overflow:hidden; border:1px solid rgba(149,185,220,.25); border-radius:22px; background:linear-gradient(145deg,rgba(91,140,255,.1),rgba(53,223,207,.035)),rgba(10,24,39,.82); box-shadow:0 42px 120px rgba(0,0,0,.38),inset 0 1px rgba(255,255,255,.05); }
.growth-console::before { content:""; position:absolute; inset:52px 0 44px; background:linear-gradient(90deg,rgba(255,255,255,.032) 1px,transparent 1px),linear-gradient(rgba(255,255,255,.032) 1px,transparent 1px); background-size:38px 38px; }
.console-top,.console-status { position:relative; z-index:3; display:flex; align-items:center; justify-content:space-between; padding:16px 19px; border-bottom:1px solid var(--line); }
.console-top span,.console-status span { display:flex; align-items:center; gap:7px; font-size:11px; font-weight:800; letter-spacing:.04em; }
.console-top i,.console-status i { width:6px; height:6px; border-radius:50%; background:var(--cyan); box-shadow:0 0 12px var(--cyan); }
.console-top small { color:#8192a5; }
.console-map { position:relative; min-height:450px; }
.console-ring { position:absolute; left:50%; top:50%; border:1px solid rgba(53,223,207,.22); border-radius:50%; transform:translate(-50%,-50%); }
.ring-one { width:300px; height:300px; animation:homePulse 5s ease-in-out infinite; }.ring-two { width:420px; height:420px; border-style:dashed; opacity:.52; animation:homeSpin 28s linear infinite; }
.console-core { position:absolute; left:50%; top:50%; z-index:2; width:188px; height:188px; display:grid; place-content:center; gap:7px; transform:translate(-50%,-50%); border:1px solid rgba(53,223,207,.36); border-radius:50%; background:radial-gradient(circle at 50% 40%,rgba(53,223,207,.2),rgba(5,14,25,.98) 67%); box-shadow:0 0 70px rgba(53,223,207,.2); text-align:center; }
.console-core small { color:var(--cyan); font-size:10px; letter-spacing:.1em; }.console-core strong { font-size:20px; }.console-core span { color:#8fa1b5; font-size:10px; }
.console-node { position:absolute; z-index:2; min-width:126px; display:grid; grid-template-columns:29px 1fr; gap:1px 8px; padding:11px 13px; border:1px solid var(--line); border-radius:10px; background:rgba(18,38,58,.86); backdrop-filter:blur(14px); box-shadow:0 14px 30px rgba(0,0,0,.2); }
.console-node i { grid-row:1/3; width:27px; height:27px; display:grid; place-items:center; border-radius:7px; color:var(--cyan); background:rgba(53,223,207,.12); font-style:normal; font-size:9px; font-weight:900; }.console-node b { font-size:13px; }.console-node span { color:#91a3b5; font-size:10px; }
.node-lead { left:5%; top:9%; }.node-consult { right:5%; top:13%; }.node-sales { right:1%; top:53%; }.node-delivery { right:17%; bottom:4%; }.node-growth { left:5%; bottom:13%; }
.console-status { border-top:1px solid var(--line); border-bottom:0; color:#a9b8c8; }.console-status span { font-size:9px; }.console-status span:nth-child(2) i { background:var(--blue); }.console-status span:nth-child(3) i { background:var(--green); }

.quick-results { position:relative; z-index:4; display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); margin-top:48px; border:1px solid var(--line); border-radius:14px; background:rgba(12,26,42,.74); backdrop-filter:blur(18px); }
.quick-results a { min-height:116px; display:grid; align-content:center; gap:5px; padding:20px 24px; border-right:1px solid var(--line); transition:.22s ease; }.quick-results a:last-child { border-right:0; }.quick-results a:hover { background:rgba(53,223,207,.07); }.quick-results small { color:var(--cyan); font-size:10px; font-weight:900; letter-spacing:.1em; }.quick-results strong { font-size:15px; }.quick-results span { color:#8192a5; font-size:11px; }

.home-section { position:relative; padding:clamp(84px,9vw,126px) 0; scroll-margin-top:78px; }
.home-band { border-block:1px solid var(--line); background:rgba(255,255,255,.018); }
.section-intro { max-width:830px; margin-bottom:42px; }.section-intro > span,.section-label { display:inline-block; margin-bottom:16px; color:var(--cyan); font-size:11px; font-weight:900; letter-spacing:.14em; text-transform:uppercase; }.section-intro h2,.automation-copy h2 { font-size:clamp(34px,4.1vw,52px); line-height:1.14; letter-spacing:-.035em; }.section-intro p { max-width:720px; margin-bottom:0; font-size:16px; }.split-intro { max-width:none; display:grid; grid-template-columns:1.15fr .85fr; gap:80px; align-items:end; }.split-intro p { padding-bottom:5px; }
.problem-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:14px; }.problem-card { min-height:280px; display:flex; flex-direction:column; padding:28px; border:1px solid var(--line); border-radius:12px; background:linear-gradient(155deg,rgba(255,255,255,.055),rgba(255,255,255,.018)); transition:.25s ease; }.problem-card:hover { transform:translateY(-5px); border-color:rgba(53,223,207,.42); }.problem-card > b { margin-bottom:44px; color:rgba(53,223,207,.72); font-size:11px; letter-spacing:.14em; }.problem-card h3 { font-size:20px; }.problem-card p { font-size:14px; }.problem-card span { margin-top:auto; padding-top:18px; color:#8395a8; border-top:1px solid var(--line); font-size:11px; }
.os-layout,.automation-layout,.geo-layout,.cases-layout { display:grid; grid-template-columns:.84fr 1.16fr; gap:clamp(48px,7vw,100px); align-items:center; }.os-layout .section-intro,.geo-layout .section-intro,.cases-layout .section-intro { margin:0; }.os-dashboard { padding:24px; border:1px solid var(--line); border-radius:18px; background:linear-gradient(145deg,rgba(91,140,255,.1),rgba(53,223,207,.05)),var(--panel); box-shadow:0 30px 80px rgba(0,0,0,.26); }.os-title { display:flex; justify-content:space-between; gap:20px; padding-bottom:21px; border-bottom:1px solid var(--line); }.os-title div { display:grid; gap:4px; }.os-title small { color:var(--cyan); font-weight:900; }.os-title strong { font-size:20px; }.os-title > span { align-self:start; padding:6px 9px; border-radius:999px; color:#bfffd7; background:rgba(120,232,167,.09); font-size:9px; }.os-metrics { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; padding:22px 0; }.os-metrics article { display:grid; gap:6px; padding:17px; border:1px solid var(--line); border-radius:10px; background:rgba(255,255,255,.035); }.os-metrics small,.os-metrics i { color:#8294a8; font-size:10px; font-style:normal; }.os-metrics b { font-size:15px; }.os-flow { display:flex; align-items:center; justify-content:space-between; gap:9px; padding-top:19px; border-top:1px solid var(--line); }.os-flow span { padding:9px 10px; border-radius:7px; color:#d6e4f1; background:rgba(53,223,207,.07); font-size:10px; font-weight:800; }.os-flow i { flex:1; height:1px; background:linear-gradient(90deg,var(--cyan),var(--blue)); }
.employee-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; }.employee-card { position:relative; min-height:380px; padding:32px; overflow:hidden; border:1px solid var(--line); border-radius:14px; background:linear-gradient(160deg,rgba(91,140,255,.08),rgba(255,255,255,.025)); transition:.25s ease; }.employee-card::after { content:""; position:absolute; width:170px; height:170px; right:-70px; top:-70px; border-radius:50%; background:var(--cyan); filter:blur(70px); opacity:.08; }.employee-card:hover { transform:translateY(-5px); border-color:rgba(53,223,207,.42); }.employee-icon { width:48px; height:48px; display:grid; place-items:center; margin-bottom:54px; border:1px solid rgba(53,223,207,.28); border-radius:12px; color:var(--cyan); background:rgba(53,223,207,.08); font-size:18px; font-weight:900; }.employee-card small { color:var(--cyan); font-weight:900; }.employee-card h3 { margin-top:8px; font-size:22px; }.employee-card ul { margin:20px 0 28px; padding-left:18px; }.employee-card li { font-size:13px; line-height:2; }.employee-card > span { position:absolute; left:32px; right:32px; bottom:28px; padding-top:15px; border-top:1px solid var(--line); color:#b8c7d6; font-size:11px; }
.automation-layout { grid-template-columns:.65fr 1.35fr; }.automation-copy p { max-width:470px; }.automation-copy > a { display:inline-block; margin-top:18px; color:var(--cyan); font-size:13px; font-weight:800; }.pipeline { display:flex; align-items:stretch; gap:7px; }.pipeline article { flex:1; min-width:0; min-height:210px; display:flex; flex-direction:column; padding:21px 17px; border:1px solid var(--line); border-radius:11px; background:rgba(255,255,255,.035); }.pipeline article.active { border-color:rgba(53,223,207,.42); background:linear-gradient(160deg,rgba(53,223,207,.12),rgba(91,140,255,.05)); box-shadow:0 20px 50px rgba(53,223,207,.08); }.pipeline b { color:var(--cyan); font-size:9px; letter-spacing:.1em; }.pipeline strong { margin-top:36px; font-size:15px; line-height:1.5; }.pipeline span { margin-top:auto; color:#8395a8; font-size:10px; line-height:1.5; }.pipeline > i { align-self:center; color:var(--cyan); font-style:normal; }
.geo-layout { grid-template-columns:1.05fr .95fr; }.geo-network { position:relative; min-height:500px; overflow:hidden; border:1px solid var(--line); border-radius:20px; background:radial-gradient(circle at 50% 50%,rgba(53,223,207,.17),transparent 30%),linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px),linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),var(--panel); background-size:auto,42px 42px,42px 42px,auto; }.geo-network::before,.geo-network::after { content:""; position:absolute; left:50%; top:50%; border:1px dashed rgba(53,223,207,.24); border-radius:50%; transform:translate(-50%,-50%); }.geo-network::before { width:300px; height:300px; }.geo-network::after { width:430px; height:430px; }.geo-center { position:absolute; z-index:3; left:50%; top:50%; width:175px; height:175px; display:grid; place-content:center; gap:7px; transform:translate(-50%,-50%); border-radius:50%; background:#07111d; box-shadow:0 0 70px rgba(53,223,207,.24); text-align:center; }.geo-center small { color:var(--cyan); font-size:9px; }.geo-center strong { font-size:19px; }.geo-source,.geo-target { position:absolute; z-index:4; padding:10px 13px; border:1px solid var(--line); border-radius:8px; color:#dce8f3; background:rgba(27,50,68,.88); font-size:10px; font-weight:800; }.s1{left:7%;top:14%}.s2{left:5%;bottom:19%}.s3{left:34%;bottom:5%}.t1{right:8%;top:12%}.t2{right:3%;top:37%}.t3{right:6%;bottom:27%}.t4{right:21%;bottom:7%}.geo-points { display:flex; flex-wrap:wrap; gap:8px; margin-top:24px; }.geo-points span { padding:8px 10px; border:1px solid var(--line); border-radius:999px; color:#b9c8d7; font-size:10px; }
.industry-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; }.industry-card { min-height:330px; display:flex; flex-direction:column; padding:30px; border:1px solid var(--line); border-radius:14px; background:linear-gradient(150deg,rgba(255,255,255,.052),rgba(255,255,255,.018)); transition:.25s ease; }.industry-card:hover { transform:translateY(-5px); border-color:rgba(53,223,207,.42); }.industry-card small { margin-bottom:72px; color:var(--cyan); font-weight:900; }.industry-card h3 { font-size:23px; }.industry-card > span { margin-top:auto; color:#d9e6f2; font-size:12px; font-weight:800; }
.cases-layout { grid-template-columns:.78fr 1.22fr; }.case-stack { display:grid; gap:11px; }.case-stack article { display:grid; grid-template-columns:122px 1fr; gap:6px 18px; padding:22px 24px; border:1px solid var(--line); border-radius:11px; background:rgba(255,255,255,.035); transition:.22s ease; }.case-stack article:hover { transform:translateX(5px); border-color:rgba(53,223,207,.35); }.case-stack span { grid-row:1/3; align-self:center; color:var(--cyan); font-size:10px; font-weight:900; }.case-stack strong { font-size:16px; }.case-stack small { color:#8799ac; }
.cooperation-flow { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); border-block:1px solid var(--line); }.cooperation-flow article { position:relative; min-height:235px; padding:28px 22px; border-right:1px solid var(--line); }.cooperation-flow article:last-child { border-right:0; }.cooperation-flow b { color:var(--cyan); font-size:11px; }.cooperation-flow h3 { margin-top:55px; font-size:19px; }.cooperation-flow p { font-size:13px; }.cooperation-flow article:not(:last-child)::after { content:"→"; position:absolute; right:-8px; top:33px; z-index:2; color:var(--cyan); }
.home-diagnosis { padding:clamp(28px,4vw,48px); }.diagnosis-notes { display:flex; flex-wrap:wrap; gap:8px; margin-top:25px; }.diagnosis-notes span { padding:8px 10px; border:1px solid var(--line); border-radius:999px; color:#b9c8d7; font-size:10px; }
.mobile-diagnosis-bar { display:none; }
.reveal { opacity:0; transform:translateY(24px); transition:opacity .65s ease,transform .65s cubic-bezier(.2,.7,.2,1); }.reveal.is-visible { opacity:1; transform:none; }
@keyframes homePulse { 50%{ transform:translate(-50%,-50%) scale(1.04); opacity:.55; } }
@keyframes homeSpin { to{ transform:translate(-50%,-50%) rotate(360deg); } }

@media (max-width:1100px) {
  .home-hero-grid { grid-template-columns:1fr; }.home-hero-copy { max-width:820px; }.growth-console { min-height:530px; }.problem-grid { grid-template-columns:repeat(2,1fr); }.os-layout,.geo-layout,.cases-layout { grid-template-columns:1fr; }.automation-layout { grid-template-columns:1fr; }.pipeline { max-width:none; }.split-intro { gap:36px; }.home-section { padding-block:92px; }
}
@media (max-width:920px) {
  .home-header { min-height:70px; flex-direction:row; align-items:center; padding:10px 20px; }.menu-toggle { display:block; }.home-header .nav-links { position:absolute; left:14px; right:14px; top:calc(100% + 8px); display:none; flex-direction:column; align-items:stretch; gap:0; padding:10px; border:1px solid var(--line); border-radius:12px; background:rgba(6,15,26,.98); box-shadow:0 25px 70px rgba(0,0,0,.45); }.home-header.menu-open .nav-links { display:flex; }.home-header .nav-links a { padding:13px 12px; border-bottom:1px solid rgba(173,197,220,.1); }.home-header .nav-links .btn { margin-top:8px; border-bottom:0; }.home-header.menu-open .menu-toggle span:nth-child(1) { transform:translateY(5px) rotate(45deg); }.home-header.menu-open .menu-toggle span:nth-child(2) { opacity:0; }.home-header.menu-open .menu-toggle span:nth-child(3) { transform:translateY(-5px) rotate(-45deg); }
  .home-hero { min-height:auto; padding-top:62px; }.home-hero-grid { gap:46px; }.quick-results { grid-template-columns:repeat(2,1fr); }.quick-results a:nth-child(2) { border-right:0; }.quick-results a:nth-child(-n+2) { border-bottom:1px solid var(--line); }.employee-grid,.industry-grid { grid-template-columns:1fr; }.employee-card,.industry-card { min-height:300px; }.employee-icon,.industry-card small { margin-bottom:38px; }.split-intro { grid-template-columns:1fr; }.cooperation-flow { grid-template-columns:1fr; }.cooperation-flow article { min-height:0; padding:24px 20px; border-right:0; border-bottom:1px solid var(--line); }.cooperation-flow article:last-child { border-bottom:0; }.cooperation-flow h3 { margin-top:22px; }.cooperation-flow article:not(:last-child)::after { content:"↓"; right:20px; top:auto; bottom:-9px; }.home-diagnosis { grid-template-columns:1fr; }
}
@media (max-width:640px) {
  .home-page { padding-bottom:64px; }.home-shell { width:calc(100% - 28px); }.home-header .brand span { display:none; }.home-hero { padding:46px 0 24px; }.home-kicker { margin-bottom:18px; font-size:10px; }.home-hero h1 { font-size:clamp(40px,12vw,54px); line-height:1.07; letter-spacing:-.05em; }.home-hero h1 span { font-size:.3em; }.home-hero-copy > p { font-size:15px; line-height:1.75; }.home-hero .actions { display:grid; grid-template-columns:1fr; }.home-hero .btn { width:100%; }.hero-trust { gap:10px 16px; margin-top:27px; }.hero-trust span { font-size:10px; }.growth-console { min-height:430px; border-radius:16px; }.console-map { min-height:340px; }.ring-one { width:210px;height:210px }.ring-two { width:315px;height:315px }.console-core { width:138px;height:138px }.console-core strong { font-size:15px }.console-node { min-width:93px; grid-template-columns:1fr; padding:8px; }.console-node i { display:none; }.console-node b { font-size:11px }.console-node span { font-size:8px }.node-lead{left:2%;top:8%}.node-consult{right:2%;top:9%}.node-sales{right:1%;top:55%}.node-delivery{right:11%;bottom:3%}.node-growth{left:2%;bottom:14%}.console-status { padding:13px 10px; }.console-status span { font-size:7px }.quick-results { margin-top:24px; }.quick-results a { min-height:98px; padding:15px; }.quick-results strong { font-size:12px }.home-section { padding-block:72px; }.section-intro { margin-bottom:30px; }.section-intro h2,.automation-copy h2 { font-size:33px; }.section-intro h2 br { display:none; }.section-intro p { font-size:14px; }.problem-grid { grid-template-columns:1fr; }.problem-card { min-height:230px; }.problem-card > b { margin-bottom:28px; }.os-dashboard { padding:16px; }.os-title { align-items:flex-start; }.os-title > span { display:none; }.os-metrics { grid-template-columns:1fr; }.os-flow { display:grid; grid-template-columns:1fr; }.os-flow i { width:1px; height:12px; justify-self:center; }.os-flow span { text-align:center; }.employee-card { padding:26px; }.employee-card > span { left:26px;right:26px }.pipeline { display:grid; grid-template-columns:1fr; }.pipeline article { min-height:150px; }.pipeline strong { margin-top:22px; }.pipeline > i { transform:rotate(90deg); justify-self:center; }.geo-network { min-height:420px; }.geo-network::before{width:230px;height:230px}.geo-network::after{width:340px;height:340px}.geo-center{width:135px;height:135px}.geo-source,.geo-target{padding:8px;font-size:8px}.s1{left:3%}.s2{left:2%}.s3{left:27%}.t1{right:3%}.t2{right:1%}.t3{right:2%}.t4{right:12%}.industry-card { min-height:270px;padding:25px }.case-stack article { grid-template-columns:1fr; }.case-stack span { grid-row:auto; }.home-diagnosis { padding:23px; }.home-diagnosis .form { grid-template-columns:1fr; }.mobile-diagnosis-bar { position:fixed; left:10px; right:10px; bottom:9px; z-index:40; min-height:52px; display:flex; align-items:center; justify-content:space-between; padding:0 17px; border:1px solid rgba(255,255,255,.18); border-radius:12px; color:#06101d; background:linear-gradient(135deg,var(--cyan),#79a7ff); box-shadow:0 18px 55px rgba(0,0,0,.5); font-size:12px; }.mobile-diagnosis-bar b { font-size:12px; }.site-footer { padding-bottom:84px; }
}
@media (prefers-reduced-motion:reduce) { .reveal { opacity:1; transform:none; transition:none; } }
@media (max-width:640px) { .home-hero h1 span.title-row { font-size:inherit; white-space:normal; } }
.capability-section { padding-top:24px; }
.six-capability-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; }
.capability-card { min-height:285px; display:flex; flex-direction:column; padding:28px; border:1px solid var(--line); border-radius:13px; background:linear-gradient(155deg,rgba(91,140,255,.075),rgba(53,223,207,.025)); transition:.25s ease; }
.capability-card:hover { transform:translateY(-5px); border-color:rgba(53,223,207,.45); }
.capability-card b { color:rgba(53,223,207,.68); font-size:10px; letter-spacing:.14em; }.capability-card small { margin-top:38px; color:var(--cyan); font-weight:900; }.capability-card h3 { margin-top:7px; font-size:22px; }.capability-card p { font-size:13px; }.capability-card span { margin-top:auto; padding-top:16px; border-top:1px solid var(--line); color:#9bb0c3; font-size:10px; }
@media (max-width:920px) { .six-capability-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width:640px) { .six-capability-grid { grid-template-columns:1fr; }.capability-card { min-height:230px; } }

/* AI Growth OS product system */
.platform-product-hero { grid-template-columns:minmax(0,.82fr) minmax(560px,1.18fr); min-height:690px; }.platform-product-hero h1 { font-size:clamp(42px,4.6vw,62px); }.platform-product-hero .title-line { margin-top:12px; }.product-proof { display:flex; flex-wrap:wrap; gap:8px; margin-top:30px; }.product-proof span { padding:8px 10px; border:1px solid var(--line); border-radius:999px; color:#b7c7d7; font-size:10px; }
.product-simulator { overflow:hidden; border:1px solid rgba(173,197,220,.24); border-radius:18px; background:linear-gradient(145deg,rgba(91,140,255,.1),rgba(53,223,207,.04)),var(--panel); box-shadow:0 35px 100px rgba(0,0,0,.35); }.sim-head,.sim-foot { display:flex; justify-content:space-between; gap:12px; padding:15px 18px; border-bottom:1px solid var(--line); }.sim-head span { display:flex; align-items:center; gap:6px; color:#a8b8c8; font-size:10px; }.sim-head i { width:6px;height:6px;border-radius:50%;background:var(--green);box-shadow:0 0 12px var(--green); }.sim-body { display:grid; grid-template-columns:145px 1fr; min-height:430px; }.sim-body aside { display:grid; align-content:start; gap:5px; padding:18px 11px; border-right:1px solid var(--line); }.sim-body aside b { margin:0 8px 12px; font-size:11px; }.sim-body aside span { padding:9px 10px; border-radius:7px; color:#8fa1b3; font-size:10px; }.sim-body aside span.active { color:#e8ffff;background:rgba(53,223,207,.1); }.sim-main { padding:20px; }.sim-metrics { display:grid; grid-template-columns:repeat(3,1fr); gap:9px; }.sim-metrics article { display:grid;gap:5px;padding:14px;border:1px solid var(--line);border-radius:9px;background:rgba(255,255,255,.035); }.sim-metrics small,.sim-metrics span { color:#8093a7;font-size:8px; }.sim-metrics strong { font-size:13px; }.sim-timeline { margin-top:18px;padding:17px;border:1px solid var(--line);border-radius:10px;background:rgba(3,10,18,.35); }.sim-timeline > small { color:var(--cyan);font-weight:900; }.sim-timeline div { display:grid;grid-template-columns:45px 1fr auto;gap:9px;align-items:center;padding:15px 0;border-bottom:1px solid rgba(173,197,220,.12); }.sim-timeline div:last-child { border-bottom:0; }.sim-timeline i { color:var(--cyan);font-style:normal;font-size:9px; }.sim-timeline b { font-size:11px; }.sim-timeline span { color:#7890a4;font-size:8px; }.sim-foot { border-top:1px solid var(--line);border-bottom:0;color:#91a6b9;font-size:9px; }
.product-principle { padding-top:60px; }.io-value-grid { display:grid;grid-template-columns:1fr auto 1fr auto 1fr auto 1fr;gap:10px;align-items:stretch; }.io-value-grid article { min-height:220px;padding:24px;border:1px solid var(--line);border-radius:11px;background:var(--panel); }.io-value-grid > i { align-self:center;color:var(--cyan);font-style:normal; }.io-value-grid b { color:var(--cyan);font-size:9px;letter-spacing:.12em; }.io-value-grid h3 { margin-top:43px;font-size:18px; }.io-value-grid p { font-size:12px; }
.centers-section { padding-block:100px; }.center-system { display:grid;gap:18px; }.center-module { overflow:hidden;border:1px solid var(--line);border-radius:16px;background:linear-gradient(145deg,rgba(91,140,255,.055),rgba(255,255,255,.018)); }.center-module header { display:flex;align-items:center;gap:18px;padding:25px 28px;border-bottom:1px solid var(--line); }.center-module header > span { width:40px;height:40px;display:grid;place-items:center;border-radius:10px;color:var(--cyan);background:rgba(53,223,207,.1);font-size:10px;font-weight:900; }.center-module header small { color:var(--cyan);font-weight:900; }.center-module h3 { margin:4px 0 0;font-size:24px; }.center-module footer { padding:17px 28px;border-top:1px solid var(--line);color:#c4d3e0;background:rgba(53,223,207,.04);font-size:12px;font-weight:800; }.center-io { display:grid;grid-template-columns:1fr auto 1fr auto 1fr;gap:16px;align-items:center;padding:28px; }.center-io > div { min-height:135px;padding:20px;border:1px solid var(--line);border-radius:10px;background:rgba(255,255,255,.03); }.center-io b { color:var(--cyan);font-size:10px; }.center-io p { margin:25px 0 0;font-size:13px; }.center-io > i { color:var(--cyan);font-style:normal; }.agent-row { display:grid;grid-template-columns:repeat(3,1fr);gap:12px;padding:28px; }.agent-row div { min-height:130px;display:grid;align-content:center;gap:9px;padding:20px;border:1px solid var(--line);border-radius:10px;background:rgba(255,255,255,.035); }.agent-row span { color:#90a4b7;font-size:12px; }.crm-track,.delivery-board { display:flex;align-items:stretch;gap:10px;padding:30px 28px; }.crm-track span,.delivery-board span { flex:1;min-height:100px;display:grid;place-content:center;padding:15px;border:1px solid var(--line);border-radius:9px;background:rgba(255,255,255,.035);text-align:center;font-size:12px;font-weight:800; }.crm-track i { flex:.35;align-self:center;height:1px;background:linear-gradient(90deg,var(--cyan),var(--blue)); }.delivery-board span { gap:7px; }.delivery-board small { color:#8397aa;font-size:9px;font-weight:400; }.product-cta { display:flex;align-items:center;justify-content:space-between;gap:40px;margin-block:80px;padding:42px;border:1px solid rgba(53,223,207,.3);border-radius:18px;background:linear-gradient(145deg,rgba(53,223,207,.1),rgba(91,140,255,.07)); }.product-cta > div:first-child { max-width:720px; }.product-cta h2 { font-size:clamp(30px,3.8vw,48px); }
@media(max-width:1100px){.platform-product-hero{grid-template-columns:1fr}.io-value-grid{grid-template-columns:1fr 1fr}.io-value-grid>i{display:none}.product-cta{flex-direction:column;align-items:flex-start}}
@media(max-width:720px){.sim-body{grid-template-columns:1fr}.sim-body aside{grid-template-columns:repeat(3,1fr);border-right:0;border-bottom:1px solid var(--line)}.sim-body aside b{grid-column:1/-1}.sim-metrics,.agent-row{grid-template-columns:1fr}.io-value-grid{grid-template-columns:1fr}.center-io{grid-template-columns:1fr}.center-io>i{transform:rotate(90deg);justify-self:center}.crm-track,.delivery-board{display:grid;grid-template-columns:1fr}.crm-track i{width:1px;height:12px;justify-self:center}.center-module header{padding:22px 20px}.center-module h3{font-size:20px}.product-cta{margin-block:45px;padding:25px}}
@media(max-width:920px){body:not(.home-page) .site-header{align-items:center;flex-direction:row}body:not(.home-page) .site-header .nav-links{position:absolute;left:14px;right:14px;top:calc(100% + 8px);display:none;flex-direction:column;align-items:stretch;gap:0;padding:10px;border:1px solid var(--line);border-radius:12px;background:rgba(6,15,26,.98);box-shadow:0 25px 70px rgba(0,0,0,.45)}body:not(.home-page) .site-header.menu-open .nav-links{display:flex}body:not(.home-page) .site-header .nav-links a{padding:13px 12px;border-bottom:1px solid rgba(173,197,220,.1)}body:not(.home-page) .site-header .nav-links .btn{margin-top:8px;border-bottom:0}}

/* 2026-07 visual QA corrections */
.platform-product-hero { grid-template-columns:minmax(430px,.72fr) minmax(0,1.28fr); gap:42px; min-height:620px; }
.platform-product-hero .hero-copy { position:relative; z-index:2; max-width:540px; }
.platform-product-hero h1 { font-size:clamp(40px,3.15vw,54px); line-height:1.06; }
.platform-product-hero .title-line { white-space:nowrap; }
.product-simulator { min-width:0; }
.sim-body { min-height:340px; }
.sim-main { min-width:0; }
.sim-timeline { min-height:190px; }
.centers-intro { display:grid; grid-template-columns:minmax(0,1fr) minmax(360px,.72fr); gap:80px; align-items:end; margin-bottom:34px; }
.centers-intro .heading { max-width:none; margin:0; }
.centers-intro h2 { margin:0; font-size:clamp(34px,3.5vw,50px); }
.centers-intro > p { margin:0; padding:24px; border-left:2px solid var(--cyan); color:#b6c5d4; background:linear-gradient(90deg,rgba(53,223,207,.06),transparent); }
.product-cta { display:grid; grid-template-columns:minmax(0,1fr) minmax(360px,.72fr); gap:64px; margin-block:70px; padding:40px 46px; }
.product-cta-side { display:grid; align-content:center; gap:18px; }
.cta-steps { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; }
.cta-steps span { padding:13px 10px; border:1px solid var(--line); border-radius:9px; color:#b8c8d7; background:rgba(255,255,255,.035); font-size:10px; text-align:center; }
.product-cta .actions { margin-top:0; }
.cases-hero .title-line { display:block; white-space:nowrap; }
.cases-hero h1 { font-size:clamp(42px,4.1vw,58px); }
.result-standard { border-style:solid; background:linear-gradient(135deg,rgba(53,223,207,.07),rgba(91,140,255,.04)); }
.about-heading-row { display:grid; grid-template-columns:minmax(0,1fr) minmax(380px,.78fr); gap:90px; align-items:end; margin-bottom:34px; }
.about-heading-row h2 { margin:0; font-size:clamp(34px,3.8vw,52px); }
.about-heading-row > p { margin:0; padding:22px 24px; border-left:2px solid var(--cyan); background:linear-gradient(90deg,rgba(53,223,207,.06),transparent); }
.service-ai-page main > .section:nth-of-type(2) > .heading { max-width:860px; margin-bottom:34px; }
.service-ai-page main > .section:nth-of-type(2) > .heading h2 { margin-bottom:16px; font-size:clamp(34px,3.7vw,50px); }
.service-ai-page main > .section:nth-of-type(2) > .heading > p { max-width:760px; margin:0; font-size:16px; }
@media(max-width:1100px){.platform-product-hero{grid-template-columns:1fr}.platform-product-hero .hero-copy{max-width:760px}.platform-product-hero .title-line{white-space:normal}.centers-intro,.product-cta,.about-heading-row{grid-template-columns:1fr;gap:26px}.centers-intro>p,.about-heading-row>p{max-width:760px}.cases-hero .title-line{white-space:normal}}
@media(max-width:720px){.cta-steps{grid-template-columns:1fr}.product-cta{padding:25px}.product-cta h2 br,.centers-intro h2 br,.about-heading-row h2 br{display:none}}
.sim-body aside span[role="tab"] { cursor:pointer; transition:.2s ease; }
.sim-body aside span[role="tab"]:hover { color:#e9ffff; background:rgba(53,223,207,.07); }
.sim-body aside span[role="tab"]:focus-visible { outline:2px solid var(--cyan); outline-offset:2px; }

/* Enterprise AI growth chain — shared business logic, website-only visual layer. */
.growth-chain-section{overflow:hidden;background:radial-gradient(circle at 50% 48%,rgba(53,223,207,.08),transparent 30%),rgba(255,255,255,.018)}
.growth-chain-board{position:relative;display:grid;gap:18px;padding:26px;border:1px solid rgba(151,179,210,.2);border-radius:22px;background:linear-gradient(145deg,rgba(91,140,255,.07),rgba(4,13,23,.72));box-shadow:0 35px 100px rgba(0,0,0,.24)}
.growth-chain-track{display:grid;grid-template-columns:220px minmax(0,1fr);gap:22px;align-items:center;padding:22px;border:1px solid var(--line);border-radius:15px;background:rgba(255,255,255,.028)}
.growth-chain-track header{display:grid;gap:5px}.growth-chain-track header small{color:var(--cyan);font-size:9px;font-weight:900;letter-spacing:.14em}.growth-chain-track header strong{font-size:24px}.growth-chain-track header span{color:#8fa3b7;font-size:11px;line-height:1.55}
.growth-chain-steps{display:grid;grid-template-columns:repeat(9,minmax(0,1fr));gap:7px;align-items:center}.growth-chain-steps article{min-height:112px;display:grid;align-content:center;gap:6px;padding:13px;border:1px solid rgba(151,179,210,.16);border-radius:11px;background:rgba(8,23,39,.78)}.growth-chain-steps article i{color:var(--cyan);font-size:8px;font-style:normal;font-weight:900;letter-spacing:.1em}.growth-chain-steps article b{font-size:12px;line-height:1.35}.growth-chain-steps article span{color:#8196aa;font-size:9px;line-height:1.5}.growth-chain-steps>em{color:var(--cyan);font-style:normal;text-align:center}
.internal-track{border-color:rgba(232,196,106,.2)}.internal-track header small,.internal-track .growth-chain-steps article i,.internal-track .growth-chain-steps>em{color:#e8c46a}.internal-track .growth-chain-steps article{border-color:rgba(232,196,106,.14)}
.growth-chain-core{justify-self:center;min-width:min(650px,80%);display:grid;grid-template-columns:auto auto 1fr;gap:16px;align-items:center;padding:17px 22px;border:1px solid rgba(53,223,207,.3);border-radius:14px;background:linear-gradient(90deg,rgba(53,223,207,.12),rgba(91,140,255,.1),rgba(232,196,106,.08));box-shadow:0 0 45px rgba(53,223,207,.08)}.growth-chain-core>span{color:#8fa3b7;font-size:10px}.growth-chain-core>strong{font-size:19px}.growth-chain-core>div{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:6px}.growth-chain-core i{padding:6px 8px;border:1px solid rgba(255,255,255,.1);border-radius:999px;color:#bdcad7;background:rgba(255,255,255,.035);font-size:8px;font-style:normal}
.growth-chain-note{margin:18px 0 0;color:#8fa3b7;font-size:11px;text-align:center}

.role-matrix{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}.role-card{min-height:230px;display:grid;align-content:start;gap:10px;padding:24px;border:1px solid var(--line);border-radius:14px;background:linear-gradient(150deg,rgba(91,140,255,.07),rgba(255,255,255,.025))}.role-card>i{width:38px;height:38px;display:grid;place-items:center;border-radius:10px;color:var(--cyan);background:rgba(53,223,207,.11);font-style:normal;font-size:10px;font-weight:900}.role-card h3{margin:8px 0 0}.role-card p{margin:0}.role-card span{margin-top:auto;padding-top:14px;border-top:1px solid var(--line);color:#aabaca;font-size:11px}
.mode-comparison{display:grid;grid-template-columns:1fr auto 1fr;gap:20px;align-items:stretch}.mode-column{padding:28px;border:1px solid var(--line);border-radius:16px;background:var(--panel)}.mode-column>small{color:var(--cyan);font-size:10px;font-weight:900;letter-spacing:.12em}.mode-column h3{font-size:25px}.mode-flow{display:grid;gap:9px}.mode-flow span{padding:13px 15px;border:1px solid rgba(151,179,210,.15);border-radius:9px;color:#b7c6d5;background:rgba(255,255,255,.025);font-size:12px}.mode-flow span+span::before{content:'↓';display:block;margin:-18px 0 7px;color:#667d93}.mode-vs{align-self:center;color:#e8c46a;font-size:18px;font-weight:900}.mode-column.ai-mode{border-color:rgba(53,223,207,.28);background:linear-gradient(145deg,rgba(53,223,207,.08),rgba(91,140,255,.05))}.evidence-disclaimer{margin-top:18px;padding:16px 18px;border-left:2px solid #e8c46a;color:#b8c6d4;background:rgba(232,196,106,.055);font-size:12px;line-height:1.7}

@media(max-width:1050px){.growth-chain-track{grid-template-columns:1fr}.growth-chain-steps{grid-template-columns:repeat(5,minmax(0,1fr))}.growth-chain-steps>em{display:none}.role-matrix{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:720px){.growth-chain-board{padding:16px}.growth-chain-track{padding:18px}.growth-chain-steps{grid-template-columns:1fr}.growth-chain-steps article{min-height:0}.growth-chain-core{min-width:0;width:100%;grid-template-columns:1fr;gap:8px}.growth-chain-core>div{justify-content:flex-start}.role-matrix,.mode-comparison{grid-template-columns:1fr}.mode-vs{text-align:center}.mode-vs::after{content:'↓';margin-left:8px}}
