:root {
  --bg: #f6f8fb;
  --bg-card: #ffffff;
  --bg-code: #f1f5f9;
  --border: #e2e8f0;
  --text: #1e293b;
  --text-dim: #64748b;
  --accent: #2563eb;
  --accent-2: #059669;
  --shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  --radius: 12px;
  font-size: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

.container { max-width: 1040px; margin: 0 auto; padding: 0 24px; }

header.site {
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  z-index: 100;
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}
.logo span { color: var(--accent); }

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

.site-nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}

.site-nav a:hover { color: var(--accent); background: rgba(37, 99, 235, 0.06); }
.site-nav a.active { color: var(--accent); font-weight: 600; }

.site-nav .nav-cta {
  background: var(--accent);
  color: #fff !important;
  font-weight: 600;
  margin-left: 4px;
}

.site-nav .nav-cta:hover {
  background: #1d4ed8;
  filter: none;
}

.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dim);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
}

.nav-dropdown-toggle::after {
  content: '';
  border: 4px solid transparent;
  border-top-color: currentColor;
  margin-top: 3px;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--accent);
  background: rgba(37, 99, 235, 0.06);
}

.nav-dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  padding: 8px;
  z-index: 200;
}

.nav-dropdown.open .nav-dropdown-panel { display: block; }

.nav-dropdown-panel a {
  display: block;
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
}

.nav-dropdown-panel a.active {
  background: rgba(37, 99, 235, 0.08);
  color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.site-nav--account {
  gap: 12px;
}

.site-nav--account .nav-user {
  color: var(--text-dim);
  font-size: 0.88rem;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px 24px 20px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav { display: flex; }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  header.site { position: sticky; }
  header.site .container.header-inner { position: relative; }

  .nav-dropdown-panel {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 0 8px;
    min-width: 0;
  }

  .nav-dropdown.open .nav-dropdown-panel { display: block; }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }
}

.hero { padding: 72px 0 48px; text-align: center; }
.hero h1 { font-size: 2.6rem; line-height: 1.2; margin-bottom: 16px; color: var(--text); }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p.sub { color: var(--text-dim); font-size: 1.15rem; max-width: 640px; margin: 0 auto 32px; }

.badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 8px; }
.badge {
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.85rem;
  color: var(--text-dim);
  box-shadow: var(--shadow);
}
.badge b { color: var(--accent-2); font-weight: 600; }

section { padding: 40px 0; }
h2.section-title { font-size: 1.6rem; margin-bottom: 24px; }

.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow);
}
.card:hover { border-color: var(--accent); box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08); }
.card h3 { font-size: 1.15rem; }
.card p { color: var(--text-dim); font-size: 0.95rem; flex: 1; }
.card .status { font-size: 0.8rem; color: var(--accent-2); }
.card.soon { opacity: 0.65; }
.card.soon .status { color: var(--text-dim); }
.card a.btn { align-self: flex-start; }

a.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  padding: 9px 20px;
  font-size: 0.95rem;
  font-weight: 600;
}
a.btn:hover { filter: brightness(1.08); }
a.btn.ghost { background: var(--bg-card); border: 1px solid var(--border); color: var(--text); box-shadow: var(--shadow); }

pre, code { font-family: 'Cascadia Code', Consolas, monospace; }

pre {
  background: var(--bg-code);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  overflow-x: auto;
  font-size: 0.85rem;
  line-height: 1.55;
  color: #334155;
}

code.inline {
  background: var(--bg-code);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px 7px;
  font-size: 0.85em;
  color: #0f766e;
}

table { width: 100%; border-collapse: collapse; font-size: 0.9rem; background: var(--bg-card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
th, td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--border); }
th { color: var(--text-dim); font-weight: 600; background: var(--bg-code); }
tr:last-child td { border-bottom: none; }
td code { color: #0f766e; }

table.compare th:nth-child(3),
table.compare td:nth-child(3) { color: var(--accent); font-weight: 500; }

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.plan {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.plan-featured {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
}

.plan-corporate {
  border-color: #334155;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.plan-label-corp {
  background: #334155;
}

.plan-price.plan-price-custom {
  font-size: 1.5rem;
}

table.compare-wide th:nth-child(3),
table.compare-wide td:nth-child(3) { color: var(--accent); font-weight: 500; }

table.compare-wide th:nth-child(4),
table.compare-wide td:nth-child(4) { color: #334155; font-weight: 500; }

@media (max-width: 700px) {
  .compare-wide { font-size: 0.82rem; }
  .compare-wide th, .compare-wide td { padding: 10px 8px; }
}

.plan-label {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.plan h3 { font-size: 1.2rem; }
.plan-price { font-size: 2rem; font-weight: 700; color: var(--text); }
.plan-price span { font-size: 1rem; font-weight: 500; color: var(--text-dim); }
.plan-note { color: var(--text-dim); font-size: 0.9rem; margin-top: -4px; }
.plan ul { list-style: none; color: var(--text-dim); font-size: 0.95rem; flex: 1; }
.plan ul li { padding: 6px 0; padding-left: 1.2em; position: relative; }
.plan ul li::before { content: '✓'; position: absolute; left: 0; color: var(--accent-2); font-weight: 700; }

.demo-results {
  --demo-tile-h: 400px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 800px) {
  .demo-results { grid-template-columns: 1fr; }
}

.demo-results .map-wrap,
.demo-results pre {
  height: var(--demo-tile-h);
  min-height: var(--demo-tile-h);
  max-height: var(--demo-tile-h);
}

.map-wrap {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-frame {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

#map {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: calc(100% + 58px);
  margin-bottom: -58px;
  border: none;
  background: #e8eef4;
}

.map-attribution {
  margin: 0;
  padding: 5px 10px;
  font-size: 0.68rem;
  color: var(--text-dim);
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.map-attribution a {
  color: var(--accent);
  text-decoration: none;
}

.map-attribution a:hover { text-decoration: underline; }

.demo-results pre {
  margin: 0;
  overflow: auto;
}

.map-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.9rem;
  background: var(--bg-card);
}

.map-placeholder[hidden],
.map-coords[hidden] {
  display: none !important;
}

.map-coords {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.8rem;
  color: var(--text-dim);
  pointer-events: none;
  max-width: calc(100% - 24px);
  box-shadow: var(--shadow);
}

.map-coords.ok { color: var(--accent-2); font-weight: 600; }

/* Панель скоринга анализа ВПН и прокси */
.score-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  overflow: auto;
}

.score-value { font-size: 3.4rem; font-weight: 700; line-height: 1; }

.score-bar {
  height: 10px;
  border-radius: 999px;
  background: var(--bg-code);
  border: 1px solid var(--border);
  overflow: hidden;
}
.score-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: var(--text-dim);
  transition: width 0.4s ease;
}

.risk-label { font-size: 0.95rem; color: var(--text-dim); font-weight: 600; }

.risk-low { color: var(--accent-2); }
.risk-medium { color: #d97706; }
.risk-high { color: #ea580c; }
.risk-critical { color: #dc2626; }

.score-bar-fill.risk-low { background: var(--accent-2); }
.score-bar-fill.risk-medium { background: #d97706; }
.score-bar-fill.risk-high { background: #ea580c; }
.score-bar-fill.risk-critical { background: #dc2626; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid var(--border);
  background: var(--bg-code);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.8rem;
  color: var(--text-dim);
}
.chip.on {
  border-color: rgba(220, 38, 38, 0.35);
  background: rgba(220, 38, 38, 0.07);
  color: #dc2626;
  font-weight: 600;
}

.reasons { list-style: none; color: var(--text-dim); font-size: 0.88rem; }
.reasons li { padding: 3px 0 3px 1.2em; position: relative; }
.reasons li::before { content: '•'; position: absolute; left: 0.3em; color: var(--accent); }

.demo-results .score-panel {
  height: var(--demo-tile-h);
  min-height: var(--demo-tile-h);
  max-height: var(--demo-tile-h);
}

.search-row { display: flex; gap: 10px; margin-bottom: 16px; }
.search-row input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  padding: 10px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  box-shadow: var(--shadow);
}
.search-row input:focus { outline: none; border-color: var(--accent); }
.search-row button {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}
.search-row button:hover { filter: brightness(1.08); }

footer.site {
  margin-top: 64px;
  background: #0f172a;
  color: #94a3b8;
  font-size: 0.9rem;
  padding: 56px 0 0;
}

footer.site a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.15s;
}

footer.site a:hover { color: #60a5fa; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  footer.site { padding-top: 40px; }
}

.footer-logo {
  display: inline-block;
  font-size: 1.35rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 12px;
}

.footer-logo span { color: #60a5fa; }

.footer-tagline {
  margin: 0;
  line-height: 1.55;
  font-size: 0.88rem;
  color: #94a3b8;
  max-width: 280px;
}

.footer-col h4 {
  color: #f1f5f9;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 16px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 10px;
  font-size: 0.88rem;
  line-height: 1.4;
}

.footer-col li.footer-muted {
  color: #64748b;
  margin-top: 4px;
}

.footer-bottom {
  padding: 24px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: #64748b;
}

.footer-requisites {
  margin: 0;
  font-size: 0.78rem;
  color: #475569;
  line-height: 1.5;
}

.hero-compact { padding: 48px 0 24px; }
.hero-compact h1 { font-size: 2rem; }

.auth-wrap { max-width: 420px; margin: 0 auto; }

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.auth-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.auth-form label .optional { font-weight: 400; color: var(--text-dim); }

.auth-form input {
  font: inherit;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
}

.auth-form input:focus { outline: none; border-color: var(--accent); }

button.btn-block, .btn-block {
  display: block;
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

button.btn-block:hover, .btn-block:hover { filter: brightness(1.08); }
button.btn-block.ghost, .btn-block.ghost {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
}

.form-error {
  color: #dc2626;
  font-size: 0.9rem;
  background: rgba(220, 38, 38, 0.06);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 8px;
  padding: 10px 12px;
}

.form-foot { text-align: center; color: var(--text-dim); font-size: 0.9rem; }
.form-foot a { color: var(--accent); }

.nav-user { color: var(--text-dim); font-size: 0.95rem; }

.dash-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dash-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.dash-note { color: var(--text-dim); font-size: 0.92rem; margin-bottom: 16px; }

.sub-status {
  display: inline-block;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.sub-status.on {
  background: rgba(5, 150, 105, 0.1);
  color: var(--accent-2);
}

.sub-status.off {
  background: rgba(100, 116, 139, 0.12);
  color: var(--text-dim);
}

.sub-status.cancelled {
  background: rgba(217, 119, 6, 0.1);
  color: #d97706;
}

.sub-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.sub-actions button,
.sub-actions .btn-inline {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.95rem;
}

.sub-actions button.ghost,
.sub-actions .btn-inline.ghost {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
}

.sub-actions button:disabled { opacity: 0.5; cursor: not-allowed; }

.form-success {
  color: var(--accent-2);
  font-size: 0.9rem;
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 16px;
}

.key-create {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.key-create input {
  flex: 1;
  font: inherit;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
}

.key-create button {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.key-create button:disabled { opacity: 0.5; cursor: not-allowed; }

.keys-table { margin-top: 8px; }
.keys-table .muted { color: var(--text-dim); text-align: center; }

.btn-small {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--text-dim);
}

.btn-small.danger { color: #dc2626; border-color: rgba(220, 38, 38, 0.3); }
.btn-small.danger:hover { background: rgba(220, 38, 38, 0.06); }

.modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 100;
}

.modal[hidden] { display: none !important; }

.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.modal-box h3 { margin-bottom: 8px; }

.secret-box {
  word-break: break-all;
  margin: 16px 0;
}

.modal-actions { display: flex; flex-direction: column; gap: 10px; }

.legal-page { padding: 32px 0 48px; }
.legal-page h1 { font-size: 1.8rem; margin-bottom: 8px; }
.legal-page h2 { font-size: 1.15rem; margin: 28px 0 12px; }
.legal-page p, .legal-page li { color: var(--text-dim); margin-bottom: 10px; }
.legal-page ul { padding-left: 1.4em; margin-bottom: 12px; }
.legal-page a { color: var(--accent); }
.legal-meta { font-size: 0.9rem; color: var(--text-dim); margin-bottom: 24px; }

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
  padding: 14px 16px;
}

.cookie-bar-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-bar p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-dim);
  flex: 1;
  min-width: 240px;
}

.cookie-bar a { color: var(--accent); }

.cookie-bar button {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-dim);
  line-height: 1.45;
}

.checkbox-label input { margin-top: 3px; flex-shrink: 0; }
.checkbox-label a { color: var(--accent); }

.endpoint {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  margin: 10px 0;
  font-family: Consolas, monospace;
  font-size: 0.9rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.endpoint .method {
  background: rgba(5, 150, 105, 0.1);
  color: var(--accent-2);
  border-radius: 6px;
  padding: 2px 10px;
  font-weight: 700;
  font-size: 0.8rem;
}

.seo-nav {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.card h3 a {
  color: inherit;
  text-decoration: none;
}

.card h3 a:hover {
  color: var(--accent);
}
