:root {
  color-scheme: light;
  --ink: #17202a;
  --ink-soft: #53606e;
  --line: #dfe5ea;
  --line-strong: #c9d2da;
  --surface: #ffffff;
  --surface-soft: #f5f8fa;
  --surface-tint: #eefaf6;
  --brand: #087f5b;
  --brand-dark: #075e45;
  --brand-bright: #25c58a;
  --blue: #2878ff;
  --amber: #b66a00;
  --amber-bg: #fff7e6;
  --danger: #b42318;
  --danger-bg: #fff1f0;
  --shadow: 0 12px 32px rgba(23, 32, 42, 0.08);
  --header-h: 64px;
  font-family: Inter, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-bright), var(--blue), #ffb347);
  z-index: 100;
}

a {
  color: var(--brand-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

button,
input {
  font: inherit;
}

button,
.button {
  min-height: 40px;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  border-bottom: 1px solid rgba(201, 210, 218, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.brand small {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
}

.brand-text {
  display: grid;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 8px 11px;
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--surface-soft);
  color: var(--ink);
}

.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 6px;
  background: var(--ink);
  color: white;
}

.site-nav .nav-cta:hover {
  background: #2b3641;
  color: white;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: var(--ink);
  cursor: pointer;
}

.icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.home-intro {
  padding: 62px 0 48px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(8, 127, 91, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 127, 91, 0.045) 1px, transparent 1px),
    var(--surface);
  background-size: 32px 32px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 68px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.25;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
}

.home-intro h1 {
  font-size: clamp(38px, 5vw, 58px);
}

.lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.home-actions,
.title-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: white;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  border-color: #9eabb6;
  background: var(--surface-soft);
}

.button-primary {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
  color: white;
}

.button-primary:hover {
  border-color: var(--brand);
  background: var(--brand);
  color: white;
}

.status-panel {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #18212a;
  color: #eaf1f5;
  box-shadow: var(--shadow);
}

.status-top {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 14px;
  border-bottom: 1px solid #34404b;
  background: #222d37;
}

.status-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #6f7e8c;
}

.status-top span:first-child { background: #ff6b6b; }
.status-top span:nth-child(2) { background: #ffd43b; }
.status-top span:nth-child(3) { background: #51cf66; }

.status-body {
  padding: 22px;
}

.status-domain {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid #34404b;
  font: 650 13px/1.4 Consolas, monospace;
}

.status-domain::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #51cf66;
  box-shadow: 0 0 0 4px rgba(81, 207, 102, 0.12);
}

.status-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #aebbc6;
  font-size: 13px;
}

.status-row strong {
  color: #f7fafc;
  font-weight: 700;
}

.status-pill {
  padding: 2px 7px;
  border: 1px solid rgba(81, 207, 102, 0.35);
  border-radius: 999px;
  background: rgba(81, 207, 102, 0.08);
  color: #8ce99a;
  font-size: 11px;
}

.section {
  padding: 64px 0;
}

.section-muted {
  border-block: 1px solid var(--line);
  background: var(--surface-soft);
}

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

.section-head h2 {
  font-size: 28px;
}

.section-head p {
  max-width: 600px;
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.search-box {
  position: relative;
  width: min(340px, 100%);
}

.search-box .icon {
  position: absolute;
  top: 50%;
  left: 13px;
  color: #7a8793;
  transform: translateY(-50%);
  pointer-events: none;
}

.search-box input {
  width: 100%;
  height: 44px;
  padding: 0 14px 0 42px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  outline: none;
  background: white;
  color: var(--ink);
}

.search-box input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(8, 127, 91, 0.1);
}

.tutorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tutorial-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.tutorial-card:hover {
  border-color: #a9b5bf;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.tutorial-card[hidden] {
  display: none;
}

.card-preview {
  height: 190px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: #edf2f5;
}

.preview-window {
  height: 100%;
  overflow: hidden;
  border: 1px solid #b8c3cc;
  border-radius: 6px;
  background: white;
  box-shadow: 0 10px 25px rgba(23, 32, 42, 0.12);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 25px;
  padding: 0 9px;
  border-bottom: 1px solid #cdd5db;
  background: #e4e9ed;
}

.window-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #98a5b0;
}

.window-content {
  display: grid;
  grid-template-columns: 52px 1fr;
  height: calc(100% - 25px);
}

.mini-side {
  padding: 12px 8px;
  background: #17202a;
}

.mini-side span,
.mini-lines span,
.editor-lines span {
  display: block;
  height: 5px;
  margin-bottom: 8px;
  border-radius: 2px;
  background: #cbd4da;
}

.mini-side span {
  background: #51606d;
}

.mini-side span.active {
  background: var(--brand-bright);
}

.mini-main {
  padding: 12px;
}

.mini-heading {
  width: 52%;
  height: 8px;
  margin-bottom: 12px;
  border-radius: 2px;
  background: #42515e;
}

.mini-key {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 13px;
  padding: 10px;
  border: 1px solid #d5dde2;
  border-radius: 4px;
  background: #f8fafb;
}

.mini-key code {
  color: #55616c;
  font-size: 8px;
}

.mini-key b {
  padding: 3px 6px;
  border-radius: 3px;
  background: var(--brand);
  color: white;
  font-size: 7px;
}

.editor-preview {
  background: #1d2228;
}

.editor-preview .window-bar {
  border-color: #343b43;
  background: #2a3037;
}

.editor-layout {
  display: grid;
  grid-template-columns: 38px 1fr 92px;
  height: calc(100% - 25px);
  color: #d8dee4;
}

.editor-rail {
  display: grid;
  align-content: start;
  justify-content: center;
  gap: 11px;
  padding-top: 12px;
  border-right: 1px solid #323941;
  color: #8f9aa5;
}

.editor-lines {
  padding: 16px 12px;
}

.editor-lines span:nth-child(2n) { width: 72%; background: #4f7c69; }
.editor-lines span:nth-child(3n) { width: 86%; background: #6b5f83; }

.editor-panel {
  padding: 11px 9px;
  border-left: 1px solid #343b43;
  background: #242a31;
}

.editor-panel small {
  display: block;
  margin-bottom: 12px;
  color: #e9ecef;
  font-size: 7px;
}

.editor-panel span {
  display: block;
  height: 5px;
  margin: 7px 0;
  border-radius: 2px;
  background: #55616c;
}

.terminal-preview {
  background: #101820;
}

.terminal-preview .window-bar {
  border-color: #2d3b45;
  background: #1b2832;
}

.terminal-body {
  padding: 18px;
  color: #dce6eb;
  font: 9px/1.8 Consolas, monospace;
}

.terminal-body p {
  margin: 0 0 6px;
}

.terminal-body .prompt { color: #69db7c; }
.terminal-body .host { color: #74c0fc; }
.terminal-body .muted { color: #7f8d98; }

.card-body {
  padding: 22px;
}

.card-kicker {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 9px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 750;
}

.card-body h3 {
  min-height: 50px;
  font-size: 20px;
}

.card-body p {
  min-height: 78px;
  margin: 10px 0 18px;
  color: var(--ink-soft);
  font-size: 14px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.card-link:hover {
  color: var(--brand-dark);
}

.empty-state {
  display: none;
  padding: 34px;
  border: 1px dashed var(--line-strong);
  border-radius: 8px;
  color: var(--ink-soft);
  text-align: center;
}

.empty-state.visible {
  display: block;
}

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

.quick-item {
  position: relative;
  padding-left: 50px;
}

.quick-number {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: white;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
}

.quick-item h3 {
  font-size: 17px;
}

.quick-item p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.page-title {
  padding: 48px 0 38px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #70808d;
  font-size: 13px;
}

.breadcrumbs a {
  color: #566572;
  text-decoration: none;
}

.page-title h1 {
  font-size: clamp(32px, 4.5vw, 48px);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: white;
  color: #53616c;
  font-size: 12px;
  font-weight: 650;
}

.doc-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: 58px;
  justify-content: center;
  padding: 48px 0 80px;
}

.doc-nav {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  align-self: start;
  max-height: calc(100vh - var(--header-h) - 48px);
  overflow: auto;
}

.doc-nav strong {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
}

.doc-nav a {
  display: block;
  padding: 6px 9px;
  border-left: 2px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  text-decoration: none;
}

.doc-nav a:hover,
.doc-nav a.active {
  border-left-color: var(--brand);
  background: var(--surface-soft);
  color: var(--ink);
}

.doc-main {
  min-width: 0;
}

.doc-section {
  padding: 0 0 52px;
}

.doc-section + .doc-section {
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.step-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
}

.step-label b {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 5px;
  background: var(--surface-tint);
}

.doc-section h2 {
  font-size: 27px;
}

.doc-section h3 {
  margin-top: 28px;
  font-size: 19px;
}

.doc-section p {
  margin: 12px 0;
  color: #3d4a55;
}

.doc-section ul,
.doc-section ol {
  padding-left: 22px;
}

.doc-section li + li {
  margin-top: 6px;
}

.callout {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  margin: 20px 0;
  padding: 16px 17px;
  border: 1px solid var(--line-strong);
  border-left: 4px solid var(--brand);
  border-radius: 6px;
  background: var(--surface-tint);
}

.callout-warning {
  border-left-color: var(--amber);
  background: var(--amber-bg);
}

.callout-danger {
  border-left-color: var(--danger);
  background: var(--danger-bg);
}

.callout strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
}

.callout p {
  margin: 0;
  color: #4c5963;
  font-size: 14px;
}

.code-block {
  position: relative;
  margin: 18px 0;
  overflow: hidden;
  border: 1px solid #2f3c47;
  border-radius: 6px;
  background: #17202a;
  color: #e8eef2;
}

.code-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  padding: 0 10px 0 14px;
  border-bottom: 1px solid #34424e;
  color: #9dacb8;
  font-size: 12px;
}

.copy-button {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border: 1px solid #465664;
  border-radius: 4px;
  background: #222e38;
  color: #dce5eb;
  font-size: 12px;
  cursor: pointer;
}

.copy-button:hover {
  background: #2b3945;
}

.copy-button.copied {
  border-color: #4dab78;
  color: #8ce99a;
}

pre {
  margin: 0;
  padding: 18px;
  overflow-x: auto;
  font: 13px/1.65 Consolas, "SFMono-Regular", monospace;
  white-space: pre;
}

code {
  font-family: Consolas, "SFMono-Regular", monospace;
}

p code,
li code,
td code {
  padding: 2px 5px;
  border-radius: 3px;
  background: #eef2f4;
  color: #26343e;
  font-size: 0.9em;
}

.ui-shot {
  margin: 22px 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 25px rgba(23, 32, 42, 0.07);
}

.ui-shot-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 13px;
  border-bottom: 1px solid var(--line);
  background: #edf1f4;
  color: #61707c;
  font: 11px Consolas, monospace;
}

.ui-shot-bar::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff6b6b;
  box-shadow: 16px 0 #ffd43b, 32px 0 #51cf66;
  margin-right: 34px;
}

.ui-shot-content {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 250px;
}

.shot-sidebar {
  padding: 18px 12px;
  border-right: 1px solid var(--line);
  background: #f7f9fa;
}

.shot-sidebar div {
  padding: 7px 9px;
  border-radius: 4px;
  color: #63717c;
  font-size: 11px;
}

.shot-sidebar div.active {
  background: #dff4ec;
  color: var(--brand-dark);
  font-weight: 750;
}

.shot-main {
  padding: 24px;
}

.shot-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.shot-heading strong {
  font-size: 15px;
}

.shot-button {
  padding: 6px 10px;
  border-radius: 4px;
  background: var(--brand);
  color: white;
  font-size: 10px;
  font-weight: 700;
}

.shot-row {
  display: grid;
  grid-template-columns: 1fr 0.8fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: #5b6873;
  font-size: 10px;
}

.shot-row b {
  color: var(--ink);
  font-size: 11px;
}

.shot-action {
  padding: 5px 7px;
  border: 1px solid #94cdb8;
  border-radius: 4px;
  background: #eefaf6;
  color: var(--brand-dark);
  font-weight: 750;
}

.checklist {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}

.checklist .icon {
  margin-top: 3px;
  color: var(--brand);
}

.config-table {
  width: 100%;
  margin: 18px 0;
  border-collapse: collapse;
  border: 1px solid var(--line);
  font-size: 14px;
}

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

.config-table th {
  width: 160px;
  background: var(--surface-soft);
  color: #46535e;
}

.faq {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  padding: 16px 4px;
  font-weight: 700;
  cursor: pointer;
}

.faq details p {
  margin: 0;
  padding: 0 4px 17px;
}

.next-doc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface-soft);
  text-decoration: none;
}

.next-doc span {
  display: block;
  color: var(--ink-soft);
  font-size: 12px;
}

.next-doc strong {
  color: var(--ink);
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  background: #17202a;
  color: #aeb9c2;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
}

.footer-inner a {
  color: #e8eef2;
}

@media (max-width: 900px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .status-panel {
    max-width: 560px;
  }

  .tutorial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tutorial-card:last-child {
    grid-column: 1 / -1;
  }

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

  .doc-nav {
    position: static;
    display: flex;
    max-height: none;
    gap: 4px;
    padding-bottom: 10px;
    overflow-x: auto;
  }

  .doc-nav strong {
    display: none;
  }

  .doc-nav a {
    flex: 0 0 auto;
    padding: 6px 9px;
    border: 1px solid var(--line);
    border-radius: 4px;
    white-space: nowrap;
  }

  .doc-nav a.active {
    border-color: var(--brand);
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 58px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 14px;
    left: 14px;
    display: none;
    align-items: stretch;
    padding: 8px;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav .nav-cta {
    margin: 4px 0 0;
    justify-content: center;
  }

  .home-intro {
    padding: 42px 0 36px;
  }

  .lead {
    font-size: 16px;
  }

  .section {
    padding: 48px 0;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .search-box {
    width: 100%;
  }

  .tutorial-grid,
  .quick-grid {
    grid-template-columns: 1fr;
  }

  .tutorial-card:last-child {
    grid-column: auto;
  }

  .card-body h3,
  .card-body p {
    min-height: 0;
  }

  .quick-grid {
    gap: 24px;
  }

  .page-title {
    padding: 35px 0 30px;
  }

  .doc-layout {
    padding-top: 30px;
  }

  .doc-section h2 {
    font-size: 23px;
  }

  .ui-shot-content {
    grid-template-columns: 1fr;
  }

  .shot-sidebar {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .shot-sidebar div {
    white-space: nowrap;
  }

  .shot-main {
    padding: 16px;
  }

  .shot-row {
    grid-template-columns: 1fr;
  }

  .config-table,
  .config-table tbody,
  .config-table tr,
  .config-table th,
  .config-table td {
    display: block;
    width: 100%;
  }

  .config-table th {
    border-bottom: 0;
  }

  .footer-inner {
    display: grid;
  }
}

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