:root {
  --bg: #070b0d;
  --bg-elevated: #0b1114;
  --panel: #0e1518;
  --panel-strong: #111a1e;
  --panel-soft: #0a1012;
  --text: #f0f3ea;
  --text-secondary: #aab4ad;
  --text-muted: #6f7c76;
  --line: rgba(211, 230, 220, 0.12);
  --line-strong: rgba(211, 230, 220, 0.22);
  --accent: #b8f34a;
  --accent-strong: #d2ff7c;
  --accent-ink: #152005;
  --cyan: #55d9d0;
  --amber: #ffba52;
  --red: #ff786f;
  --blue: #6da9ff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  --topbar-height: 72px;
  --sidebar-width: 286px;
  --content-width: 1000px;
  --radius: 18px;
  --mono: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --sans: "HarmonyOS Sans SC", "MiSans", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --serif: "Noto Serif SC", "Source Han Serif SC", STZhongsong, SimSun, serif;
}

[data-theme="light"] {
  --bg: #f3f2e9;
  --bg-elevated: #faf9f1;
  --panel: #ffffff;
  --panel-strong: #eef0e7;
  --panel-soft: #e9ece4;
  --text: #111715;
  --text-secondary: #4e5c56;
  --text-muted: #7c8882;
  --line: rgba(20, 42, 33, 0.12);
  --line-strong: rgba(20, 42, 33, 0.22);
  --accent: #79bc12;
  --accent-strong: #5e9c00;
  --accent-ink: #f8ffe9;
  --cyan: #008e87;
  --amber: #c77b00;
  --red: #d74a43;
  --blue: #326fc4;
  --shadow: 0 28px 80px rgba(33, 45, 38, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--topbar-height) + 30px);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 74% 8%, rgba(85, 217, 208, 0.08), transparent 28rem),
    radial-gradient(circle at 48% 42%, rgba(184, 243, 74, 0.045), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 70%);
  pointer-events: none;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

code,
kbd {
  font-family: var(--mono);
}

code {
  color: var(--cyan);
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 2px;
  background: transparent;
}

.page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  box-shadow: 0 0 18px var(--accent);
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--topbar-height);
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(18px) saturate(140%);
}

.brand,
.topbar-actions,
.brand-copy {
  display: flex;
  align-items: center;
}

.brand {
  gap: 13px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, var(--line));
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(184, 243, 74, 0.2), rgba(85, 217, 208, 0.08));
  box-shadow: inset 0 0 18px rgba(184, 243, 74, 0.08);
}

.brand-mark::after {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(184, 243, 74, 0.36);
  border-radius: 50%;
  content: "";
}

.brand-mark span {
  position: absolute;
  z-index: 1;
  width: 17px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: rotate(-28deg);
}

.brand-mark span:first-child { transform: translateY(-5px) rotate(-28deg); }
.brand-mark span:last-child { transform: translateY(5px) rotate(-28deg); }

.brand-copy {
  align-items: flex-start;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.topbar-actions {
  gap: 10px;
}

.endpoint-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 240px;
  padding: 7px 11px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-dot,
.live-label i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(184, 243, 74, 0.09), 0 0 12px var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  50% { opacity: 0.5; transform: scale(0.84); }
}

.icon-button,
.menu-button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--panel);
  color: var(--text-secondary);
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.icon-button:hover,
.menu-button:hover {
  border-color: var(--line-strong);
  color: var(--accent);
  transform: translateY(-1px);
}

.icon-button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

[data-theme="dark"] .sun-icon,
[data-theme="light"] .moon-icon {
  display: none;
}

.menu-button {
  display: none;
  gap: 4px;
  align-content: center;
}

.menu-button span {
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button.open span:first-child { transform: translateY(5px) rotate(45deg); }
.menu-button.open span:nth-child(2) { opacity: 0; }
.menu-button.open span:last-child { transform: translateY(-5px) rotate(-45deg); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 12px;
}

.button-small svg {
  width: 14px;
  margin-left: 5px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.button-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 10px 30px rgba(184, 243, 74, 0.12);
}

.button-primary:hover {
  background: var(--accent-strong);
  box-shadow: 0 14px 34px rgba(184, 243, 74, 0.2);
}

.button-ghost {
  border-color: var(--line-strong);
  background: color-mix(in srgb, var(--panel) 70%, transparent);
  color: var(--text);
}

.button-ghost:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
}

.sidebar {
  position: fixed;
  inset: var(--topbar-height) auto 0 0;
  z-index: 50;
  width: var(--sidebar-width);
  border-right: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-elevated) 91%, transparent);
}

.sidebar-inner {
  height: 100%;
  padding: 24px 18px;
  overflow-y: auto;
  scrollbar-color: var(--line-strong) transparent;
  scrollbar-width: thin;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  height: 42px;
  margin-bottom: 25px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--panel-soft);
  color: var(--text-muted);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.search-box:focus-within {
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  box-shadow: 0 0 0 3px rgba(184, 243, 74, 0.06);
}

.search-box svg {
  width: 16px;
  margin: 0 10px 0 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.search-box input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 12px;
}

.search-box input::placeholder {
  color: var(--text-muted);
}

.search-box kbd {
  margin-right: 8px;
  padding: 1px 6px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--text-muted);
  font-size: 9px;
}

.search-results {
  position: absolute;
  z-index: 5;
  width: calc(100% - 36px);
  max-height: 330px;
  margin-top: -18px;
  overflow-y: auto;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.search-results a,
.search-results p {
  display: block;
  margin: 0;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--text-secondary);
  font-size: 12px;
}

.search-results a:hover {
  background: rgba(184, 243, 74, 0.06);
  color: var(--accent);
}

.search-results a:last-child,
.search-results p:last-child {
  border-bottom: 0;
}

.nav-group {
  margin-bottom: 28px;
}

.nav-group > p {
  margin: 0 0 8px 11px;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-group a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 37px;
  padding: 7px 10px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: var(--text-secondary);
  font-size: 12px;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-group a span {
  width: 26px;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 9px;
}

.nav-group a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.025);
}

.nav-group a.active {
  border-color: color-mix(in srgb, var(--accent) 20%, transparent);
  background: linear-gradient(90deg, rgba(184, 243, 74, 0.12), rgba(184, 243, 74, 0.025));
  color: var(--accent);
}

.nav-group a.active span {
  color: var(--accent);
}

.sidebar-card {
  margin-top: 8px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background:
    linear-gradient(145deg, rgba(184, 243, 74, 0.07), transparent 60%),
    var(--panel);
}

.sidebar-card-label {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.sidebar-card strong {
  display: block;
  font-size: 12px;
}

.sidebar-card p {
  margin: 6px 0 10px;
  color: var(--text-muted);
  font-size: 10px;
  line-height: 1.65;
}

.sidebar-card a {
  color: var(--accent);
  font-size: 10px;
  font-weight: 750;
}

.mobile-overlay {
  position: fixed;
  inset: var(--topbar-height) 0 0;
  z-index: 45;
  background: rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(3px);
}

main {
  width: calc(100% - var(--sidebar-width));
  margin-left: var(--sidebar-width);
  padding-top: var(--topbar-height);
}

.hero,
.doc-section,
.final-cta,
footer {
  width: min(calc(100% - 64px), var(--content-width));
  margin-right: auto;
  margin-left: auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--topbar-height));
  padding: 70px 0 46px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 56px;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero-kicker i {
  width: 42px;
  height: 1px;
  background: var(--line-strong);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 5.2vw, 70px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.15;
}

.hero h1 em {
  color: var(--text-secondary);
  font-style: normal;
  font-weight: 500;
}

.hero-lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-meta div {
  display: flex;
  flex-direction: column;
}

.hero-meta strong {
  color: var(--text);
  font-family: var(--mono);
  font-size: 16px;
}

.hero-meta span {
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 10px;
}

.route-card {
  position: relative;
  padding: 16px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0, rgba(85, 217, 208, 0.1), transparent 48%),
    var(--panel);
  box-shadow: var(--shadow);
}

.route-card::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(211, 230, 220, 0.12) 1px, transparent 1px);
  background-size: 18px 18px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 60%);
  pointer-events: none;
}

.route-card-top,
.route-caption {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.route-card-top {
  padding: 3px 4px 14px;
  border-bottom: 1px solid var(--line);
}

.live-label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
}

.route-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 230px;
  padding: 28px 3px;
}

.route-node {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.node-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--bg-elevated);
  color: var(--text-secondary);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
}

.route-node-gateway .node-icon {
  width: 52px;
  height: 52px;
  border-color: rgba(184, 243, 74, 0.5);
  background: rgba(184, 243, 74, 0.12);
  color: var(--accent);
  box-shadow: 0 0 36px rgba(184, 243, 74, 0.12);
}

.route-node div {
  display: none;
}

.route-line {
  position: relative;
  z-index: 1;
  width: clamp(34px, 5vw, 62px);
  height: 1px;
  overflow: hidden;
  background: var(--line-strong);
}

.route-line i {
  position: absolute;
  inset: 0 auto 0 -15px;
  width: 15px;
  background: linear-gradient(90deg, transparent, var(--accent));
  animation: routeFlow 2.2s linear infinite;
}

.route-line:nth-of-type(2) i { animation-delay: 1.1s; }

@keyframes routeFlow {
  to { transform: translateX(86px); }
}

.route-terminal {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 10px 13px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(0, 0, 0, 0.32);
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 10px;
}

[data-theme="light"] .route-terminal {
  background: #18201d;
}

.route-terminal > span {
  color: var(--accent);
}

.route-terminal code {
  min-width: 0;
  overflow: hidden;
  color: #cbd5ce;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.terminal-cursor {
  width: 5px;
  height: 13px;
  flex: 0 0 auto;
  background: var(--accent);
  animation: blink 1s steps(2, end) infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.route-caption {
  padding: 14px 5px 3px;
}

.route-caption span::before {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
}

.hero-footnote {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 58px;
  padding: 15px 0 0;
  border-top: 1px solid var(--line);
}

.hero-footnote > span,
.section-note > span {
  flex: 0 0 auto;
  margin-top: 2px;
  padding: 3px 7px;
  border: 1px solid rgba(255, 186, 82, 0.35);
  border-radius: 5px;
  color: var(--amber);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.hero-footnote p {
  margin: 0;
  color: var(--text-muted);
  font-size: 11px;
}

.doc-section {
  position: relative;
  padding: 105px 0 28px;
  border-top: 1px solid var(--line);
}

.section-number {
  position: absolute;
  top: 106px;
  right: 0;
  color: var(--line-strong);
  font-family: var(--mono);
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
  user-select: none;
}

.section-heading {
  max-width: 750px;
  margin-bottom: 38px;
  padding-right: 88px;
}

.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(31px, 4vw, 46px);
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.section-heading > p:last-child {
  margin: 15px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
}

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

.step-card {
  position: relative;
  min-height: 238px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--panel);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.step-card::after {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 80px;
  height: 80px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.step-card:hover {
  border-color: rgba(184, 243, 74, 0.28);
  background: color-mix(in srgb, var(--panel) 92%, var(--accent));
  transform: translateY(-4px);
}

.step-index {
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 9px;
}

.step-icon {
  display: grid;
  width: 34px;
  height: 34px;
  margin: 27px 0 18px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 13px;
}

.step-card h3,
.workflow-content h3 {
  margin: 0 0 8px;
  font-size: 14px;
}

.step-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.75;
}

.callout {
  display: flex;
  gap: 15px;
  margin: 24px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--panel-soft);
}

.callout-icon {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
}

.callout strong {
  display: block;
  margin-bottom: 3px;
  font-size: 12px;
}

.callout p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 11px;
}

.callout-success { border-color: rgba(184, 243, 74, 0.25); }
.callout-success .callout-icon { color: var(--accent); }
.callout-warning { border-color: rgba(255, 186, 82, 0.3); background: rgba(255, 186, 82, 0.045); }
.callout-warning .callout-icon { color: var(--amber); }
.callout-info { border-color: rgba(85, 217, 208, 0.26); }
.callout-info .callout-icon { color: var(--cyan); }
.callout-danger { border-color: rgba(255, 120, 111, 0.3); background: rgba(255, 120, 111, 0.045); }
.callout-danger .callout-icon { color: var(--red); }

.split-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
}

.split-panel > div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}

.split-panel h3,
.practice-card h3 {
  margin: 0 0 17px;
  font-size: 15px;
}

.choice-list {
  display: grid;
  gap: 8px;
}

.choice-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--panel-soft);
  transition: border-color 180ms ease, transform 180ms ease;
}

.choice-list a:hover {
  border-color: rgba(184, 243, 74, 0.3);
  transform: translateX(3px);
}

.choice-letter {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: rgba(184, 243, 74, 0.09);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 10px;
}

.choice-list a > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.choice-list strong { font-size: 12px; }
.choice-list small { margin-top: 2px; color: var(--text-muted); font-size: 9px; }
.choice-list i { color: var(--text-muted); font-size: 11px; font-style: normal; }

.check-card {
  background:
    linear-gradient(145deg, rgba(85, 217, 208, 0.07), transparent 60%),
    var(--panel) !important;
}

.check-card-label {
  display: block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.check-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 11px;
}

.check-list li span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 8px;
}

.check-card > p {
  margin: 22px 0 0;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 10px;
}

.instruction-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.instruction-list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.instruction-index {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
}

.instruction-list h3 {
  margin: 0 0 7px;
  font-size: 14px;
}

.instruction-list p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 11px;
}

.instruction-list code,
.field-map code,
.status-row code,
.detail-content code {
  padding: 2px 5px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--panel);
  font-size: 0.92em;
}

.field-map {
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}

.field-map > div {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  padding: 9px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--text-secondary);
  font-size: 10px;
}

.field-map > div:last-child { border-bottom: 0; }
.field-map .field-map-header { background: var(--panel-soft); color: var(--text-muted); font-family: var(--mono); font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; }
.field-map strong { color: var(--text); font-size: 10px; }

.timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin-top: 30px;
}

.timeline::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 23px;
  width: 1px;
  background: linear-gradient(var(--accent), var(--line));
  content: "";
}

.timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 14px 0;
}

.timeline article > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--bg);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 9px;
}

.timeline article > div {
  padding: 11px 15px 16px;
  border-bottom: 1px solid var(--line);
}

.timeline h3 {
  margin: 0 0 7px;
  font-size: 13px;
}

.timeline p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 11px;
}

.tab-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}

.tab-list {
  display: flex;
  gap: 4px;
  padding: 8px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  background: var(--panel-soft);
}

.tab-list button {
  min-height: 35px;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.tab-list button:hover { color: var(--text); }
.tab-list button.active { border-color: var(--line); background: var(--panel); color: var(--accent); }

.tab-panel {
  padding: 22px;
}

.tab-panel[hidden] {
  display: none;
}

.path-label {
  margin: 0 0 9px;
  color: var(--text-secondary);
  font-size: 10px;
}

.path-label:not(:first-child) {
  margin-top: 20px;
}

.code-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #080c0e;
}

.code-toolbar {
  display: flex;
  align-items: center;
  min-height: 37px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #0d1316;
  color: #6f7c76;
}

.code-toolbar > span {
  display: flex;
  gap: 5px;
}

.code-toolbar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #33403a;
}

.code-toolbar i:first-child { background: #ff786f; }
.code-toolbar i:nth-child(2) { background: #ffba52; }
.code-toolbar i:last-child { background: #b8f34a; }

.code-toolbar small {
  margin-left: 12px;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.code-toolbar button {
  margin-left: auto;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: transparent;
  color: #91a098;
  font-size: 9px;
  cursor: pointer;
  transition: border-color 150ms ease, color 150ms ease;
}

.code-toolbar button:hover,
.code-toolbar button.copied {
  border-color: rgba(184, 243, 74, 0.4);
  color: #b8f34a;
}

.code-panel pre {
  margin: 0;
  padding: 18px;
  overflow-x: auto;
  color: #d0d8d3;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.8;
  tab-size: 2;
}

.code-panel pre code {
  color: inherit;
  font-family: inherit;
}

.detail-card {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--panel);
}

.detail-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 16px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.detail-card summary::-webkit-details-marker { display: none; }
.detail-card summary i { color: var(--accent); font-family: var(--mono); font-size: 15px; font-style: normal; transition: transform 180ms ease; }
.detail-card[open] summary i { transform: rotate(45deg); }

.detail-content {
  padding: 0 16px 16px;
  border-top: 1px solid var(--line);
}

.detail-content > p {
  color: var(--text-secondary);
  font-size: 10px;
}

.section-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 10px;
}

.workflow-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}

.workflow-rail {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 230px;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 50%, rgba(184, 243, 74, 0.08), transparent 55%),
    var(--panel-soft);
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.workflow-rail span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.workflow-rail span:nth-of-type(3) {
  border-color: rgba(184, 243, 74, 0.45);
  color: var(--accent);
}

.workflow-rail i {
  width: 24px;
  height: 1px;
  background: var(--line-strong);
}

.workflow-content {
  padding: 28px;
}

.workflow-content ol {
  margin: 0;
  padding-left: 18px;
  color: var(--text-secondary);
  font-size: 11px;
}

.workflow-content li { margin: 8px 0; }
.workflow-content a { color: var(--accent); }

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

.metric-card {
  position: relative;
  min-height: 220px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--panel);
  transition: border-color 180ms ease, transform 180ms ease;
}

.metric-card:hover {
  border-color: rgba(85, 217, 208, 0.3);
  transform: translateY(-3px);
}

.metric-index {
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 9px;
}

.metric-sparkline {
  display: block;
  height: 42px;
  margin: 22px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  opacity: 0.7;
}

.metric-sparkline.one { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 42'%3E%3Cpath d='M0 35 L20 31 L40 34 L60 20 L80 26 L100 13 L120 19 L140 7 L160 15 L180 9 L200 18 L220 4' fill='none' stroke='%2355d9d0' stroke-width='2'/%3E%3C/svg%3E"); }
.metric-sparkline.two { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 42'%3E%3Cpath d='M0 20 L30 20 L34 5 L39 35 L44 20 L95 20 L99 8 L104 32 L109 20 L170 20 L174 12 L178 28 L182 20 L220 20' fill='none' stroke='%23ffba52' stroke-width='2'/%3E%3C/svg%3E"); }
.metric-sparkline.three { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 42'%3E%3Cpath d='M0 32 C35 32 35 10 70 10 S105 34 140 22 S180 8 220 12' fill='none' stroke='%23b8f34a' stroke-width='2'/%3E%3C/svg%3E"); }

.metric-card h3 { margin: 0 0 8px; font-size: 14px; }
.metric-card p { margin: 0; color: var(--text-muted); font-size: 10px; }
.metric-card strong { position: absolute; bottom: 19px; color: var(--cyan); font-size: 9px; }

.monitor-panel {
  margin-top: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(85, 217, 208, 0.045), transparent 42%),
    var(--panel-soft);
}

.monitor-panel-head,
.api-config-head,
.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.monitor-panel-head span,
.guide-card-meta,
.api-config-head span,
.service-card-top span {
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.monitor-panel-head h3 {
  margin: 5px 0 0;
  font-size: 15px;
}

.monitor-panel-head > a {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 800;
}

.monitor-guide,
.service-grid,
.image-config-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.monitor-guide { margin-top: 18px; }

.monitor-guide article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--panel);
}

.guide-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.health-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(184, 243, 74, 0.09);
}

.score-chip {
  padding: 3px 6px;
  border: 1px solid rgba(85, 217, 208, 0.35);
  border-radius: 999px;
  color: var(--cyan);
}

.monitor-guide h4 {
  margin: 18px 0 7px;
  font-size: 13px;
}

.monitor-guide p,
.service-card p,
.config-steps p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 10px;
  line-height: 1.75;
}

.monitor-guide ul,
.service-card ul {
  display: grid;
  gap: 7px;
  margin: 15px 0 0;
  padding: 0;
  color: var(--text-muted);
  font-size: 9px;
  list-style: none;
}

.monitor-guide li::before,
.service-card li::before {
  margin-right: 7px;
  color: var(--accent);
  content: "↳";
  font-family: var(--mono);
}

.section-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.service-grid { margin-top: 6px; }

.service-card {
  position: relative;
  min-height: 286px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  transition: border-color 180ms ease, transform 180ms ease;
}

.service-card::after {
  position: absolute;
  right: -36px;
  top: 54px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(184, 243, 74, 0.1);
  border-radius: 50%;
  content: "";
}

.service-card-news::after { border-color: rgba(85, 217, 208, 0.12); }

.service-card:hover {
  border-color: rgba(184, 243, 74, 0.3);
  transform: translateY(-3px);
}

.service-card-top i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.service-card-news .service-card-top i { color: var(--cyan); }
.service-card h3 { margin: 38px 0 9px; font-size: 17px; }
.service-card strong { position: absolute; bottom: 23px; color: var(--cyan); font-size: 9px; }

.image-config-layout {
  grid-template-columns: 0.86fr 1.14fr;
  align-items: stretch;
}

.config-steps,
.api-config-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}

.config-steps article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  min-height: 112px;
  padding: 19px;
  border-bottom: 1px solid var(--line);
}

.config-steps article:last-child { border-bottom: 0; }

.config-steps article > span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
}

.config-steps strong {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
}

.api-config-head {
  min-height: 64px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  background: var(--panel-soft);
}

.api-config-head strong { color: var(--cyan); font-size: 10px; }

.config-field {
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr);
  gap: 4px 12px;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
}

.config-field:last-child { border-bottom: 0; }
.config-field > span { color: var(--text-secondary); font-size: 9px; font-weight: 800; }
.config-field > code { overflow: hidden; color: var(--accent); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.config-field > small { grid-column: 2; color: var(--text-muted); font-size: 8px; }
.config-field small code { color: var(--cyan); }

.capability-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel-soft);
}

.capability-strip span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-secondary);
  font-family: var(--mono);
  font-size: 8px;
}

.status-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--panel);
}

.status-row {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 106px;
  padding: 19px 22px;
  border-bottom: 1px solid var(--line);
}

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

.status-code {
  display: grid;
  width: 58px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 9px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
}

.status-auth { color: var(--red); }
.status-permission { color: var(--amber); }
.status-path { color: var(--blue); }
.status-limit { color: var(--amber); }
.status-server { color: var(--cyan); }

.status-row strong { font-size: 13px; }
.status-row p { margin: 5px 0 0; color: var(--text-secondary); font-size: 10px; }

.debug-sequence {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
  padding: 14px 17px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel-soft);
}

.debug-sequence > span {
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.debug-sequence ol {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  color: var(--text-secondary);
  counter-reset: debug;
  font-size: 9px;
  list-style: none;
}

.debug-sequence li {
  display: flex;
  align-items: center;
  counter-increment: debug;
}

.debug-sequence li::before {
  margin-right: 5px;
  color: var(--accent);
  content: counter(debug) ".";
  font-family: var(--mono);
}

.debug-sequence li:not(:last-child)::after {
  margin-left: clamp(8px, 2vw, 26px);
  color: var(--text-muted);
  content: "→";
}

.do-dont-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.practice-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--panel);
}

.practice-card > span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 3px 7px;
  border: 1px solid currentColor;
  border-radius: 5px;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.practice-do > span { color: var(--accent); }
.practice-dont > span { color: var(--red); }

.practice-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--text-secondary);
  font-size: 10px;
  list-style: none;
}

.practice-card li::before {
  margin-right: 8px;
  color: var(--text-muted);
  content: "—";
}

.final-cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 110px;
  padding: 42px;
  overflow: hidden;
  border: 1px solid rgba(184, 243, 74, 0.26);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 0, rgba(184, 243, 74, 0.18), transparent 22rem),
    radial-gradient(circle at 0 100%, rgba(85, 217, 208, 0.12), transparent 20rem),
    var(--panel);
  box-shadow: var(--shadow);
}

.final-cta > div:first-child { max-width: 600px; }
.final-cta h2 { font-size: clamp(28px, 4vw, 43px); }
.final-cta p:not(.eyebrow) { margin: 12px 0 0; color: var(--text-secondary); font-size: 12px; }
.final-actions { display: flex; flex: 0 0 auto; align-items: center; flex-direction: column; gap: 12px; }
.text-link { color: var(--text-secondary); font-size: 10px; }
.text-link:hover { color: var(--accent); }

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 26px;
  align-items: center;
  margin-top: 64px;
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 9px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand strong { color: var(--text); font-family: var(--mono); font-size: 11px; }

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  padding: 12px 14px;
  border: 1px solid rgba(184, 243, 74, 0.3);
  border-radius: 11px;
  background: var(--panel);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: rgba(184, 243, 74, 0.12);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 9px;
}

.toast p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 10px;
}

@media (max-width: 1180px) {
  :root { --sidebar-width: 260px; }
  .hero-grid { grid-template-columns: 1fr; }
  .route-card { max-width: 540px; }
  .step-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --sidebar-width: 286px; }
  .sidebar { transform: translateX(-100%); transition: transform 220ms ease; }
  .sidebar.open { transform: translateX(0); box-shadow: var(--shadow); }
  .menu-button { display: grid; }
  main { width: 100%; margin-left: 0; }
  .desktop-console-link { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr); gap: 38px; }
  .hero h1 { font-size: clamp(38px, 7vw, 58px); }
  .step-grid { grid-template-columns: repeat(4, 1fr); }
  .step-card { min-height: 250px; padding: 16px; }
  .metric-grid { grid-template-columns: 1fr; }
  .metric-card { min-height: 190px; }
}

@media (max-width: 760px) {
  :root { --topbar-height: 64px; }
  .topbar { padding: 0 14px; }
  .brand-copy small, .endpoint-pill { display: none; }
  .hero, .doc-section, .final-cta, footer { width: min(calc(100% - 32px), var(--content-width)); }
  .hero { min-height: auto; padding: 48px 0 38px; }
  .hero-kicker { margin-bottom: 34px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(35px, 10vw, 50px); }
  .hero-lead { font-size: 14px; }
  .hero-meta { gap: 18px; }
  .route-card { width: 100%; }
  .hero-footnote { margin-top: 36px; }
  .doc-section { padding-top: 80px; }
  .section-number { top: 82px; font-size: 44px; }
  .section-heading { padding-right: 62px; }
  .step-grid, .split-panel, .do-dont-grid, .monitor-guide, .service-grid, .image-config-layout { grid-template-columns: 1fr; }
  .step-card { min-height: 210px; }
  .workflow-card { grid-template-columns: 1fr; }
  .workflow-rail { min-height: 160px; padding: 20px 8px; }
  .tab-panel { padding: 14px; }
  .code-panel pre { padding: 14px; font-size: 10px; }
  .status-row { grid-template-columns: 62px 1fr; gap: 12px; padding: 17px 14px; }
  .debug-sequence { align-items: flex-start; flex-direction: column; }
  .debug-sequence ol { width: 100%; align-items: flex-start; flex-direction: column; gap: 8px; }
  .debug-sequence li:not(:last-child)::after { display: none; }
  .final-cta { align-items: flex-start; flex-direction: column; margin-top: 80px; padding: 28px; }
  .final-actions { width: 100%; align-items: stretch; }
  footer { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 480px) {
  .hero-actions, .section-actions { flex-direction: column; }
  .hero-actions .button, .section-actions .button { width: 100%; }
  .hero-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hero-meta div { padding: 10px; border: 1px solid var(--line); border-radius: 9px; }
  .route-node-gateway .node-icon { width: 46px; height: 46px; }
  .route-node .node-icon { width: 34px; height: 34px; }
  .route-line { width: 28px; }
  .field-map > div { grid-template-columns: 0.9fr 1.4fr; }
  .monitor-panel { padding: 16px; }
  .monitor-panel-head { align-items: flex-start; flex-direction: column; }
  .config-field { grid-template-columns: 82px minmax(0, 1fr); padding: 13px 14px; }
  .field-map > div > *:last-child { display: none; }
  .timeline article { gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
