:root {
  --bg: #02080d;
  --panel: rgba(6, 22, 28, .74);
  --panel-strong: rgba(5, 28, 25, .82);
  --line: rgba(32, 229, 163, .24);
  --line-strong: rgba(32, 229, 163, .58);
  --green: #20e5a3;
  --text: #f7fffb;
  --muted: rgba(198, 219, 214, .76);
  --soft: rgba(198, 219, 214, .54);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 14%, rgba(32, 229, 163, .13), transparent 32%),
    radial-gradient(circle at 82% 8%, rgba(40, 118, 255, .12), transparent 30%),
    linear-gradient(180deg, #041018 0%, #02080d 42%, #02070b 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

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

.detail-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 78px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 132px;
  align-items: center;
  gap: 28px;
  padding: 0 max(36px, calc((100vw - 1190px) / 2));
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(2, 8, 13, .82);
  backdrop-filter: blur(18px);
}

.detail-brand img {
  display: block;
  width: 144px;
  height: auto;
}

.detail-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: rgba(231, 244, 239, .70);
  font-size: 15px;
}

.detail-nav a:hover {
  color: var(--green);
}

.detail-nav a.is-active {
  color: var(--green);
}

.detail-nav a.is-active::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 8px auto 0;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 16px rgba(32, 229, 163, .55);
}

.detail-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: #05110d;
  background: linear-gradient(135deg, var(--green), #23c7f7);
  font-weight: 700;
}

.detail-shell {
  width: min(1190px, calc(100vw - 72px));
  margin: 0 auto;
  padding: 34px 0 76px;
}

.detail-page {
  min-width: 0;
}

.detail-subnav {
  position: sticky;
  top: 78px;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 62px;
  margin-bottom: 24px;
  padding: 10px 14px 10px 20px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(2, 10, 14, .78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}

.detail-subnav > span {
  flex: 0 0 auto;
  color: #fff;
  font-size: 16px;
  font-weight: 850;
}

.detail-menu-group {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.detail-menu-group::-webkit-scrollbar {
  display: none;
}

.detail-menu-group a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(204, 224, 218, .72);
  background: rgba(255,255,255,.035);
  font-size: 13px;
  font-weight: 700;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.detail-menu-group a:hover,
.detail-menu-group a.is-active {
  color: var(--green);
  border-color: rgba(32, 229, 163, .38);
  background: rgba(32, 229, 163, .10);
}

.detail-menu-group a:hover {
  transform: translateY(-1px);
}

.detail-hero,
.detail-process,
.detail-panel,
.detail-cta,
.detail-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(32,229,163,.045) 48%, rgba(255,255,255,.018)),
    rgba(4, 18, 24, .82);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 28px 80px rgba(0,0,0,.26);
}

.detail-hero {
  min-height: 460px;
  display: grid;
  grid-template-columns: minmax(0, .48fr) minmax(420px, .52fr);
  align-items: center;
  gap: 52px;
  padding: 62px;
  overflow: hidden;
}

body[data-page="leadflow"] .detail-hero {
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 28px;
  padding: 46px;
}

body[data-page="leadflow"] .detail-hero h1 {
  font-size: clamp(42px, 4vw, 54px);
}

.detail-kicker,
.detail-section-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  background: rgba(32, 229, 163, .07);
  font-size: 13px;
  font-weight: 800;
}

.detail-hero h1 {
  margin: 24px 0 20px;
  color: var(--text);
  font-size: clamp(42px, 4.2vw, 62px);
  line-height: 1.08;
  font-weight: 850;
}

.detail-hero p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.detail-tags span {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(32, 229, 163, .28);
  border-radius: 999px;
  color: #bdf9df;
  background: rgba(32, 229, 163, .09);
  font-size: 13px;
  font-weight: 700;
}

.detail-visual {
  min-height: 300px;
  display: grid;
  place-items: center;
}

.scenario-visual {
  position: relative;
  width: min(100%, 500px);
  min-height: 330px;
  padding: 24px;
  border: 1px solid rgba(32, 229, 163, .34);
  border-radius: 24px;
  background:
    radial-gradient(circle at 52% 45%, rgba(32, 229, 163, .18), transparent 32%),
    linear-gradient(145deg, rgba(9, 34, 42, .86), rgba(1, 10, 14, .82));
  box-shadow: inset 0 0 46px rgba(32, 229, 163, .08), 0 28px 80px rgba(0,0,0,.24);
  overflow: hidden;
}

.scenario-visual::before {
  content: "";
  position: absolute;
  left: 52px;
  right: 52px;
  top: 52%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(32,229,163,.68), transparent);
}

.scenario-core {
  position: absolute;
  left: 50%;
  top: 46%;
  z-index: 2;
  width: 132px;
  min-height: 132px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(32, 229, 163, .48);
  border-radius: 28px;
  background: rgba(1, 16, 19, .88);
  box-shadow: 0 0 46px rgba(32, 229, 163, .22);
  transform: translate(-50%, -50%);
  text-align: center;
}

.scenario-core span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #04130d;
  background: var(--green);
  font-size: 18px;
  font-weight: 900;
}

.scenario-core strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
}

.scenario-orbit {
  position: absolute;
  z-index: 1;
  width: 148px;
  min-height: 120px;
  padding: 18px;
  border: 1px solid rgba(32, 229, 163, .24);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
}

.scenario-orbit-a { left: 24px; top: 34px; }
.scenario-orbit-b { right: 24px; top: 34px; }
.scenario-orbit-c { left: 50%; bottom: 28px; transform: translateX(-50%); }

.scenario-orbit b {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-size: 15px;
}

.scenario-orbit i {
  display: block;
  height: 10px;
  margin-top: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(32,229,163,.72), rgba(35,199,247,.28));
}

.scenario-flowline {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  display: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.scenario-flowline span {
  min-width: 0;
  padding: 8px;
  border-radius: 12px;
  color: rgba(232, 249, 244, .82);
  background: rgba(32, 229, 163, .07);
  font-size: 11px;
  line-height: 1.2;
}

.scenario-flowline em {
  display: block;
  color: var(--green);
  font-style: normal;
  font-weight: 850;
}

.visual-window {
  position: relative;
  width: min(100%, 380px);
  aspect-ratio: 1.25;
  padding: 42px 28px 24px;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: rgba(0,0,0,.38);
  box-shadow: 0 0 60px rgba(32,229,163,.16), inset 0 0 42px rgba(32,229,163,.08);
}

.visual-window > span {
  position: absolute;
  top: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.visual-window > span:nth-child(1) { right: 54px; }
.visual-window > span:nth-child(2) { right: 36px; opacity: .75; }
.visual-window > span:nth-child(3) { right: 18px; opacity: .55; }

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.visual-grid i {
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(202,255,235,.72));
}

.visual-lines {
  display: grid;
  gap: 10px;
}

.visual-lines b {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), rgba(35,199,247,.72), transparent);
}

.employee-map {
  position: relative;
  width: min(100%, 440px);
  min-height: 312px;
  padding: 26px;
  border: 1px solid rgba(32, 229, 163, .34);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(32,229,163,.10), rgba(14, 40, 52, .38)),
    rgba(2, 12, 16, .72);
  box-shadow: inset 0 0 42px rgba(32,229,163,.08), 0 28px 80px rgba(0,0,0,.30);
  overflow: hidden;
}

.employee-map::before {
  content: "";
  position: absolute;
  left: 120px;
  right: 88px;
  top: 160px;
  height: 2px;
  background: linear-gradient(90deg, rgba(32,229,163,.12), rgba(32,229,163,.86), rgba(35,199,247,.36));
}

.employee-card,
.employee-ai,
.employee-result {
  position: absolute;
  border: 1px solid rgba(32, 229, 163, .30);
  background: rgba(1, 17, 20, .72);
  box-shadow: inset 0 0 24px rgba(32,229,163,.06);
}

.employee-card {
  border-radius: 18px;
  padding: 22px;
}

.employee-card strong,
.employee-result strong {
  display: block;
  color: #fff;
  font-size: 21px;
  line-height: 1.25;
}

.employee-customer {
  left: 20px;
  top: 48px;
  width: 118px;
  min-height: 190px;
  padding: 18px;
}

.employee-avatars {
  display: flex;
  margin: 16px 0 14px;
}

.employee-avatars i {
  width: 20px;
  height: 20px;
  margin-right: -7px;
  border: 2px solid rgba(255,255,255,.86);
  border-radius: 50%;
  background: linear-gradient(135deg, #8dffcf, #22e5a3);
  box-shadow: 0 0 18px rgba(32,229,163,.28);
}

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

.employee-fields span,
.employee-strategy span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 6px;
  border-radius: 8px;
  color: rgba(230, 246, 241, .82);
  background: rgba(255,255,255,.065);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.employee-ai {
  left: 151px;
  top: 112px;
  width: 48px;
  height: 116px;
  display: grid;
  place-items: center;
  border-radius: 999px;
}

.employee-ai b {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #04120d;
  background: var(--green);
  font-size: 18px;
}

.employee-ai span {
  writing-mode: vertical-rl;
  color: rgba(235,255,248,.85);
  font-size: 13px;
  font-weight: 800;
}

.employee-strategy {
  right: 18px;
  top: 48px;
  width: 112px;
  min-height: 190px;
  display: grid;
  gap: 8px;
}

.employee-strategy strong {
  margin-bottom: 4px;
}

.employee-strategy span {
  color: rgba(213, 233, 255, .92);
  background: rgba(36, 103, 185, .24);
  border: 1px solid rgba(75, 150, 255, .18);
}

.employee-result {
  left: 151px;
  right: 18px;
  top: 254px;
  width: auto;
  min-height: 38px;
  display: flex;
  gap: 8px;
  place-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(35,199,247,.44), rgba(15,84,154,.84));
}

.employee-result span,
.employee-result strong {
  writing-mode: horizontal-tb;
  text-align: center;
}

.employee-result span {
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 700;
}

.leadflow-ui {
  width: min(100%, 440px);
  min-height: 292px;
  display: grid;
  grid-template-columns: 70px minmax(160px, 1fr) 128px;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(35, 229, 255, .58);
  border-radius: 24px;
  background:
    radial-gradient(circle at 76% 12%, rgba(35, 229, 255, .16), transparent 34%),
    linear-gradient(135deg, rgba(32,229,163,.14), rgba(8, 24, 34, .78));
  box-shadow: inset 0 0 34px rgba(35,229,255,.12), 0 0 48px rgba(35,229,255,.12);
  overflow: hidden;
}

.leadflow-side,
.leadflow-main,
.leadflow-brief {
  min-width: 0;
  border: 1px solid rgba(35, 229, 255, .22);
  background: rgba(2, 12, 18, .72);
}

.leadflow-side {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px 10px;
  border-radius: 16px;
}

.leadflow-side strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
}

.leadflow-side span {
  display: block;
  padding: 8px 7px;
  border-radius: 10px;
  color: rgba(213, 236, 231, .72);
  font-size: 11px;
  line-height: 1.15;
}

.leadflow-side span:nth-child(2) {
  color: var(--green);
  background: rgba(32,229,163,.12);
}

.leadflow-main {
  padding: 16px;
  border-radius: 18px;
}

.leadflow-title {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.leadflow-title b {
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
}

.leadflow-title em {
  flex: 0 0 auto;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(32,229,163,.13);
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
}

.leadflow-task {
  padding: 14px;
  border: 1px solid rgba(32,229,163,.25);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
}

.leadflow-task strong {
  color: #fff;
  font-size: 15px;
}

.leadflow-task p {
  margin: 6px 0 10px;
  color: rgba(211, 229, 225, .68);
  font-size: 10px;
  line-height: 1.35;
}

.leadflow-tags,
.leadflow-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.leadflow-tags span {
  padding: 4px 7px;
  border-radius: 999px;
  color: #8cffca;
  background: rgba(32,229,163,.13);
  font-size: 10px;
  font-weight: 800;
}

.leadflow-stats {
  margin-top: 12px;
}

.leadflow-stats span {
  flex: 1 1 56px;
  min-width: 0;
  padding: 9px 8px;
  border-radius: 10px;
  color: rgba(215, 238, 233, .72);
  background: rgba(35,229,255,.10);
  font-size: 10px;
}

.leadflow-stats b {
  display: block;
  color: var(--green);
  font-size: 15px;
}

.leadflow-task i {
  display: block;
  height: 7px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green) 0 68%, rgba(255,255,255,.12) 68%);
}

.leadflow-brief {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
}

.leadflow-brief span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.leadflow-brief strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
}

.leadflow-brief p {
  margin: 0;
  color: rgba(213, 236, 231, .72);
  font-size: 11px;
  line-height: 1.55;
}

.leadflow-brief div {
  min-height: 36px;
  padding: 8px 9px;
  border: 1px solid rgba(32,229,163,.18);
  border-radius: 12px;
  color: rgba(229, 246, 241, .80);
  background: rgba(255,255,255,.035);
  font-size: 11px;
  line-height: 1.25;
}

.leadflow-brief b {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  border-radius: 50%;
  color: #02110c;
  background: var(--green);
}

.detail-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

.scenario-detail {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(360px, 1.06fr);
  gap: 18px;
  margin-top: 24px;
}

.scenario-capabilities,
.scenario-industries,
.scenario-outcomes,
.scenario-summary,
.scenario-map {
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.052), rgba(32,229,163,.035) 52%, rgba(255,255,255,.018)),
    rgba(4, 18, 24, .82);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055), 0 24px 70px rgba(0,0,0,.24);
}

.scenario-capabilities {
  grid-column: 1 / -1;
  padding: 34px;
}

.scenario-section-head {
  max-width: 720px;
  margin-bottom: 26px;
}

.scenario-section-head span {
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.scenario-section-head h2 {
  margin: 10px 0 10px;
  color: #fff;
  font-size: 34px;
  line-height: 1.2;
}

.scenario-section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

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

.scenario-capability-grid article {
  min-height: 188px;
  padding: 24px;
  border: 1px solid rgba(32, 229, 163, .20);
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 18%, rgba(32, 229, 163, .14), transparent 36%),
    rgba(255,255,255,.035);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.scenario-capability-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(32, 229, 163, .56);
  box-shadow: inset 0 0 28px rgba(32, 229, 163, .08), 0 16px 42px rgba(0,0,0,.26);
}

.scenario-capability-grid span {
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.scenario-capability-grid h3 {
  margin: 38px 0 12px;
  color: #fff;
  font-size: 23px;
  line-height: 1.25;
}

.scenario-capability-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.scenario-summary {
  grid-column: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 18px;
}

.scenario-panel {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 172px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 18%, rgba(32,229,163,.12), transparent 34%),
    rgba(255,255,255,.035);
}

.scenario-panel-index {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--green);
  background: rgba(32, 229, 163, .12);
  font-size: 15px;
  font-weight: 900;
}

.scenario-panel h2 {
  margin: 4px 0 14px;
  color: #fff;
  font-size: 24px;
  line-height: 1.25;
}

.scenario-panel ul {
  grid-column: 2;
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scenario-panel li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.scenario-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(32,229,163,.68);
}

.scenario-map {
  grid-column: 2;
  position: relative;
  min-height: 560px;
  padding: 30px;
  overflow: hidden;
}

.scenario-map::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 54px 54px;
}

.scenario-map-head,
.scenario-map-track,
.scenario-map-result {
  position: relative;
  z-index: 1;
}

.scenario-map-head span,
.scenario-map-result span {
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.scenario-map-head strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: 32px;
  line-height: 1.2;
}

.scenario-map-track {
  min-height: 310px;
  margin: 34px 0;
  border: 1px solid rgba(32, 229, 163, .18);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 50%, rgba(32, 229, 163, .20), transparent 34%),
    rgba(255,255,255,.028);
}

.scenario-map-track::before,
.scenario-map-track::after {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 50%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--green), rgba(35,199,247,.62), transparent);
}

.scenario-map-track::after {
  top: 22%;
  left: 50%;
  right: auto;
  bottom: 22%;
  width: 2px;
  height: auto;
  background: linear-gradient(180deg, transparent, rgba(32,229,163,.74), transparent);
}

.scenario-map-track b {
  position: absolute;
  width: 138px;
  min-height: 66px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(32, 229, 163, .28);
  border-radius: 16px;
  color: #fff;
  background: rgba(1, 13, 18, .82);
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 850;
}

.scenario-map-track b:nth-child(1) { left: 6%; top: 42%; }
.scenario-map-track b:nth-child(2) { left: 29%; top: 15%; }
.scenario-map-track b:nth-child(3) { left: 50%; top: 42%; transform: translateX(-50%); }
.scenario-map-track b:nth-child(4) { right: 29%; bottom: 15%; }
.scenario-map-track b:nth-child(5) { right: 6%; top: 42%; }

.scenario-map-track em {
  color: var(--green);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}

.scenario-map-result {
  padding: 22px;
  border: 1px solid rgba(32, 229, 163, .24);
  border-radius: 18px;
  background: rgba(32, 229, 163, .055);
}

.scenario-map-result strong {
  display: block;
  margin-top: 10px;
  color: rgba(239, 255, 250, .90);
  font-size: 17px;
  line-height: 1.55;
}

.scenario-industries {
  grid-column: 1 / -1;
  padding: 34px;
}

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

.scenario-industry-grid article {
  min-height: 154px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}

.scenario-industry-grid h3 {
  margin: 0 0 42px;
  color: #fff;
  font-size: 22px;
  line-height: 1.25;
}

.scenario-industry-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.scenario-outcomes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 34px;
}

.scenario-outcomes h2 {
  margin: 16px 0 0;
  color: #fff;
  font-size: 30px;
  line-height: 1.22;
}

.scenario-outcomes ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scenario-outcomes li {
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(32, 229, 163, .22);
  border-radius: 16px;
  color: rgba(239, 255, 250, .88);
  background: rgba(32, 229, 163, .055);
  font-size: 15px;
  line-height: 1.45;
}

.detail-card {
  display: grid;
  grid-template-columns: minmax(0, .46fr) minmax(360px, .54fr);
  gap: 34px;
  align-items: center;
  min-height: 286px;
  padding: 34px;
  overflow: hidden;
}

.detail-card.is-reverse .detail-feature-copy {
  order: 2;
}

.detail-card.is-reverse .detail-feature-visual {
  order: 1;
}

.detail-feature-copy {
  min-width: 0;
}

.detail-feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(32, 229, 163, .10);
  font-size: 14px;
  font-weight: 850;
}

.detail-card h2,
.detail-panel h2,
.detail-process h2,
.detail-cta h2 {
  margin: 0;
  color: #fff;
  font-size: 26px;
  line-height: 1.25;
}

.detail-card ul,
.detail-panel ul {
  display: grid;
  gap: 10px 20px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

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

.detail-card li,
.detail-panel li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.detail-feature-visual {
  min-height: 218px;
  border: 1px solid rgba(32, 229, 163, .26);
  border-radius: 20px;
  background:
    radial-gradient(circle at 72% 20%, rgba(32, 229, 163, .18), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(2,14,20,.76));
  box-shadow: inset 0 0 34px rgba(32, 229, 163, .07);
  position: relative;
  overflow: hidden;
}

.detail-feature-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 42px 42px;
}

.feature-dashboard,
.feature-flowmap,
.feature-stack {
  position: relative;
  z-index: 1;
}

.feature-dashboard {
  width: min(88%, 420px);
  margin: 28px auto;
  border: 1px solid rgba(32, 229, 163, .38);
  border-radius: 18px;
  background: rgba(1, 10, 14, .72);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  overflow: hidden;
}

.feature-dashboard-top {
  height: 42px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  align-items: center;
  padding: 0 16px;
  background: rgba(255,255,255,.045);
}

.feature-dashboard-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.feature-dashboard-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
}

.feature-dashboard-body b {
  min-height: 60px;
  padding: 12px;
  border-radius: 12px;
  color: rgba(236, 255, 249, .88);
  background: rgba(32, 229, 163, .08);
  border: 1px solid rgba(32, 229, 163, .18);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.feature-dashboard-body i {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-style: normal;
  font-size: 11px;
  font-weight: 850;
}

.feature-flowmap {
  width: min(90%, 420px);
  min-height: 196px;
  margin: 22px auto;
  display: grid;
  place-items: center;
}

.feature-flowmap::before {
  content: "";
  position: absolute;
  inset: 50% 10% auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), rgba(35,199,247,.72), transparent);
}

.feature-flowmap strong {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 128px;
  height: 88px;
  border: 1px solid rgba(32, 229, 163, .42);
  border-radius: 18px;
  color: #fff;
  background: rgba(2, 16, 20, .86);
  box-shadow: 0 0 38px rgba(32, 229, 163, .15);
}

.feature-flowmap span {
  position: absolute;
  width: 138px;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(222, 245, 239, .86);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(32, 229, 163, .18);
  font-size: 12px;
  line-height: 1.25;
  text-align: center;
}

.feature-flowmap span:nth-child(1) { left: 0; top: 26px; }
.feature-flowmap span:nth-child(2) { right: 0; top: 26px; }
.feature-flowmap span:nth-child(3) { left: 0; bottom: 24px; }
.feature-flowmap span:nth-child(4) { right: 0; bottom: 24px; }

.feature-stack {
  min-height: 218px;
  display: grid;
  place-items: center;
}

.feature-stack span {
  position: absolute;
  width: min(72%, 340px);
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(32, 229, 163, .22);
  border-radius: 14px;
  color: rgba(228, 248, 243, .88);
  background: rgba(3, 17, 23, .78);
  box-shadow: 0 14px 38px rgba(0,0,0,.24);
  transform: translateY(calc((var(--i) - 1.5) * 42px)) translateX(calc((var(--i) - 1.5) * 14px));
}

.feature-stack i {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(32, 229, 163, .7);
}

.detail-card li::before,
.detail-panel li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(32,229,163,.68);
}

.detail-process {
  margin-top: 24px;
  padding: 36px;
}

.detail-process {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.detail-process h2 {
  margin-top: 16px;
}

.detail-process ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-process li {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
}

.detail-process li span {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.detail-process li strong {
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
}

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

.detail-panel {
  padding: 32px;
}

.detail-panel h2 {
  margin-top: 16px;
}

.detail-cta {
  margin-top: 24px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.detail-cta span {
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
}

.detail-cta h2 {
  margin: 8px 0 10px;
}

.detail-cta p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.detail-cta a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  color: #03110c;
  background: linear-gradient(135deg, var(--green), #23c7f7);
  font-weight: 800;
}

@media (max-width: 1120px) {
  .detail-header {
    grid-template-columns: 1fr auto;
  }

  .detail-nav {
    display: none;
  }

  .detail-shell {
    width: min(100%, calc(100vw - 32px));
  }

  .detail-subnav {
    position: relative;
    top: auto;
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-hero,
  .detail-process,
  .detail-bottom-grid {
    grid-template-columns: 1fr;
  }

  .detail-card ul,
  .detail-content-grid {
    grid-template-columns: 1fr;
  }

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

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

  .scenario-summary,
  .scenario-map {
    grid-column: 1;
  }

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

  .scenario-outcomes {
    grid-template-columns: 1fr;
  }

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

  .scenario-map {
    min-height: 500px;
  }

  .detail-card.is-reverse .detail-feature-copy,
  .detail-card.is-reverse .detail-feature-visual {
    order: initial;
  }

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

@media (max-width: 640px) {
  .detail-header {
    height: 66px;
    padding: 0 16px;
  }

  .detail-brand img {
    width: 118px;
  }

  .detail-contact {
    height: 36px;
    padding: 0 14px;
    font-size: 13px;
  }

  .detail-shell {
    padding-top: 24px;
  }

  .detail-hero,
  .detail-card,
  .detail-panel,
  .detail-process,
  .detail-cta {
    padding: 24px;
    border-radius: 18px;
  }

  .detail-feature-visual {
    min-height: 260px;
  }

  .feature-dashboard {
    width: 100%;
    margin: 18px auto;
  }

  .feature-dashboard-body {
    grid-template-columns: 1fr;
  }

  .feature-flowmap {
    width: 100%;
    min-height: 270px;
  }

  .feature-flowmap span {
    width: 46%;
    font-size: 11px;
  }

  .feature-stack span {
    width: calc(100% - 32px);
    font-size: 12px;
  }

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

  .scenario-visual {
    min-height: 520px;
  }

  .scenario-visual::before {
    display: none;
  }

  .scenario-core,
  .scenario-orbit {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: auto;
    margin-bottom: 12px;
    transform: none;
  }

  .scenario-core {
    left: auto;
    top: auto;
    min-height: 110px;
  }

  .scenario-summary,
  .scenario-capabilities,
  .scenario-industries,
  .scenario-outcomes,
  .scenario-map {
    padding: 14px;
    border-radius: 18px;
  }

  .scenario-section-head {
    margin-bottom: 18px;
  }

  .scenario-section-head h2,
  .scenario-outcomes h2 {
    font-size: 24px;
  }

  .scenario-capability-grid,
  .scenario-industry-grid,
  .scenario-outcomes ul {
    grid-template-columns: 1fr;
  }

  .scenario-capability-grid article,
  .scenario-industry-grid article,
  .scenario-outcomes li {
    min-height: 0;
    padding: 18px;
  }

  .scenario-capability-grid h3 {
    margin-top: 24px;
  }

  .scenario-industry-grid h3 {
    margin-bottom: 16px;
  }

  .scenario-panel {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 18px;
  }

  .scenario-panel-index {
    width: 42px;
    height: 42px;
  }

  .scenario-panel h2 {
    font-size: 22px;
  }

  .scenario-panel ul {
    grid-column: 1 / -1;
  }

  .scenario-map {
    min-height: 0;
  }

  .scenario-map-head strong {
    font-size: 26px;
  }

  .scenario-map-track {
    min-height: 0;
    display: grid;
    gap: 12px;
    margin: 24px 0;
    padding: 16px;
  }

  .scenario-map-track::before,
  .scenario-map-track::after {
    display: none;
  }

  .scenario-map-track b {
    position: relative;
    inset: auto !important;
    width: 100%;
    transform: none !important;
  }

  .detail-hero h1 {
    font-size: 34px;
  }

  body[data-page="leadflow"] .detail-hero {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  body[data-page="leadflow"] .detail-hero h1 {
    font-size: 34px;
  }

  .detail-visual {
    min-height: 220px;
  }

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

  .detail-cta {
    display: grid;
  }

  .employee-map {
    min-height: 520px;
    padding: 20px;
  }

  .employee-map::before {
    display: none;
  }

  .employee-customer,
  .employee-ai,
  .employee-strategy,
  .employee-result {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: auto;
    margin-bottom: 14px;
    border-radius: 16px;
  }

  .employee-ai {
    height: 82px;
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  .employee-ai span,
  .employee-result span,
  .employee-result strong {
    writing-mode: horizontal-tb;
  }

  .employee-result {
    height: 72px;
  }

  .leadflow-ui {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .leadflow-side {
    display: none;
  }

  .leadflow-main,
  .leadflow-brief {
    padding: 14px;
  }
}
