:root {
  color-scheme: light;
  --site-bg: #f7f9fb;
  --site-surface: #ffffff;
  --site-panel: #f1f6f7;
  --site-ink: #0b1220;
  --site-muted: #52647a;
  --site-soft: #eaf2f4;
  --site-line: #d4e1ea;
  --site-brand: #0b6b61;
  --site-brand-strong: #084c46;
  --site-blue: #2457a6;
  --site-gold: #a66d24;
  --site-red: #ba3f2f;
  --site-green: #126f4b;
  --site-navy: #111d2f;
  --site-focus: rgba(11, 107, 97, 0.24);
  --site-shadow: 0 24px 58px rgba(17, 29, 47, 0.12);
  --site-card-shadow: 0 18px 46px rgba(17, 29, 47, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.site-page {
  margin: 0;
  min-width: 320px;
  color: var(--site-ink);
  background:
    linear-gradient(180deg, #f7f9fb 0%, #ffffff 34%, #f3f7f8 100%),
    linear-gradient(90deg, rgba(11, 107, 97, 0.06), rgba(36, 87, 166, 0.04));
}

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

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

.site-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(212, 225, 234, 0.84);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(17, 29, 47, 0.04);
}

.site-nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.site-brand img {
  width: 42px;
  height: 42px;
  display: block;
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(11, 107, 97, 0.16);
}

.site-brand strong {
  display: block;
  color: #142033;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 900;
}

.site-brand span span {
  display: block;
  margin-top: 3px;
  color: #66778d;
  font-size: 12px;
  font-weight: 760;
}

.site-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #45566b;
  font-size: 14px;
  font-weight: 760;
}

.site-links a {
  position: relative;
  padding: 10px 0;
  transition: color 0.18s ease;
}

.site-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--site-brand);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.18s ease;
}

.site-links a:hover {
  color: var(--site-brand-strong);
}

.site-links a:hover::after {
  transform: scaleX(1);
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-btn {
  min-height: 44px;
  min-width: 118px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.site-btn:hover {
  transform: translateY(-1px);
}

.site-btn:active {
  transform: translateY(0);
}

.site-btn:focus-visible,
.site-links a:focus-visible,
.site-brand:focus-visible,
.footer-brand:focus-visible,
.footer-column a:focus-visible,
.docs-toc a:focus-visible {
  outline: 3px solid var(--site-focus);
  outline-offset: 3px;
}

.site-btn.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--site-brand-strong), var(--site-brand) 74%, #0e7490);
  box-shadow: 0 16px 30px rgba(11, 107, 97, 0.24);
}

.site-btn.primary:hover {
  box-shadow: 0 20px 36px rgba(11, 107, 97, 0.3);
}

.site-btn.secondary {
  color: var(--site-navy);
  background: #ffffff;
  border-color: #c7d7e2;
  box-shadow: 0 10px 22px rgba(16, 32, 51, 0.06);
}

.site-btn.secondary:hover {
  border-color: #aebfce;
  background: #f8fafc;
}

.site-btn.inverse {
  color: var(--site-navy);
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.site-btn.inverse:hover {
  color: #0a4f49;
  background: #f1fbf8;
}

.site-btn.dark-secondary {
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.site-btn.dark-secondary:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.36);
}

.hero {
  position: relative;
  min-height: calc(100dvh - 76px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--site-line);
  background:
    linear-gradient(90deg, rgba(247, 249, 251, 0.99) 0%, rgba(247, 249, 251, 0.94) 38%, rgba(247, 249, 251, 0.22) 62%, rgba(247, 249, 251, 0.08) 100%),
    linear-gradient(135deg, #ffffff 0%, #edf6f4 48%, #eaf0f8 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 72px 0 74px;
}

.hero-content > * {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--site-brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  color: var(--site-ink);
  font-size: clamp(42px, 5.7vw, 68px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-lead {
  margin: 24px 0 0;
  color: #45566b;
  font-size: 19px;
  line-height: 1.76;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.proof-item {
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(211, 222, 234, 0.88);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.proof-item strong {
  display: block;
  color: #142033;
  font-size: 19px;
  line-height: 1.1;
}

.proof-item span {
  display: block;
  margin-top: 8px;
  color: #66778d;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.42;
}

.hero-scene {
  position: absolute;
  z-index: 1;
  top: 8%;
  right: max(-220px, calc((100vw - 1180px) / 2 - 260px));
  bottom: 8%;
  width: min(820px, 62vw);
  min-width: 660px;
  pointer-events: none;
}

.product-console {
  height: 100%;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(186, 199, 216, 0.9);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 34px 90px rgba(20, 32, 50, 0.2);
  transform: perspective(1200px) rotateY(-7deg) rotateX(1deg);
  transform-origin: center right;
}

.console-top {
  min-height: 48px;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  border-bottom: 1px solid #dce5ef;
  background: #f8fafc;
  color: #64748b;
  font-size: 12px;
  font-weight: 760;
}

.console-dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 6px;
  border-radius: 50%;
  background: #cbd5e1;
}

.console-dot:first-child {
  background: #ef4444;
}

.console-dot:nth-child(2) {
  background: #f59e0b;
}

.console-dot:nth-child(3) {
  background: #22c55e;
}

.console-top strong {
  color: #172033;
  font-size: 13px;
}

.console-body {
  height: calc(100% - 48px);
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  background: #eef3f8;
}

.console-sidebar {
  padding: 18px 12px;
  border-right: 1px solid #dce5ef;
  background: #142033;
  color: #cbd5e1;
}

.side-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 860;
}

.side-brand img {
  width: 26px;
  height: 26px;
  border-radius: 7px;
}

.side-item {
  margin-top: 8px;
  padding: 10px 11px;
  border-radius: 8px;
  color: #b8c3d3;
  font-size: 12px;
  font-weight: 760;
}

.side-item.active {
  color: #ffffff;
  background: rgba(15, 118, 110, 0.8);
}

.console-main {
  padding: 18px;
}

.console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.console-head span {
  display: block;
  color: #66778d;
  font-size: 12px;
  font-weight: 760;
}

.console-head strong {
  display: block;
  margin-top: 4px;
  color: #172033;
  font-size: 20px;
  line-height: 1.2;
}

.status-pill {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: #0f766e !important;
  background: #dff5ee;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.metric-card,
.panel-card {
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background: #ffffff;
}

.metric-card {
  padding: 14px;
}

.metric-card span,
.metric-card small {
  display: block;
  color: #66778d;
  font-size: 11px;
  font-weight: 760;
}

.metric-card strong {
  display: block;
  margin: 8px 0 6px;
  color: #172033;
  font-size: 30px;
  line-height: 1;
}

.metric-card.danger strong {
  color: var(--site-red);
}

.metric-card.good strong {
  color: var(--site-green);
}

.metric-card.warn strong {
  color: var(--site-gold);
}

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

.panel-card {
  min-height: 142px;
  padding: 15px;
}

.panel-card.wide {
  grid-row: span 2;
}

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

.panel-title strong {
  color: #172033;
  font-size: 15px;
}

.panel-title span {
  color: #66778d;
  font-size: 11px;
  font-weight: 760;
}

.client-summary {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 8px;
  background: #f8fafc;
}

.client-summary b {
  display: block;
  color: #172033;
  font-size: 16px;
}

.client-summary span {
  display: block;
  margin-top: 6px;
  color: #5f6f86;
  font-size: 12px;
  line-height: 1.5;
}

.client-summary em {
  color: var(--site-brand);
  font-style: normal;
  font-size: 12px;
  font-weight: 860;
}

.action-strip {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.action-strip span {
  padding: 9px 10px;
  border-radius: 8px;
  color: #334155;
  background: #eef3f8;
  font-size: 12px;
  font-weight: 760;
}

.journey-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin: 16px 0;
}

.journey-line i {
  height: 9px;
  border-radius: 999px;
  background: #dce5ef;
}

.journey-line i.done {
  background: #0f766e;
}

.journey-line i.active {
  background: #f59e0b;
}

.panel-card p {
  margin: 0;
  color: #5f6f86;
  font-size: 12px;
  line-height: 1.55;
}

.funnel-bars {
  display: grid;
  gap: 10px;
}

.funnel-bars i {
  width: var(--w);
  height: 15px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0f766e, #60a5fa);
}

.product-rank {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}

.product-rank span {
  color: #66778d;
  font-size: 12px;
  font-weight: 760;
}

.product-rank strong {
  color: var(--site-blue);
  font-size: 24px;
}

.section {
  padding: 86px 0;
  scroll-margin-top: 92px;
}

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

.section-head h2 {
  margin: 0;
  max-width: 720px;
  color: var(--site-ink);
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-head p {
  margin: 0;
  max-width: 460px;
  color: var(--site-muted);
  font-size: 16px;
  line-height: 1.72;
}

.site-card {
  position: relative;
  min-height: 100%;
  border: 1px solid var(--site-line);
  border-radius: 8px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 253, 255, 0.98)),
    var(--site-surface);
  box-shadow: var(--site-card-shadow);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.site-card:hover {
  border-color: #b8cbd7;
  box-shadow: 0 24px 56px rgba(17, 29, 47, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.88);
  transform: translateY(-2px);
}

.site-card .num,
.enhance-card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 32px;
  padding: 0 9px;
  border-radius: 8px;
  color: var(--site-brand-strong);
  background: #dcefeb;
  font-size: 12px;
  font-weight: 900;
}

.site-card h3,
.enhance-card h3 {
  margin: 18px 0 0;
  color: #172033;
  font-size: 21px;
  line-height: 1.28;
}

.site-card p,
.enhance-card p {
  margin: 12px 0 0;
  color: var(--site-muted);
  font-size: 15px;
  line-height: 1.72;
}

.pain-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
}

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

.pain-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 24px;
}

.pain-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--site-brand), var(--site-blue) 58%, var(--site-gold));
}

.pain-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pain-chip {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid #d4e1ea;
  border-radius: 8px;
  color: #52647a;
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 820;
}

.pain-card h3 {
  font-size: 19px;
}

.pain-card p {
  margin-bottom: 18px;
}

.pain-signal {
  display: grid;
  gap: 7px;
  margin-top: auto;
  padding: 14px;
  border: 1px solid #dbe6ee;
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fbfc, #eef6f5);
}

.pain-signal b {
  color: var(--site-brand-strong);
  font-size: 12px;
  font-weight: 900;
}

.pain-signal span {
  color: var(--site-ink);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.45;
}

.pain-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.pain-detail span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid #e0e9ef;
  border-radius: 8px;
  color: #52647a;
  background: #ffffff;
  font-size: 12px;
  font-weight: 760;
}

.capability-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 16px;
  align-items: stretch;
}

.capability-hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.98)),
    #ffffff;
}

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

.mini-dashboard span {
  padding: 12px;
  border-radius: 8px;
  color: #334155;
  background: #eef3f8;
  font-size: 13px;
  font-weight: 820;
}

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

.enhance-section,
.role-section {
  background: var(--site-panel);
  border-top: 1px solid var(--site-line);
  border-bottom: 1px solid var(--site-line);
}

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

.enhance-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 1.05fr);
  gap: 22px;
  align-items: center;
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--site-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--site-shadow);
}

.mock-chart {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background: #f8fafc;
}

.chart-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 52px;
  gap: 10px;
  align-items: center;
  color: #5f6f86;
  font-size: 12px;
  font-weight: 760;
}

.chart-row i {
  width: var(--w);
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0f766e, #60a5fa);
}

.chart-row b {
  color: #172033;
  font-size: 12px;
}

.mock-product {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background: #f8fafc;
}

.product-thumb {
  width: 92px;
  aspect-ratio: 1;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.9), rgba(37, 99, 235, 0.9)),
    #0f766e;
}

.mock-product strong,
.mock-product span,
.mock-product em {
  display: block;
}

.mock-product strong {
  color: #172033;
  font-size: 16px;
}

.mock-product span {
  margin-top: 8px;
  color: var(--site-blue);
  font-size: 14px;
  font-weight: 860;
}

.mock-product em {
  margin-top: 10px;
  color: #5f6f86;
  font-size: 12px;
  font-style: normal;
  line-height: 1.55;
}

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

.role-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background: #ffffff;
}

.role-card strong {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: #115e59;
  background: #dff5ee;
  font-size: 13px;
}

.role-card h3 {
  margin: 18px 0 0;
  color: #172033;
  font-size: 20px;
  line-height: 1.28;
}

.role-card p {
  margin: 12px 0 0;
  color: var(--site-muted);
  font-size: 15px;
  line-height: 1.72;
}

.security-band {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
  align-items: stretch;
}

.security-copy {
  padding: 34px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #172033, #115e59);
}

.security-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

.security-copy p {
  margin: 18px 0 0;
  color: #dbeafe;
  font-size: 17px;
  line-height: 1.75;
}

.security-list {
  display: grid;
  gap: 12px;
}

.security-item {
  padding: 22px;
  border: 1px solid var(--site-line);
  border-radius: 8px;
  background: #ffffff;
}

.security-item strong {
  display: block;
  color: #172033;
  font-size: 18px;
}

.security-item span {
  display: block;
  margin-top: 8px;
  color: var(--site-muted);
  line-height: 1.65;
}

.cta {
  padding: 88px 0 96px;
  scroll-margin-top: 92px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fa 100%);
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: 34px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(143, 174, 189, 0.38);
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 46%),
    linear-gradient(135deg, #102033 0%, #0f3d3d 58%, #0a4f49 100%);
  box-shadow: 0 28px 70px rgba(16, 32, 51, 0.2);
}

.cta-box .eyebrow {
  color: #99f6e4;
}

.cta-box h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(30px, 3.7vw, 46px);
  line-height: 1.12;
}

.cta-box p {
  margin: 16px 0 0;
  max-width: 780px;
  color: #e6f2ff;
  font-size: 17px;
  line-height: 1.7;
}

.cta-actions {
  display: grid;
  gap: 12px;
  justify-items: stretch;
}

.cta-actions .site-btn {
  width: 100%;
  min-height: 48px;
}

.site-footer {
  padding: 54px 0 30px;
  scroll-margin-top: 92px;
  border-top: 1px solid #d8e3ed;
  color: #5b6b7f;
  background: #f8fafc;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 0.62fr));
  gap: 34px;
  align-items: start;
}

.footer-brand-block p {
  margin: 16px 0 0;
  max-width: 420px;
  color: #5b6b7f;
  font-size: 14px;
  line-height: 1.75;
}

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

.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  box-shadow: 0 12px 26px rgba(13, 107, 99, 0.14);
}

.footer-brand strong,
.footer-brand em {
  display: block;
  font-style: normal;
}

.footer-brand strong {
  color: var(--site-navy);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
}

.footer-brand em {
  margin-top: 3px;
  color: #66778d;
  font-size: 12px;
  font-weight: 800;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.footer-badges span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid #d8e3ed;
  border-radius: 8px;
  color: #0a4f49;
  background: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-column strong {
  margin-bottom: 6px;
  color: var(--site-navy);
  font-size: 14px;
  font-weight: 900;
}

.footer-column a {
  width: fit-content;
  color: #5b6b7f;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.footer-column a:hover {
  color: var(--site-brand-strong);
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  justify-content: space-between;
  gap: 22px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid #d8e3ed;
  font-size: 13px;
  font-weight: 760;
}

.footer-legal-notice {
  display: grid;
  gap: 7px;
  max-width: 850px;
  color: #617286;
  font-size: 12px;
  font-weight: 680;
  line-height: 1.65;
}

.footer-legal-notice strong {
  color: var(--site-navy);
  font-size: 13px;
  font-weight: 900;
}

.footer-legal-notice p {
  margin: 0;
}

.docs-page {
  background:
    linear-gradient(180deg, #f7f9fb 0%, #ffffff 24%, #f3f7f8 100%),
    linear-gradient(90deg, rgba(11, 107, 97, 0.05), rgba(36, 87, 166, 0.04));
}

.docs-hero {
  padding: 74px 0 54px;
  border-bottom: 1px solid var(--site-line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(235, 246, 244, 0.9) 52%, rgba(238, 244, 252, 0.9)),
    #ffffff;
}

.docs-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 36px;
  align-items: end;
}

.docs-hero h1 {
  margin: 0;
  color: var(--site-ink);
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: 0;
}

.docs-hero p {
  margin: 20px 0 0;
  max-width: 760px;
  color: #45566b;
  font-size: 18px;
  line-height: 1.75;
}

.docs-hero-panel {
  padding: 24px;
  border: 1px solid rgba(195, 211, 224, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--site-card-shadow);
}

.docs-hero-panel span {
  display: block;
  color: var(--site-brand);
  font-size: 12px;
  font-weight: 900;
}

.docs-hero-panel strong {
  display: block;
  margin-top: 10px;
  color: #172033;
  font-size: 22px;
  line-height: 1.28;
}

.docs-hero-panel p {
  margin-top: 12px;
  color: var(--site-muted);
  font-size: 14px;
  line-height: 1.7;
}

.docs-main {
  padding: 56px 0 88px;
}

.docs-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  min-width: 0;
}

.docs-toc {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--site-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 40px rgba(17, 29, 47, 0.07);
}

.docs-toc strong {
  margin-bottom: 8px;
  color: var(--site-navy);
  font-size: 14px;
  font-weight: 900;
}

.docs-toc a {
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: #52647a;
  font-size: 13px;
  font-weight: 760;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.docs-toc a:hover {
  color: var(--site-brand-strong);
  background: #eef6f5;
}

.docs-article {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.doc-section {
  min-width: 0;
  padding: 32px;
  scroll-margin-top: 96px;
  border: 1px solid var(--site-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--site-card-shadow);
}

.doc-section h2 {
  margin: 0;
  color: var(--site-ink);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.16;
  letter-spacing: 0;
}

.doc-section > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: #45566b;
  font-size: 16px;
  line-height: 1.82;
}

.doc-callout,
.doc-note,
.doc-cta-strip {
  border-radius: 8px;
  border: 1px solid #cfe0e7;
  background: linear-gradient(180deg, #f8fbfc, #eef6f5);
}

.doc-callout {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 18px;
}

.doc-callout strong,
.doc-note strong {
  color: var(--site-brand-strong);
  font-size: 14px;
  font-weight: 900;
}

.doc-callout span,
.doc-note span {
  color: #223047;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.65;
}

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

.doc-feature {
  min-height: 168px;
  padding: 20px;
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background: #f8fafc;
}

.doc-feature strong {
  display: block;
  color: #172033;
  font-size: 18px;
}

.doc-feature p {
  margin: 10px 0 0;
  color: var(--site-muted);
  font-size: 15px;
  line-height: 1.7;
}

.doc-principles {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.doc-principles div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px;
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background: #f8fafc;
}

.doc-principles strong {
  color: var(--site-brand-strong);
  font-size: 16px;
  font-weight: 900;
}

.doc-principles p {
  margin: 0;
  color: var(--site-muted);
  font-size: 15px;
  line-height: 1.7;
}

.docs-table-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: 22px;
  overflow-x: auto;
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background: #ffffff;
}

.docs-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: #45566b;
  font-size: 14px;
}

.docs-table th,
.docs-table td {
  padding: 16px;
  border-bottom: 1px solid #e2eaf1;
  text-align: left;
  vertical-align: top;
  line-height: 1.62;
}

.docs-table th {
  color: #172033;
  background: #f1f6f7;
  font-size: 13px;
  font-weight: 900;
}

.docs-table td:first-child {
  width: 150px;
  color: var(--site-brand-strong);
  font-weight: 900;
}

.docs-table tr:last-child td {
  border-bottom: 0;
}

.role-doc-grid .doc-feature {
  min-height: 150px;
}

.doc-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.doc-process div {
  min-height: 220px;
  padding: 20px;
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background: #f8fafc;
}

.doc-process span {
  min-width: 38px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--site-brand);
  font-size: 12px;
  font-weight: 900;
}

.doc-process strong {
  display: block;
  margin-top: 18px;
  color: #172033;
  font-size: 17px;
  line-height: 1.35;
}

.doc-process p {
  margin: 10px 0 0;
  color: var(--site-muted);
  font-size: 14px;
  line-height: 1.68;
}

.doc-note {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  padding: 18px;
}

.doc-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #102033 0%, #0f3d3d 58%, #0a4f49 100%);
  box-shadow: 0 24px 58px rgba(16, 32, 51, 0.16);
}

.doc-cta-strip strong,
.doc-cta-strip span {
  display: block;
}

.doc-cta-strip strong {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.28;
}

.doc-cta-strip span {
  margin-top: 8px;
  color: #dbeafe;
  font-size: 15px;
  line-height: 1.6;
}

.legal-hero .docs-hero-panel {
  border-color: rgba(181, 199, 211, 0.95);
}

.legal-layout {
  max-width: 940px;
}

.legal-article {
  gap: 18px;
}

.legal-article .doc-section h2 {
  font-size: clamp(24px, 2.8vw, 32px);
}

.legal-article .doc-section > p:not(.eyebrow) {
  font-size: 16px;
}

.legal-subtitle {
  margin: 24px 0 0;
  color: #172033;
  font-size: 18px;
  line-height: 1.35;
}

.legal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.legal-list div {
  padding: 18px;
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background: #f8fafc;
}

.legal-list strong {
  display: block;
  color: var(--site-brand-strong);
  font-size: 16px;
  font-weight: 900;
}

.legal-list p {
  margin: 10px 0 0;
  color: var(--site-muted);
  font-size: 14px;
  line-height: 1.68;
}

@media (max-width: 1100px) {
  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-top: 0;
  }

  .hero-scene {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(760px, calc(100% - 32px));
    min-width: 0;
    height: 350px;
    margin: 0 auto 42px;
    transform: none;
  }

  .product-console {
    min-height: 350px;
    transform: none;
  }

  .console-body {
    grid-template-columns: 110px minmax(0, 1fr);
  }

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

  .console-grid {
    display: none;
  }

  .site-links {
    display: none;
  }

  .hero-content {
    padding: 56px 0 0;
  }

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

  .capability-layout,
  .security-band {
    grid-template-columns: 1fr;
  }

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

  .footer-main {
    grid-template-columns: minmax(0, 1.2fr) minmax(160px, 0.8fr);
  }

  .docs-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .docs-toc {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .docs-toc strong {
    grid-column: 1 / -1;
  }

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

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 28px, 1180px);
  }

  .site-nav-inner {
    min-height: 68px;
  }

  .site-brand img {
    width: 38px;
    height: 38px;
  }

  .site-brand span span,
  .site-actions .site-btn.secondary {
    display: none;
  }

  .site-btn {
    min-height: 44px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero {
    padding-top: 0;
  }

  .hero-scene {
    height: 260px;
    margin-bottom: 34px;
  }

  .console-top {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .console-top > span {
    display: none;
  }

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

  .console-sidebar {
    display: none;
  }

  .console-main {
    padding: 12px;
  }

  .console-head strong {
    font-size: 16px;
  }

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

  .metric-card {
    padding: 12px;
  }

  .metric-card strong {
    font-size: 24px;
  }

  .hero-content {
    padding: 38px 0 0;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-proof,
  .pain-grid,
  .capability-grid,
  .enhance-grid,
  .role-grid,
  .mini-dashboard {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .section-head {
    display: block;
    margin-bottom: 22px;
  }

  .section-head p {
    margin-top: 14px;
  }

  .enhance-card,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .enhance-card,
  .security-copy,
  .cta-box {
    padding: 26px;
  }

  .mock-product {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .product-thumb {
    width: 72px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-bottom {
    align-items: flex-start;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .docs-hero {
    padding: 46px 0 36px;
  }

  .docs-hero-inner,
  .doc-grid,
  .doc-process {
    grid-template-columns: 1fr;
  }

  .docs-hero h1 {
    font-size: 38px;
  }

  .docs-hero p {
    font-size: 16px;
  }

  .docs-main {
    padding: 34px 0 58px;
  }

  .docs-toc {
    grid-template-columns: 1fr 1fr;
    padding: 14px;
  }

  .doc-section {
    padding: 24px;
  }

  .doc-principles div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .doc-cta-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .doc-cta-strip .site-btn {
    width: 100%;
  }

  .legal-list {
    grid-template-columns: 1fr;
  }
}

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

  .site-btn {
    transition: none;
  }

  .site-btn:hover {
    transform: none;
  }

  .site-links a::after,
  .site-card {
    transition: none;
  }

  .site-card:hover {
    transform: none;
  }
}
