/* NimbusDrop — site stylesheet */

:root {
  --bg: #f6f7fb;
  --bg-alt: #ffffff;
  --surface: #ffffff;
  --border: #e3e6ee;
  --text: #1b1f2b;
  --text-muted: #656b7a;
  --text-faint: #9298a8;
  --brand: #4457f0;
  --brand-dark: #2f3fc0;
  --brand-light: #eef0ff;
  --accent: #14b8a6;
  --danger: #e0455a;
  --warn: #e08b2b;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(20, 24, 40, 0.06);
  --shadow: 0 4px 16px rgba(20, 24, 40, 0.08);
  --shadow-lg: 0 12px 32px rgba(20, 24, 40, 0.12);
  --header-h: 64px;
  --sidebar-w: 240px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #14161f;
    --bg-alt: #191c27;
    --surface: #1d2030;
    --border: #2b2f42;
    --text: #eceef5;
    --text-muted: #a4a9bc;
    --text-faint: #6b7086;
    --brand: #6b7bff;
    --brand-dark: #8b98ff;
    --brand-light: #262a4a;
    --accent: #2fd6c0;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.45);
  }
}

:root[data-theme="dark"] {
  --bg: #14161f;
  --bg-alt: #191c27;
  --surface: #1d2030;
  --border: #2b2f42;
  --text: #eceef5;
  --text-muted: #a4a9bc;
  --text-faint: #6b7086;
  --brand: #6b7bff;
  --brand-dark: #8b98ff;
  --brand-light: #262a4a;
  --accent: #2fd6c0;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.25; margin: 0 0 12px; font-weight: 650; letter-spacing: -0.01em; }
p { margin: 0 0 14px; color: var(--text-muted); }
ul, ol { margin: 0 0 14px; padding-left: 20px; color: var(--text-muted); }
code { font-family: var(--mono); background: var(--brand-light); padding: 2px 6px; border-radius: 4px; font-size: 0.9em; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-size: 14px; font-weight: 600; cursor: pointer;
  padding: 10px 18px; border-radius: var(--radius-sm); border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-secondary { background: var(--surface); color: var(--text); border-color: var(--border); }
.btn-secondary:hover { border-color: var(--brand); color: var(--brand); }
.btn-ghost { background: transparent; color: var(--text-muted); }
.btn-ghost:hover { background: var(--brand-light); color: var(--brand); }
.btn-sm { padding: 6px 12px; font-size: 13px; }
.btn-lg { padding: 13px 26px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-danger { background: var(--danger); color: #fff; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; }

/* ---------- top nav (marketing pages) ---------- */
.topnav {
  position: sticky; top: 0; z-index: 40; height: var(--header-h);
  background: color-mix(in srgb, var(--bg-alt) 92%, transparent);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--border);
}
.topnav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 750; font-size: 18px; color: var(--text); }
.brand svg { flex-shrink: 0; }
.topnav-links { display: flex; align-items: center; gap: 6px; }
.topnav-links a.navlink {
  padding: 8px 14px; border-radius: var(--radius-sm); color: var(--text-muted); font-weight: 550; font-size: 14px;
}
.topnav-links a.navlink:hover { background: var(--brand-light); color: var(--brand); text-decoration: none; }
.topnav-links a.navlink.active { color: var(--brand); }
.topnav-actions { display: flex; align-items: center; gap: 10px; }
.navburger { display: none; background: none; border: none; padding: 8px; cursor: pointer; }
.navburger span { display: block; width: 20px; height: 2px; background: var(--text); margin: 4px 0; border-radius: 2px; }

/* ---------- hero ---------- */
.hero { padding: 84px 0 64px; text-align: center; }
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--brand);
  background: var(--brand-light); padding: 6px 14px; border-radius: 999px; margin-bottom: 20px;
}
.hero h1 { font-size: 44px; max-width: 720px; margin: 0 auto 18px; }
.hero p.lead { font-size: 17px; max-width: 560px; margin: 0 auto 28px; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.hero-stats .stat { text-align: center; }
.hero-stats .stat strong { display: block; font-size: 26px; font-weight: 750; }
.hero-stats .stat span { font-size: 13px; color: var(--text-faint); }

/* ---------- sections ---------- */
.section { padding: 64px 0; }
.section-head { text-align: center; max-width: 560px; margin: 0 auto 40px; }
.section-head .kicker { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent); }
.section-head h2 { font-size: 30px; margin-top: 8px; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ---------- feature grid ---------- */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.feature-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: var(--shadow-sm);
}
.feature-card .icon {
  width: 42px; height: 42px; border-radius: var(--radius); background: var(--brand-light);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--brand);
}
.feature-card h3 { font-size: 16px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; margin-bottom: 0; }

/* ---------- app shell (files.html) ---------- */
.app-shell { display: flex; min-height: calc(100vh - var(--header-h)); }
.sidebar {
  width: var(--sidebar-w); flex-shrink: 0; border-right: 1px solid var(--border); background: var(--bg-alt);
  padding: 20px 14px; position: sticky; top: var(--header-h); height: calc(100vh - var(--header-h)); overflow-y: auto;
}
.sidebar-section { margin-bottom: 22px; }
.sidebar-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-faint); padding: 0 10px; margin-bottom: 8px; }
.sidebar a.sidelink {
  display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: var(--radius-sm);
  color: var(--text-muted); font-size: 14px; font-weight: 550; margin-bottom: 2px;
}
.sidebar a.sidelink:hover { background: var(--brand-light); color: var(--brand); text-decoration: none; }
.sidebar a.sidelink.active { background: var(--brand-light); color: var(--brand); }
.sidebar a.sidelink svg { flex-shrink: 0; opacity: 0.85; }
.storage-meter { padding: 12px 10px; }
.storage-bar { height: 6px; border-radius: 999px; background: var(--border); overflow: hidden; margin: 10px 0 8px; }
.storage-bar > div { height: 100%; background: linear-gradient(90deg, var(--brand), var(--accent)); border-radius: 999px; }
.storage-meter small { color: var(--text-faint); font-size: 12px; }

.main-panel { flex: 1; padding: 28px 32px 60px; min-width: 0; }
.panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; flex-wrap: wrap; gap: 14px; }
.panel-head h1 { font-size: 22px; margin: 0; }
.panel-tools { display: flex; align-items: center; gap: 10px; }
.search-box {
  display: flex; align-items: center; gap: 8px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 8px 12px; min-width: 240px;
}
.search-box input { border: none; outline: none; background: none; color: var(--text); font-size: 14px; width: 100%; font-family: var(--font); }
.search-box svg { color: var(--text-faint); flex-shrink: 0; }
.view-toggle { display: flex; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.view-toggle button { border: none; background: var(--surface); padding: 8px 10px; cursor: pointer; color: var(--text-faint); }
.view-toggle button.active { background: var(--brand-light); color: var(--brand); }

.breadcrumbs { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-faint); margin-bottom: 16px; }
.breadcrumbs a { color: var(--text-muted); }

/* file grid */
.file-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); gap: 14px; }
.file-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px;
  cursor: pointer; transition: border-color 0.15s, box-shadow 0.15s;
}
.file-card:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.file-card .thumb {
  height: 84px; border-radius: var(--radius-sm); background: var(--brand-light); display: flex; align-items: center;
  justify-content: center; margin-bottom: 12px; color: var(--brand); font-size: 28px; font-weight: 700;
}
.file-card .fname { font-size: 13.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px; }
.file-card .fmeta { font-size: 12px; color: var(--text-faint); }

/* file list/table */
.file-table { width: 100%; border-collapse: collapse; }
.file-table th { text-align: left; font-size: 12px; color: var(--text-faint); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; padding: 10px 12px; border-bottom: 1px solid var(--border); }
.file-table td { padding: 12px; border-bottom: 1px solid var(--border); font-size: 14px; vertical-align: middle; }
.file-table tr:hover td { background: var(--brand-light); }
.file-row-name { display: flex; align-items: center; gap: 10px; font-weight: 550; }
.file-icon { width: 30px; height: 30px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: #fff; flex-shrink: 0; }
.ic-zip { background: #d99a30; }
.ic-doc { background: #4457f0; }
.ic-img { background: #14b8a6; }
.ic-vid { background: #e0455a; }
.ic-pdf { background: #c0392b; }
.ic-aud { background: #8e44ad; }
.ic-iso { background: #34495e; }
.ic-csv { background: #27ae60; }
.tag { display: inline-block; font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 999px; background: var(--brand-light); color: var(--brand); }
.tag.shared { background: #fff1d6; color: #96650c; }
:root[data-theme="dark"] .tag.shared, @media (prefers-color-scheme: dark) { }

/* ---------- share / file detail page ---------- */
.detail-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 32px; align-items: start; }
.preview-box {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 40px; display: flex; align-items: center; justify-content: center; min-height: 340px;
  box-shadow: var(--shadow-sm);
}
.preview-placeholder { text-align: center; color: var(--text-faint); }
.preview-placeholder .big-icon { width: 88px; height: 88px; border-radius: var(--radius-lg); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 32px; font-weight: 700; color: #fff; }
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-sm); }
.info-card h2 { font-size: 18px; margin-bottom: 4px; word-break: break-word; }
.info-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 13.5px; }
.info-row:last-child { border-bottom: none; }
.info-row span:first-child { color: var(--text-faint); }
.info-row span:last-child { font-weight: 600; }
.download-block { margin-top: 18px; }
.progress-track { height: 8px; background: var(--border); border-radius: 999px; overflow: hidden; margin-top: 12px; display: none; }
.progress-track > div { height: 100%; width: 0%; background: linear-gradient(90deg, var(--brand), var(--accent)); transition: width 0.2s linear; }
.comments { margin-top: 28px; }
.comment { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.avatar { width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 13px; }
.comment-body strong { font-size: 13.5px; }
.comment-body time { font-size: 12px; color: var(--text-faint); margin-left: 8px; }
.comment-body p { margin: 4px 0 0; font-size: 13.5px; }

/* related files */
.related-list { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.related-item { display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--surface); }
.related-item .fname { font-size: 13px; font-weight: 600; }
.related-item .fsize { font-size: 12px; color: var(--text-faint); }

/* ---------- pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.price-card.featured { border-color: var(--brand); box-shadow: var(--shadow); position: relative; }
.price-card.featured::before {
  content: "Most popular"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 999px;
}
.price-card h3 { font-size: 16px; color: var(--text-muted); font-weight: 600; }
.price-amount { font-size: 38px; font-weight: 750; margin: 6px 0 4px; }
.price-amount span { font-size: 15px; font-weight: 500; color: var(--text-faint); }
.price-card ul { list-style: none; padding: 0; margin: 20px 0; flex: 1; }
.price-card ul li { display: flex; align-items: center; gap: 8px; padding: 7px 0; font-size: 14px; color: var(--text-muted); }
.price-card ul li svg { color: var(--accent); flex-shrink: 0; }

/* ---------- FAQ / help ---------- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 18px 4px; cursor: pointer; font-weight: 600; font-size: 15px; }
.faq-q .plus { transition: transform 0.2s; color: var(--text-faint); flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; font-size: 14px; color: var(--text-muted); }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 4px 18px; }

/* ---------- blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.post-card .post-thumb { height: 140px; background: linear-gradient(135deg, var(--brand-light), var(--border)); }
.post-card .post-body { padding: 18px; }
.post-card .post-meta { font-size: 12px; color: var(--text-faint); margin-bottom: 8px; }
.post-card h3 { font-size: 16px; margin-bottom: 8px; }
.post-card p { font-size: 13.5px; }
.article { max-width: 720px; margin: 0 auto; }
.article .post-meta { font-size: 13px; color: var(--text-faint); margin-bottom: 8px; }
.article h1 { font-size: 32px; }
.article img.cover { border-radius: var(--radius-lg); margin: 24px 0; }
.article h2 { font-size: 22px; margin-top: 32px; }
.article h3 { font-size: 17px; margin-top: 22px; }
.article p, .article li { font-size: 15.5px; color: var(--text); opacity: 0.88; }
.article blockquote { border-left: 3px solid var(--brand); margin: 20px 0; padding: 4px 20px; color: var(--text-muted); font-style: italic; }
.article pre { background: #1d2030; color: #e6e8f5; padding: 16px 18px; border-radius: var(--radius); overflow-x: auto; font-size: 13px; }
.article pre code { background: none; padding: 0; color: inherit; }

/* ---------- table (changelog / status) ---------- */
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th, .data-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); text-align: left; }
.data-table th { color: var(--text-faint); font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.status-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; }
.status-ok { background: #27ae60; }
.status-warn { background: #e08b2b; }

/* ---------- forms (auth pages) ---------- */
.auth-wrap { min-height: calc(100vh - var(--header-h)); display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.auth-card { width: 100%; max-width: 380px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: var(--shadow); }
.auth-card h1 { font-size: 22px; text-align: center; }
.auth-card p.sub { text-align: center; font-size: 13.5px; margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.field input { width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--bg); color: var(--text); font-size: 14px; font-family: var(--font); }
.field input:focus { outline: none; border-color: var(--brand); }
.field-row { display: flex; align-items: center; justify-content: space-between; font-size: 13px; margin-bottom: 18px; }
.divider { display: flex; align-items: center; gap: 10px; margin: 20px 0; color: var(--text-faint); font-size: 12px; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.oauth-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 10px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); font-size: 14px; font-weight: 600; cursor: pointer; color: var(--text); margin-bottom: 10px; }
.oauth-btn:hover { background: var(--brand-light); }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-alt); padding: 56px 0 28px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 32px; margin-bottom: 40px; }
.footer-col h4 { font-size: 13px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 14px; }
.footer-col a { display: block; color: var(--text-muted); font-size: 14px; margin-bottom: 10px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-faint); flex-wrap: wrap; gap: 12px; }
.footer-brand { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.social-row { display: flex; gap: 10px; }
.social-row a { width: 32px; height: 32px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); }

/* ---------- misc ---------- */
.divider-line { height: 1px; background: var(--border); margin: 40px 0; }
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 10px; }
.badge-row span { font-size: 12px; color: var(--text-faint); border: 1px solid var(--border); padding: 5px 12px; border-radius: 999px; }
.legal-body h2 { font-size: 19px; margin-top: 28px; }
.legal-body p, .legal-body li { font-size: 14.5px; }
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); opacity: 0;
  background: var(--text); color: var(--bg); padding: 12px 20px; border-radius: var(--radius-sm); font-size: 13.5px;
  box-shadow: var(--shadow-lg); transition: opacity 0.25s, transform 0.25s; pointer-events: none; z-index: 100;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-layout { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .post-grid { grid-template-columns: 1fr; }
  .app-shell { flex-direction: column; }
  .sidebar { width: 100%; height: auto; position: static; border-right: none; border-bottom: 1px solid var(--border); }
}
@media (max-width: 720px) {
  .topnav-links, .topnav-actions .btn-secondary { display: none; }
  .navburger { display: block; }
  .hero h1 { font-size: 30px; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .main-panel { padding: 20px 16px 40px; }
  .panel-head { flex-direction: column; align-items: stretch; }
  .search-box { min-width: 0; }
}


/* ---- theme overrides ---- */

:root { --brand:#0d9488; --brand-dark:#0b7c73; --brand-light:#e3f5f3; --accent:#f2a93b; --radius-lg: 12px; --radius: 8px; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) { --brand:#2dd4c4; --brand-light:#123330; --accent:#f2b95c; } }
:root[data-theme="dark"] { --brand:#2dd4c4; --brand-light:#123330; --accent:#f2b95c; }
.mirror-stat-row { display:flex; gap:40px; justify-content:center; flex-wrap:wrap; margin-top: 36px; }
.sync-ok { color:#0d9488; font-weight:600; }
.sync-warn { color:#c98a1f; font-weight:600; }
code.cmd { display:block; background:#12241f; color:#c9f0e8; padding:14px 16px; border-radius:8px; font-size:13px; overflow-x:auto; margin: 10px 0; }
.verify-steps { counter-reset: step; list-style:none; padding:0; margin:18px 0; }
.verify-steps li { counter-increment: step; position:relative; padding-left:38px; margin-bottom:16px; }
.verify-steps li::before { content: counter(step); position:absolute; left:0; top:0; width:26px; height:26px; border-radius:50%; background:var(--brand-light); color:var(--brand); font-weight:700; font-size:13px; display:flex; align-items:center; justify-content:center; }
