*,
*::before,
*::after{
  box-sizing:border-box;
}

:root{
  --doc-bg:#ffffff;
  --doc-surface:#f8fafc;
  --doc-surface-strong:#eef4ff;
  --doc-ink:#111827;
  --doc-muted:#5f6f86;
  --doc-soft:#7b8ba3;
  --doc-line:#d9e2ef;
  --doc-line-strong:#c8d5e8;
  --doc-blue:#0f4fd6;
  --doc-blue-soft:#eaf2ff;
  --doc-green:#0f766e;
  --doc-orange:#b45309;
  --doc-shadow:0 18px 48px rgba(15, 23, 42, .08);
}

html{
  scroll-behavior:smooth;
  scroll-padding-top:104px;
  -webkit-text-size-adjust:100%;
}

body.docs-page{
  margin:0;
  background:var(--doc-bg);
  color:var(--doc-ink);
  font:16px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

a{
  color:var(--doc-blue);
  text-decoration:none;
}

a:hover{
  text-decoration:underline;
  text-underline-offset:3px;
}

code{
  padding:2px 5px;
  border:1px solid var(--doc-line);
  border-radius:6px;
  background:#f3f6fb;
  color:#0f326f;
  font-family:"SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size:.92em;
}

.docs-header{
  position:sticky;
  top:0;
  z-index:20;
  border-bottom:1px solid rgba(148, 163, 184, .18);
  background:rgba(5, 9, 18, .96);
  backdrop-filter:saturate(140%) blur(12px);
  box-shadow:0 12px 30px rgba(5, 9, 18, .24);
}

.docs-header__inner{
  max-width:1440px;
  margin:0 auto;
  padding:12px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.docs-brand{
  min-width:0;
  display:flex;
  align-items:center;
  gap:10px;
  color:#f8fbff;
  font-weight:900;
}

.docs-brand:hover{
  text-decoration:none;
}

.docs-brand__logo{
  max-width:112px;
  height:38px;
  object-fit:contain;
}

.docs-brand__mark{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border:1px solid rgba(147,197,253,.24);
  border-radius:10px;
  background:rgba(255,255,255,.06);
  color:#93c5fd;
  font-weight:950;
}

.docs-brand__name{
  color:#fff;
  font-size:15px;
}

.docs-header__nav{
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  flex-wrap:wrap;
}

.docs-header__nav a,
.docs-lang{
  min-height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border:1px solid transparent;
  border-radius:10px;
  color:rgba(238,246,255,.86);
  font-size:13px;
  font-weight:800;
}

.docs-header__nav a:hover{
  border-color:rgba(147,197,253,.24);
  background:rgba(59,130,246,.13);
  color:#fff;
  text-decoration:none;
}

.docs-lang{
  gap:5px;
  color:#dbeafe;
  border-color:rgba(147,197,253,.24);
  background:rgba(59,130,246,.14);
}

.docs-shell{
  max-width:1440px;
  margin:0 auto;
  padding:0 24px 64px;
  display:grid;
  grid-template-columns:240px minmax(0, 1fr) 220px;
  gap:32px;
}

.docs-sidebar,
.docs-toc{
  position:sticky;
  top:76px;
  align-self:start;
  max-height:calc(100dvh - 92px);
  overflow:auto;
  padding:22px 0;
  scrollbar-width:thin;
  scrollbar-color:#9db7e8 transparent;
}

.docs-sidebar::-webkit-scrollbar,
.docs-toc::-webkit-scrollbar{
  width:8px;
}

.docs-sidebar::-webkit-scrollbar-thumb,
.docs-toc::-webkit-scrollbar-thumb{
  border-radius:999px;
  background:#b6c9ec;
}

.docs-sidebar__home{
  display:inline-flex;
  margin-bottom:18px;
  color:var(--doc-muted);
  font-size:13px;
  font-weight:800;
}

.docs-sidebar__title,
.docs-toc__title{
  margin-bottom:10px;
  color:#0f172a;
  font-size:12px;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.docs-sidebar__nav,
.docs-toc{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.docs-nav-group{
  border:1px solid transparent;
  border-radius:12px;
  background:transparent;
  transition:background .18s ease, border-color .18s ease;
}

.docs-nav-group[open]{
  border-color:#e1e9f6;
  background:#f8fbff;
}

.docs-nav-group summary{
  min-height:36px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:7px 10px;
  border-radius:11px;
  color:#17233a;
  cursor:pointer;
  font-size:13px;
  font-weight:950;
  list-style:none;
}

.docs-nav-group summary::-webkit-details-marker{
  display:none;
}

.docs-nav-group summary::after{
  content:"";
  width:8px;
  height:8px;
  border-right:2px solid #7c8da8;
  border-bottom:2px solid #7c8da8;
  transform:rotate(45deg) translate(-1px, -1px);
  transition:transform .18s ease, border-color .18s ease;
}

.docs-nav-group[open] summary::after{
  border-color:var(--doc-blue);
  transform:rotate(225deg) translate(-1px, -1px);
}

.docs-nav-group__panel{
  display:flex;
  flex-direction:column;
  gap:2px;
  padding:0 6px 8px 8px;
  animation:docsSubnavOpen .18s ease both;
}

.docs-nav-group__panel a{
  position:relative;
  padding-left:24px;
}

.docs-nav-group__panel a::before{
  content:"";
  position:absolute;
  left:8px;
  top:50%;
  width:4px;
  height:4px;
  border-radius:999px;
  background:#9db0ca;
  transform:translateY(-50%);
  transition:background .18s ease, transform .18s ease;
}

.docs-nav-group__panel a:hover::before{
  background:var(--doc-blue);
  transform:translateY(-50%) scale(1.45);
}

.docs-sidebar__nav a,
.docs-toc a{
  position:relative;
  display:flex;
  align-items:center;
  min-height:34px;
  padding:6px 10px;
  padding-left:15px;
  border-radius:9px;
  color:#3c4a5f;
  font-size:13px;
  font-weight:760;
  transition:color .16s ease, background .16s ease, box-shadow .16s ease, transform .16s ease;
}

.docs-sidebar__nav a:hover,
.docs-toc a:hover{
  color:var(--doc-blue);
  background:var(--doc-blue-soft);
  text-decoration:none;
}

.docs-sidebar__nav a.is-active,
.docs-toc a.is-active{
  color:#0f4fd6;
  background:linear-gradient(90deg, #eaf2ff, rgba(234,242,255,.45));
  box-shadow:inset 3px 0 0 #0f4fd6;
  font-weight:950;
  text-decoration:none;
}

.docs-sidebar__nav a.is-active::before{
  background:#0f4fd6;
  transform:translateY(-50%) scale(1.6);
}

.docs-toc a.is-active{
  transform:translateX(2px);
}

.docs-nav-group.is-current{
  border-color:#b9cef6;
  background:#fff;
  box-shadow:0 10px 24px rgba(15, 79, 214, .07);
}

.docs-nav-group.is-current summary{
  color:#0f4fd6;
}

.docs-article{
  min-width:0;
  padding-top:28px;
}

.docs-breadcrumbs{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:16px;
  color:var(--doc-soft);
  font-size:13px;
  font-weight:750;
}

.docs-breadcrumbs span{
  color:var(--doc-soft);
}

.docs-hero{
  padding:30px 0 28px;
  border-bottom:1px solid var(--doc-line);
}

.docs-kicker{
  width:max-content;
  max-width:100%;
  margin-bottom:12px;
  padding:5px 10px;
  border:1px solid #b9cef6;
  border-radius:999px;
  background:var(--doc-blue-soft);
  color:var(--doc-blue);
  font-size:12px;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.docs-hero h1{
  margin:0;
  color:#0a101f;
  font-size:clamp(34px, 4vw, 58px);
  line-height:1.02;
  letter-spacing:-.03em;
}

.docs-hero p{
  max-width:820px;
  margin:16px 0 0;
  color:#40506a;
  font-size:18px;
  line-height:1.65;
}

.docs-hero__actions{
  margin-top:20px;
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.docs-hero__actions a{
  min-height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border:1px solid #bfd2f5;
  border-radius:11px;
  background:#fff;
  color:#174ea6;
  font-size:13px;
  font-weight:900;
  box-shadow:0 10px 22px rgba(15, 79, 214, .08);
  transition:transform .16s ease, background .16s ease, box-shadow .16s ease;
}

.docs-hero__actions a:hover{
  transform:translateY(-1px);
  background:var(--doc-blue-soft);
  text-decoration:none;
  box-shadow:0 14px 28px rgba(15, 79, 214, .12);
}

.docs-meta{
  margin:22px 0 0;
  display:flex;
  align-items:stretch;
  gap:10px;
  flex-wrap:wrap;
}

.docs-meta div{
  min-width:0;
  padding:11px 13px;
  border:1px solid var(--doc-line);
  border-radius:12px;
  background:var(--doc-surface);
}

.docs-meta dt{
  margin:0 0 2px;
  color:var(--doc-soft);
  font-size:11px;
  font-weight:850;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.docs-meta dd{
  margin:0;
  color:#18243a;
  font-size:13px;
  font-weight:850;
}

.docs-section,
.docs-hero,
.docs-section h3[id]{
  scroll-margin-top:110px;
}

.docs-section{
  padding:34px 0;
  border-bottom:1px solid var(--doc-line);
}

.docs-section h2{
  margin:0 0 14px;
  color:#0f172a;
  font-size:28px;
  line-height:1.18;
  letter-spacing:-.02em;
}

.docs-section h3{
  margin:24px 0 8px;
  color:#18243a;
  font-size:18px;
  line-height:1.25;
}

.docs-section p{
  max-width:860px;
  margin:0 0 14px;
  color:#3f4f67;
}

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

.docs-card-grid--compact{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

.docs-card{
  min-width:0;
  padding:16px;
  border:1px solid var(--doc-line);
  border-radius:14px;
  background:linear-gradient(180deg, #fff, #f7faff);
  box-shadow:0 10px 28px rgba(15, 23, 42, .04);
}

.docs-card strong{
  display:block;
  margin-bottom:5px;
  color:#10213d;
  font-size:15px;
}

.docs-card span{
  display:block;
  color:#53637a;
  font-size:14px;
  line-height:1.5;
}

.docs-company-overview{
  margin-top:18px;
  display:grid;
  grid-template-columns:minmax(0, 1.05fr) minmax(260px, .95fr);
  gap:12px;
}

.docs-company-card,
.docs-contact-panel,
.docs-mini-map,
.docs-share-preview,
.docs-feature-map div,
.docs-loop-grid div{
  min-width:0;
  border:1px solid var(--doc-line);
  border-radius:16px;
  background:linear-gradient(180deg, #fff, #f7faff);
  box-shadow:0 12px 30px rgba(15, 23, 42, .055);
}

.docs-company-card,
.docs-contact-panel{
  padding:16px;
}

.docs-company-card__label{
  margin-bottom:6px;
  color:var(--doc-blue);
  font-size:11px;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.docs-company-card h3,
.docs-contact-panel h3{
  margin:0 0 8px;
  color:#10213d;
  font-size:20px;
  line-height:1.2;
}

.docs-company-card p{
  margin:0;
  color:#53637a;
}

.docs-company-card__pills{
  margin-top:14px;
  display:flex;
  gap:7px;
  flex-wrap:wrap;
}

.docs-company-card__pills span{
  min-height:28px;
  display:inline-flex;
  align-items:center;
  padding:4px 9px;
  border-radius:999px;
  background:var(--doc-blue-soft);
  color:#174ea6;
  font-size:12px;
  font-weight:900;
}

.docs-contact-panel dl{
  margin:0;
  display:grid;
  gap:8px;
}

.docs-contact-panel dl div{
  min-width:0;
  padding:9px 10px;
  border:1px solid #e4ecf8;
  border-radius:12px;
  background:#fff;
}

.docs-contact-panel dt{
  margin:0 0 2px;
  color:#7b8ba3;
  font-size:11px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.docs-contact-panel dd{
  margin:0;
  overflow:hidden;
  color:#10213d;
  font-size:14px;
  font-weight:850;
  text-overflow:ellipsis;
}

.docs-mini-map{
  grid-column:1 / -1;
  overflow:hidden;
  min-height:260px;
}

.docs-mini-map iframe{
  width:100%;
  height:100%;
  min-height:260px;
  border:0;
  display:block;
}

.docs-share-preview{
  margin-top:12px;
  display:flex;
  align-items:center;
  gap:14px;
  padding:12px;
}

.docs-share-preview img{
  width:144px;
  aspect-ratio:1.91 / 1;
  flex:0 0 144px;
  object-fit:cover;
  border-radius:12px;
  border:1px solid #dbe6f6;
}

.docs-share-preview span{
  color:var(--doc-blue);
  font-size:11px;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.docs-share-preview strong{
  display:block;
  margin-top:3px;
  color:#10213d;
  font-size:17px;
}

.docs-share-preview p{
  margin:5px 0 0;
  color:#53637a;
  font-size:14px;
}

.docs-feature-map,
.docs-loop-grid{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:10px;
}

.docs-feature-map div,
.docs-loop-grid div{
  padding:15px;
}

.docs-feature-map span,
.docs-loop-grid span{
  display:inline-flex;
  margin-bottom:8px;
  padding:4px 8px;
  border-radius:999px;
  background:var(--doc-blue-soft);
  color:var(--doc-blue);
  font-size:11px;
  font-weight:950;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.docs-feature-map strong,
.docs-loop-grid strong{
  display:block;
  color:#10213d;
  font-size:15px;
  line-height:1.35;
}

.docs-feature-map p,
.docs-loop-grid p{
  margin:7px 0 0;
  color:#53637a;
  font-size:14px;
  line-height:1.5;
}

.docs-timeline{
  margin-top:16px;
  display:grid;
  gap:10px;
}

.docs-timeline div{
  position:relative;
  min-width:0;
  display:grid;
  grid-template-columns:auto minmax(0, 1fr);
  gap:4px 12px;
  padding:14px;
  border:1px solid var(--doc-line);
  border-radius:14px;
  background:linear-gradient(180deg, #fff, #f7faff);
  transition:transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.docs-timeline div:hover{
  transform:translateY(-1px);
  border-color:#b9cef6;
  box-shadow:0 14px 34px rgba(15, 23, 42, .07);
}

.docs-timeline span{
  grid-row:1 / span 2;
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:var(--doc-blue-soft);
  color:var(--doc-blue);
  font-size:12px;
  font-weight:950;
}

.docs-timeline strong{
  color:#10213d;
  font-size:15px;
}

.docs-timeline p{
  margin:0;
  color:#53637a;
  font-size:14px;
}

.docs-status-row{
  margin:16px 0 4px;
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.docs-status-row span{
  min-height:31px;
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--tone-line, #bfd2f5);
  background:var(--tone-bg, #eef4ff);
  color:var(--tone, #174ea6);
  font-size:12px;
  font-weight:900;
}

.docs-status-row [data-tone="blue"]{
  --tone:#174ea6;
  --tone-bg:#eaf2ff;
  --tone-line:#bfd2f5;
}

.docs-status-row [data-tone="green"]{
  --tone:#0f766e;
  --tone-bg:#e8faf7;
  --tone-line:#b9ece4;
}

.docs-status-row [data-tone="orange"]{
  --tone:#b45309;
  --tone-bg:#fff7ed;
  --tone-line:#fed7aa;
}

.docs-status-row [data-tone="cyan"]{
  --tone:#0369a1;
  --tone-bg:#ecfeff;
  --tone-line:#a5f3fc;
}

.docs-check-grid,
.docs-alert-grid{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px;
}

.docs-check-grid div,
.docs-alert-grid div{
  min-width:0;
  padding:14px;
  border:1px solid var(--doc-line);
  border-radius:14px;
  background:#fff;
  box-shadow:0 10px 24px rgba(15, 23, 42, .04);
}

.docs-check-grid strong,
.docs-alert-grid strong{
  display:block;
  margin-bottom:5px;
  color:#10213d;
  font-size:14px;
}

.docs-check-grid span,
.docs-alert-grid span{
  display:block;
  color:#53637a;
  font-size:14px;
  line-height:1.5;
}

.docs-alert-grid div{
  border-left:4px solid #f59e0b;
}

.docs-process-grid,
.docs-ai-flow,
.docs-balance-map{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px;
}

.docs-process-grid div,
.docs-ai-flow div,
.docs-balance-map div{
  min-width:0;
  padding:15px;
  border:1px solid var(--doc-line);
  border-radius:15px;
  background:linear-gradient(180deg, #fff, #f7faff);
  box-shadow:0 12px 28px rgba(15, 23, 42, .045);
}

.docs-process-grid span,
.docs-balance-map span{
  display:inline-flex;
  margin-bottom:7px;
  padding:4px 8px;
  border-radius:999px;
  background:var(--doc-blue-soft);
  color:var(--doc-blue);
  font-size:11px;
  font-weight:950;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.docs-process-grid strong,
.docs-ai-flow strong,
.docs-balance-map strong{
  display:block;
  color:#10213d;
  font-size:15px;
  line-height:1.35;
}

.docs-process-grid p,
.docs-ai-flow p,
.docs-balance-map p{
  margin:7px 0 0;
  color:#53637a;
  font-size:14px;
  line-height:1.5;
}

.docs-ai-flow{
  display:flex;
  align-items:stretch;
  grid-template-columns:none;
  overflow-x:auto;
  overflow-y:hidden;
  padding-bottom:6px;
  scroll-snap-type:x proximity;
  scrollbar-width:thin;
  scrollbar-color:#9db7e8 #eef4ff;
}

.docs-ai-flow::-webkit-scrollbar{
  height:8px;
}

.docs-ai-flow::-webkit-scrollbar-track{
  border-radius:999px;
  background:#eef4ff;
}

.docs-ai-flow::-webkit-scrollbar-thumb{
  border-radius:999px;
  background:linear-gradient(90deg, #93c5fd, #2563eb);
}

.docs-ai-flow div{
  position:relative;
  flex:0 0 220px;
  scroll-snap-align:start;
}

.docs-ai-flow span{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  margin-bottom:10px;
  border-radius:12px;
  color:#fff;
  background:linear-gradient(180deg, #2563eb, #0f4fd6);
  font-size:12px;
  font-weight:950;
  box-shadow:0 10px 22px rgba(37, 99, 235, .18);
}

.docs-auth-visual{
  margin-top:16px;
  display:grid;
  grid-template-columns:220px minmax(0, 1fr);
  gap:16px;
  align-items:stretch;
}

.docs-auth-phone{
  min-height:310px;
  padding:14px;
  border:1px solid #c8d8f4;
  border-radius:30px;
  background:#0b1220;
  box-shadow:0 18px 42px rgba(15, 23, 42, .18);
}

.docs-auth-phone__bar{
  width:74px;
  height:5px;
  margin:0 auto 18px;
  border-radius:999px;
  background:#27364f;
}

.docs-auth-phone__app{
  min-height:230px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:18px;
  border-radius:22px;
  background:
    radial-gradient(circle at top right, rgba(96,165,250,.28), transparent 36%),
    linear-gradient(180deg, #111c31, #0f172a);
  color:#eaf2ff;
}

.docs-auth-phone__app span{
  color:#93c5fd;
  font-size:12px;
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.docs-auth-phone__app strong{
  margin-top:12px;
  color:#fff;
  font-size:34px;
  letter-spacing:.08em;
}

.docs-auth-phone__app small{
  margin-top:8px;
  color:#9fb2d1;
  font-size:12px;
  font-weight:800;
}

.docs-auth-steps{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px;
}

.docs-auth-steps div{
  min-width:0;
  padding:14px;
  border:1px solid var(--doc-line);
  border-radius:15px;
  background:#fff;
}

.docs-auth-steps span{
  width:32px;
  height:32px;
  display:grid;
  place-items:center;
  margin-bottom:10px;
  border-radius:11px;
  color:#0f4fd6;
  background:#eaf2ff;
  font-size:12px;
  font-weight:950;
}

.docs-auth-steps strong{
  display:block;
  color:#10213d;
  font-size:15px;
}

.docs-auth-steps p{
  margin:7px 0 0;
  color:#53637a;
  font-size:14px;
  line-height:1.5;
}

.docs-source-card{
  margin-top:16px;
  max-width:920px;
  overflow:hidden;
  border:1px solid var(--doc-line);
  border-radius:16px;
  background:#fff;
  box-shadow:var(--doc-shadow);
}

.docs-source-card__head{
  padding:15px;
  border-bottom:1px solid var(--doc-line);
  background:linear-gradient(180deg, #eef4ff, #f8fbff);
}

.docs-source-card__head span{
  display:block;
  margin-bottom:4px;
  color:var(--doc-blue);
  font-size:11px;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.docs-source-card__head strong{
  color:#10213d;
  font-size:18px;
}

.docs-source-card dl{
  margin:0;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.docs-source-card dl div{
  min-width:0;
  padding:14px;
  border-right:1px solid var(--doc-line);
  border-bottom:1px solid var(--doc-line);
}

.docs-source-card dl div:nth-child(2n){
  border-right:0;
}

.docs-source-card dl div:nth-last-child(-n + 2){
  border-bottom:0;
}

.docs-source-card dt{
  margin:0 0 4px;
  color:#10213d;
  font-size:13px;
  font-weight:950;
}

.docs-source-card dd{
  margin:0;
  color:#53637a;
  font-size:14px;
}

.docs-table{
  width:100%;
  margin-top:16px;
  border-collapse:separate;
  border-spacing:0;
  border:1px solid var(--doc-line);
  border-radius:14px;
  overflow:hidden;
  background:#fff;
}

.docs-table th,
.docs-table td{
  padding:13px 14px;
  border-bottom:1px solid var(--doc-line);
  border-right:1px solid var(--doc-line);
  vertical-align:top;
  text-align:left;
}

.docs-table th:last-child,
.docs-table td:last-child{
  border-right:0;
}

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

.docs-table th{
  color:#1b2b45;
  background:#f1f6ff;
  font-size:12px;
  font-weight:950;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.docs-table td{
  color:#40506a;
  font-size:14px;
}

.docs-table td:first-child{
  color:#14233b;
  font-weight:850;
}

.docs-definition-list{
  margin:16px 0 0;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px;
}

.docs-definition-list div{
  min-width:0;
  padding:14px;
  border-left:4px solid var(--doc-blue);
  border-radius:13px;
  background:#f7faff;
}

.docs-definition-list dt{
  margin:0 0 4px;
  color:#10213d;
  font-size:14px;
  font-weight:950;
}

.docs-definition-list dd{
  margin:0;
  color:#53637a;
  font-size:14px;
}

.docs-steps,
.docs-list{
  max-width:860px;
  margin:12px 0 0;
  padding-left:22px;
  color:#3f4f67;
}

.docs-steps li,
.docs-list li{
  margin:8px 0;
}

.docs-note{
  max-width:860px;
  margin-top:18px;
  padding:14px 16px;
  border:1px solid #b9cef6;
  border-left:4px solid var(--doc-blue);
  border-radius:14px;
  background:var(--doc-blue-soft);
  color:#223557;
}

.docs-code{
  max-width:920px;
  margin:16px 0;
  padding:16px;
  overflow:auto;
  border:1px solid #22304d;
  border-radius:14px;
  background:#0b1220;
  color:#dce8ff;
  box-shadow:var(--doc-shadow);
}

.docs-code code{
  padding:0;
  border:0;
  background:transparent;
  color:inherit;
  font-size:13px;
  line-height:1.6;
}

.docs-code--compact{
  margin-top:-8px;
}

.docs-flow{
  margin:18px 0;
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.docs-flow span{
  position:relative;
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:7px 12px;
  border:1px solid #b9cef6;
  border-radius:999px;
  background:var(--doc-blue-soft);
  color:#123775;
  font-size:13px;
  font-weight:850;
}

.docs-flow span:not(:last-child)::after{
  content:"\2192";
  margin-left:8px;
  color:#6f84aa;
}

.docs-flow--wide span{
  border-color:#b9ece4;
  background:#e8faf7;
  color:#0f766e;
}

.docs-footer{
  padding:26px 0 10px;
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.docs-footer a{
  min-height:36px;
  display:inline-flex;
  align-items:center;
  padding:7px 11px;
  border:1px solid var(--doc-line);
  border-radius:10px;
  color:#24324a;
  font-size:13px;
  font-weight:850;
}

.docs-footer a:hover{
  color:var(--doc-blue);
  background:var(--doc-blue-soft);
  text-decoration:none;
}

.docs-faq-list{
  margin-top:16px;
  display:grid;
  gap:10px;
}

.docs-faq-list details{
  border:1px solid var(--doc-line);
  border-radius:14px;
  background:#fff;
  box-shadow:0 10px 24px rgba(15, 23, 42, .04);
}

.docs-faq-list summary{
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:13px 15px;
  color:#10213d;
  cursor:pointer;
  font-size:15px;
  font-weight:950;
  list-style:none;
}

.docs-faq-list summary::-webkit-details-marker{
  display:none;
}

.docs-faq-list summary::after{
  content:"+";
  width:26px;
  height:26px;
  flex:0 0 26px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:var(--doc-blue-soft);
  color:var(--doc-blue);
  font-weight:950;
}

.docs-faq-list details[open] summary::after{
  content:"-";
}

.docs-faq-list p{
  margin:0;
  padding:0 15px 15px;
  color:#53637a;
}

@keyframes docsSubnavOpen{
  from{
    opacity:0;
    transform:translateY(-4px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes docsFadeUp{
  from{
    opacity:0;
    transform:translateY(10px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference){
  .docs-hero,
  .docs-section{
    animation:docsFadeUp .32s ease both;
  }

  .docs-card,
  .docs-check-grid div,
  .docs-alert-grid div{
    transition:transform .16s ease, border-color .16s ease, box-shadow .16s ease;
  }

  .docs-card:hover,
  .docs-check-grid div:hover,
  .docs-alert-grid div:hover{
    transform:translateY(-2px);
    border-color:#b9cef6;
    box-shadow:0 16px 34px rgba(15, 23, 42, .07);
  }
}

@media (max-width: 1180px){
  .docs-shell{
    grid-template-columns:220px minmax(0, 1fr);
  }

  .docs-toc{
    display:none;
  }
}

@media (max-width: 820px){
  html{
    scroll-padding-top:148px;
  }

  body.docs-page{
    font-size:16px;
  }

  .docs-header__inner{
    padding:10px 14px;
    align-items:flex-start;
    flex-direction:column;
  }

  .docs-header__nav{
    width:100%;
    justify-content:flex-start;
  }

  .docs-shell{
    padding:0 14px 46px;
    display:block;
  }

  .docs-sidebar{
    position:relative;
    top:auto;
    max-height:none;
    margin:0 -14px;
    padding:10px 14px;
    border-bottom:1px solid var(--doc-line);
    background:#fff;
  }

  .docs-sidebar__home,
  .docs-sidebar__title{
    display:none;
  }

  .docs-sidebar__nav{
    flex-direction:row;
    align-items:flex-start;
    overflow-x:auto;
    padding-bottom:4px;
    scroll-snap-type:x proximity;
  }

  .docs-nav-group{
    flex:0 0 230px;
    scroll-snap-align:start;
    border-color:var(--doc-line);
    background:var(--doc-surface);
  }

  .docs-nav-group[open]{
    background:#fff;
  }

  .docs-nav-group summary{
    white-space:nowrap;
  }

  .docs-sidebar__nav a{
    white-space:nowrap;
    background:var(--doc-surface);
    border:1px solid var(--doc-line);
  }

  .docs-article{
    padding-top:18px;
  }

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

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

  .docs-card-grid,
  .docs-card-grid--compact,
  .docs-company-overview,
  .docs-feature-map,
  .docs-loop-grid,
  .docs-definition-list,
  .docs-check-grid,
  .docs-alert-grid,
  .docs-process-grid,
  .docs-balance-map,
  .docs-auth-steps{
    grid-template-columns:1fr;
  }

  .docs-ai-flow div{
    flex-basis:min(76vw, 260px);
  }

  .docs-auth-visual{
    grid-template-columns:1fr;
  }

  .docs-auth-phone{
    max-width:260px;
    min-height:270px;
  }

  .docs-mini-map{
    min-height:220px;
  }

  .docs-mini-map iframe{
    min-height:220px;
  }

  .docs-share-preview{
    align-items:flex-start;
    flex-direction:column;
  }

  .docs-share-preview img{
    width:100%;
    flex-basis:auto;
  }

  .docs-source-card dl{
    grid-template-columns:1fr;
  }

  .docs-source-card dl div,
  .docs-source-card dl div:nth-child(2n),
  .docs-source-card dl div:nth-last-child(-n + 2){
    border-right:0;
    border-bottom:1px solid var(--doc-line);
  }

  .docs-source-card dl div:last-child{
    border-bottom:0;
  }

  .docs-table{
    display:block;
    overflow-x:auto;
    white-space:normal;
  }

  .docs-table table{
    width:100%;
  }
}

@media (max-width: 520px){
  html{
    scroll-padding-top:154px;
  }

  .docs-brand__logo{
    max-width:96px;
    height:34px;
  }

  .docs-header__nav a,
  .docs-lang{
    min-height:32px;
    padding:5px 8px;
    font-size:12px;
  }

  .docs-hero{
    padding-top:20px;
  }

  .docs-section{
    scroll-margin-top:154px;
    padding:28px 0;
  }

  .docs-hero,
  .docs-section h3[id]{
    scroll-margin-top:154px;
  }

  .docs-section h2{
    font-size:24px;
  }

  .docs-meta{
    flex-direction:column;
  }

  .docs-timeline div{
    grid-template-columns:1fr;
  }

  .docs-timeline span{
    grid-row:auto;
  }

  .docs-auth-phone{
    max-width:none;
  }
}
