:root {
  --bg-1: #1a1d27;
  --bg-2: #0e1016;
  --glow-1: rgba(47,155,214,0.35);
  --glow-2: rgba(0,102,153,0.30);
  --glow-3: rgba(91,75,168,0.28);
  --card-bg: rgba(255,255,255,0.06);
  --card-border: rgba(255,255,255,0.14);
  --title: #ffffff;
  --section: #5bc0f0;
  --text: #f0f0f0;
  --text-dim: #c8c8d4;
  --text-faint: #8a8a9a;
  --primary: #0a84c2;
  --primary-hover: #1494d4;
  --plan-bg: #23262f;
  --plan-bg-featured: #1c2e3c;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: var(--text);
  background: var(--bg-2);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
.bg {
  position: fixed; inset: -30%; z-index: -1;
  background:
    radial-gradient(40% 40% at 18% 12%, var(--glow-1) 0%, transparent 60%),
    radial-gradient(45% 45% at 85% 20%, var(--glow-2) 0%, transparent 60%),
    radial-gradient(50% 50% at 75% 88%, var(--glow-3) 0%, transparent 60%);
  filter: saturate(130%);
  animation: drift 20s ease-in-out infinite alternate;
}
@keyframes drift {
  0% { transform: translate(0,0) scale(1.1); }
  100% { transform: translate(-4%,-3%) scale(1.2); }
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px; max-width: 1100px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 20px; color: var(--title); }
.brand img { width: 34px; height: 34px; border-radius: 8px; }
.nav nav a { color: var(--text-dim); text-decoration: none; margin-left: 22px; font-size: 14px; }
.nav nav a:hover { color: var(--text); }

main { max-width: 1100px; margin: 0 auto; padding: 0 32px; }

.hero { text-align: center; padding: 70px 0 50px; }
.hero h1 { font-size: 44px; color: var(--title); margin-bottom: 18px; }
.lead { font-size: 18px; color: var(--text-dim); max-width: 640px; margin: 0 auto 28px; line-height: 1.6; }
.cta-row { display: flex; gap: 14px; justify-content: center; margin-bottom: 14px; }
.note { color: var(--text-faint); font-size: 13px; }

.btn {
  display: inline-block; text-decoration: none; border-radius: 12px;
  padding: 12px 22px; font-size: 15px; font-weight: 600; cursor: pointer; border: none;
}
.btn.primary { background: var(--primary); color: #fff; }
.btn.primary:hover { background: var(--primary-hover); }
.btn.ghost { background: transparent; color: var(--text); border: 1px solid var(--card-border); }
.btn.big { padding: 15px 34px; font-size: 16px; }

.plans { padding: 40px 0 30px; text-align: center; }
.plans h2, .download h2 { color: var(--title); font-size: 28px; margin-bottom: 28px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 820px) { .grid { grid-template-columns: 1fr; } }

/* One paid plan (2026-08-19). A lone card in a three-column grid would either
   stretch the full width or sit hard against the left edge; both read as a
   layout bug rather than a deliberate single plan. Capped and centred instead.
   Declared as a modifier rather than by changing .grid, because .grid is still
   used with three children elsewhere (steps, feature lists). */
.grid-single { grid-template-columns: minmax(0, 430px); justify-content: center; }

.plan {
  position: relative; background: var(--plan-bg); border: 1px solid var(--card-border);
  border-radius: 16px; padding: 26px 22px; text-align: left;
}
.plan.featured { background: var(--plan-bg-featured); border-color: var(--primary); }
.badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: .5px;
}
.plan h3 { color: var(--section); font-size: 18px; margin-bottom: 8px; }
.plan .price { font-size: 34px; font-weight: 700; color: var(--title); margin-bottom: 16px; }
.plan .price small { font-size: 15px; color: var(--text-faint); font-weight: 400; }
.plan ul { list-style: none; margin-bottom: 20px; }
.plan li { padding: 6px 0 6px 24px; position: relative; color: var(--text-dim); font-size: 14px; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--section); font-weight: 700; }
.plan .btn { width: 100%; text-align: center; }

.download { padding: 50px 0 60px; text-align: center; }
.download p { color: var(--text-dim); margin-bottom: 22px; }

.foot {
  max-width: 1100px; margin: 40px auto 0; padding: 24px 32px;
  border-top: 1px solid var(--card-border);
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text-faint); font-size: 13px;
}
.foot .links a { color: var(--text-faint); text-decoration: none; margin-left: 18px; }
.foot .links a:hover { color: var(--text); }

/* ---- Upgrade / checkout page ---- */
.checkout-wrap { max-width: 560px; margin: 0 auto; padding: 60px 32px; text-align: center; }
.checkout-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 18px; padding: 32px; backdrop-filter: blur(20px);
}
.checkout-card h1 { color: var(--title); font-size: 26px; margin-bottom: 6px; }
.checkout-card .plan-price { font-size: 30px; font-weight: 700; color: var(--section); margin: 10px 0; }
.checkout-card .blurb { color: var(--text-dim); margin-bottom: 24px; line-height: 1.5; }
.checkout-card .status { margin-top: 18px; font-size: 14px; color: var(--text-dim); min-height: 20px; }
.checkout-card .err { color: #ff7b7b; }
.checkout-card .ok { color: #5bd08a; }
.plan-switch { margin-top: 20px; font-size: 13px; }
.plan-switch a { color: var(--section); text-decoration: none; margin: 0 6px; }

/* ============================================================
   SHARED COMPONENTS  (added 2026-08-15)
   Landing detail sections, download page, help/support page.
   Extends the tokens in :root above - no new colours introduced.
   ============================================================ */

/* Accessibility: a visible focus ring for keyboard users on every
   interactive element. The base styles had none, which makes the site
   unusable without a mouse. */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 2px solid var(--section);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Skip link - first focusable element, hidden until focused. */
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--primary); color: #fff;
  padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 100;
  text-decoration: none; font-weight: 600;
}
.skip:focus { left: 0; }

.nav nav a.active { color: var(--text); font-weight: 600; }

.section-head { text-align: center; margin-bottom: 30px; }
.section-head h2 { color: var(--title); font-size: 28px; margin-bottom: 10px; }
.section-head p { color: var(--text-dim); font-size: 15px; max-width: 620px; margin: 0 auto; line-height: 1.6; }

.page-head { padding: 50px 0 34px; text-align: center; }
.page-head h1 { color: var(--title); font-size: 36px; margin-bottom: 12px; }
.page-head p { color: var(--text-dim); font-size: 16px; max-width: 640px; margin: 0 auto; line-height: 1.6; }

/* ---- Numbered steps ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 10px 0 40px; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 14px; padding: 22px; backdrop-filter: blur(14px);
}
.step .n {
  width: 30px; height: 30px; border-radius: 50%; background: var(--primary);
  color: #fff; font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.step h3 { color: var(--title); font-size: 16px; margin-bottom: 8px; }
.step p { color: var(--text-dim); font-size: 14px; line-height: 1.6; }

/* ---- Feature grid ---- */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 6px 0 44px; }
@media (max-width: 820px) { .features { grid-template-columns: 1fr; } }
.feature {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 14px; padding: 22px;
}
.feature h3 { color: var(--section); font-size: 16px; margin-bottom: 8px; }
.feature p { color: var(--text-dim); font-size: 14px; line-height: 1.65; }

/* ---- Comparison table ---- */
.table-wrap { overflow-x: auto; padding-bottom: 8px; }
table.cmp {
  width: 100%; border-collapse: collapse; font-size: 14px;
  background: var(--plan-bg); border-radius: 14px; overflow: hidden;
}
table.cmp caption { caption-side: top; color: var(--text-faint); font-size: 13px; padding: 0 0 12px; text-align: left; }
table.cmp th, table.cmp td {
  padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--card-border);
}
table.cmp thead th { color: var(--title); font-size: 13px; text-transform: uppercase; letter-spacing: .5px; background: rgba(255,255,255,0.04); }
table.cmp tbody th { color: var(--text-dim); font-weight: 500; }
table.cmp td { color: var(--text-dim); }
table.cmp tr:last-child th, table.cmp tr:last-child td { border-bottom: none; }
.yes { color: #5bd08a; font-weight: 700; }
.no  { color: var(--text-faint); }

/* ---- Callouts ---- */
.callout {
  border-radius: 12px; padding: 16px 18px; margin: 18px 0;
  border: 1px solid var(--card-border); background: var(--card-bg);
  color: var(--text-dim); font-size: 14px; line-height: 1.65;
}
.callout strong { color: var(--text); }
.callout.warn { border-color: rgba(240,173,78,0.45); background: rgba(240,173,78,0.08); }
.callout.info { border-color: rgba(91,192,240,0.40); background: rgba(91,192,240,0.07); }

/* ---- FAQ / disclosure ---- */
.faq { max-width: 780px; margin: 0 auto; padding-bottom: 40px; }
.faq details {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 12px; margin-bottom: 10px; overflow: hidden;
}
.faq summary {
  cursor: pointer; padding: 16px 18px; color: var(--title);
  font-size: 15px; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--section); font-size: 20px; font-weight: 400; flex: 0 0 auto; }
.faq details[open] summary::after { content: "\2013"; }
.faq .answer { padding: 0 18px 16px; color: var(--text-dim); font-size: 14px; line-height: 1.7; }
.faq .answer p + p { margin-top: 10px; }
.faq .answer ol, .faq .answer ul { margin: 10px 0 0 20px; }
.faq .answer li { margin-bottom: 6px; }
.faq .answer code {
  background: rgba(255,255,255,0.08); padding: 2px 6px;
  border-radius: 5px; font-size: 13px;
}

/* ---- Download page ---- */
.dl-card {
  max-width: 620px; margin: 0 auto; text-align: center;
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 18px; padding: 34px 30px; backdrop-filter: blur(20px);
}
.dl-card h2 { color: var(--title); font-size: 22px; margin-bottom: 8px; }
.dl-meta { color: var(--text-faint); font-size: 13px; margin: 14px 0 0; line-height: 1.8; }
.dl-meta .k { color: var(--text-dim); }
.dl-hash {
  display: block; word-break: break-all; margin-top: 6px;
  font-family: Consolas, monospace; font-size: 12px; color: var(--text-faint);
}
.dl-unavailable { color: var(--text-dim); font-size: 15px; line-height: 1.65; }
.btn[aria-disabled="true"] { opacity: .5; cursor: not-allowed; }
.reqs { list-style: none; max-width: 620px; margin: 0 auto; }
.reqs li { padding: 9px 0 9px 26px; position: relative; color: var(--text-dim); font-size: 14px; border-bottom: 1px solid var(--card-border); }
.reqs li:last-child { border-bottom: none; }
.reqs li::before { content: "\2022"; position: absolute; left: 6px; color: var(--section); }

/* ---- Help page ---- */
.help-layout { display: grid; grid-template-columns: 220px 1fr; gap: 34px; align-items: start; padding-bottom: 50px; }
@media (max-width: 900px) { .help-layout { grid-template-columns: 1fr; } }
.help-toc {
  position: sticky; top: 20px;
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 14px; padding: 18px;
}
@media (max-width: 900px) { .help-toc { position: static; } }
.help-toc h2 { color: var(--text-faint); font-size: 12px; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 12px; }
.help-toc a { display: block; color: var(--text-dim); text-decoration: none; font-size: 14px; padding: 6px 0; }
.help-toc a:hover { color: var(--text); }
.help-section { margin-bottom: 40px; scroll-margin-top: 20px; }
.help-section h2 { color: var(--section); font-size: 20px; margin-bottom: 8px; }
.help-section > p { color: var(--text-dim); font-size: 15px; line-height: 1.7; margin-bottom: 14px; }
.help-section h3 { color: var(--title); font-size: 15px; margin: 18px 0 6px; }
.help-section ol, .help-section ul { margin: 0 0 12px 22px; color: var(--text-dim); font-size: 14px; line-height: 1.7; }
.help-section li { margin-bottom: 7px; }
.help-section code {
  background: rgba(255,255,255,0.08); padding: 2px 6px; border-radius: 5px; font-size: 13px;
}
.contact-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 14px; padding: 22px; text-align: center;
}
.contact-card .addr { font-size: 18px; color: var(--section); font-weight: 600; margin: 8px 0; }

/* Prefer reduced motion: stop the animated background. */
@media (prefers-reduced-motion: reduce) {
  .bg { animation: none; }
  * { transition: none !important; }
}

/* Small inline tag, used to mark plan features that are planned rather than
   shipped. Deliberately visible: a customer must be able to tell the two apart
   before paying. */
.tag {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .4px;
  text-transform: uppercase; padding: 2px 7px; border-radius: 999px;
  background: rgba(255,255,255,0.10); color: var(--text-faint);
  border: 1px solid var(--card-border); margin-left: 6px; vertical-align: 1px;
}
.plan li.planned { color: var(--text-faint); }
.plan li.planned::before { content: "\25CB"; color: var(--text-faint); }

/* ============================================================
   NAV, PLAN CARDS, DETAIL PAGES  (revision 2026-08-15)
   ============================================================ */

/* ---- Nav: clear "where am I" state + press feedback ---- */
.nav nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.nav nav a {
  margin-left: 0; padding: 8px 14px; border-radius: 999px;
  border: 1px solid transparent; line-height: 1;
  transition: background .16s ease, color .16s ease, border-color .16s ease, transform .08s ease;
}
.nav nav a:hover { background: rgba(255,255,255,0.07); color: var(--text); }
.nav nav a:active { transform: translateY(1px); }
.nav nav a.active,
.nav nav a[aria-current="page"] {
  background: var(--primary); color: #fff; font-weight: 600;
  border-color: var(--primary-hover);
  box-shadow: 0 3px 12px rgba(10,132,194,0.40);
}
.nav nav a.active:hover { background: var(--primary-hover); color: #fff; }
@media (max-width: 640px) {
  .nav { flex-direction: column; gap: 12px; }
  .nav nav { justify-content: center; }
  .nav nav a { padding: 7px 12px; font-size: 13px; }
}

/* ---- Plan cards: equal height, actions locked to the bottom ---- */
.grid { align-items: stretch; }
.plan {
  display: flex; flex-direction: column;
  transition: border-color .18s ease, box-shadow .18s ease, transform .12s ease, background .18s ease;
}
/* The feature list takes the slack so every card's buttons line up, no matter
   how many bullets a plan has. This is why the buttons were ragged before. */
.plan ul { flex: 1 1 auto; margin-bottom: 18px; }
.plan .plan-actions {
  margin-top: auto; display: flex; flex-direction: column; gap: 9px;
}
.plan .plan-actions .btn { width: 100%; text-align: center; padding: 11px 16px; font-size: 14px; }

/* Hover / selected feedback on the whole card. */
.plan[data-plan] { cursor: pointer; }
.plan[data-plan]:hover { transform: translateY(-2px); border-color: rgba(91,192,240,0.55); }
.plan.selected {
  border-color: var(--primary); background: var(--plan-bg-featured);
  box-shadow: 0 0 0 2px rgba(10,132,194,0.45), 0 10px 30px rgba(0,0,0,0.35);
}
.plan.selected h3 { color: #7fd4ff; }
.plan:focus-visible { outline: 2px solid var(--section); outline-offset: 4px; }

/* Two-step confirm hint. Hidden until the card is selected. */
.plan-hint {
  margin-top: 12px; font-size: 12.5px; line-height: 1.5;
  color: #9fe0ff; background: rgba(10,132,194,0.16);
  border: 1px dashed rgba(91,192,240,0.55);
  border-radius: 9px; padding: 9px 11px; text-align: center;
}
.plan-hint b { color: #fff; }

/* ---- Detail-page building blocks ---- */
.detail {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 16px; padding: 28px; margin-bottom: 22px; scroll-margin-top: 24px;
}
.detail.featured { border-color: var(--primary); background: var(--plan-bg-featured); }
.detail-head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 6px; }
.detail-head h2 { color: var(--section); font-size: 24px; }
.detail-head .price { font-size: 28px; font-weight: 700; color: var(--title); }
.detail-head .price small { font-size: 14px; color: var(--text-faint); font-weight: 400; }
.detail .who { color: var(--text-dim); font-size: 15px; line-height: 1.7; margin-bottom: 18px; }
.detail h3 { color: var(--title); font-size: 15px; margin: 18px 0 8px; }
.detail .list { list-style: none; }
.detail .list li { padding: 8px 0 8px 26px; position: relative; color: var(--text-dim); font-size: 14px; line-height: 1.6; }
.detail .list li::before { content: "\2713"; position: absolute; left: 0; top: 8px; color: #5bd08a; font-weight: 700; }
.detail .list.soon li::before { content: "\25CB"; color: var(--text-faint); }
.detail .list.soon li { color: var(--text-faint); }
.detail .list li b { color: var(--text); }
.detail-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.detail-actions .btn { flex: 1 1 auto; text-align: center; min-width: 180px; }

.anchor-row { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.anchor-row a {
  color: var(--text-dim); text-decoration: none; font-size: 13px;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--card-border); background: var(--card-bg);
  transition: background .16s ease, color .16s ease;
}
.anchor-row a:hover { background: rgba(255,255,255,0.09); color: var(--text); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }

.flow { list-style: none; counter-reset: flow; max-width: 820px; margin: 0 auto; }
.flow li {
  position: relative; padding: 0 0 26px 52px; counter-increment: flow;
  border-left: 2px solid var(--card-border); margin-left: 15px;
}
.flow li:last-child { border-left-color: transparent; padding-bottom: 0; }
.flow li::before {
  content: counter(flow); position: absolute; left: -16px; top: -2px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--primary); color: #fff; font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.flow h3 { color: var(--title); font-size: 16px; margin-bottom: 6px; }
.flow p { color: var(--text-dim); font-size: 14px; line-height: 1.7; }
.flow .where { display: inline-block; margin-top: 7px; font-size: 12px; color: var(--text-faint); }
.flow .where b { color: #5bd08a; }

/* ============================================================
   BUTTON MOTION + CLICKABLE BRAND  (revision 2026-08-15)
   ============================================================ */

/* Every button variant now reacts to hover and press. The ghost/secondary
   buttons had no hover state at all, so "See details" felt dead next to the
   plan cards, which do animate. */
.btn {
  position: relative;
  transition: background .18s ease, border-color .18s ease, color .18s ease,
              transform .12s ease, box-shadow .18s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); transition-duration: .05s; }

.btn.primary { box-shadow: 0 4px 14px rgba(10,132,194,0.28); }
.btn.primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 8px 22px rgba(10,132,194,0.45);
}
.btn.primary:active { box-shadow: 0 3px 10px rgba(10,132,194,0.35); }

/* The "black button": now lifts, brightens, and picks up the accent border. */
.btn.ghost {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
}
.btn.ghost:hover {
  background: rgba(91,192,240,0.13);
  border-color: rgba(91,192,240,0.65);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.30);
}
.btn.ghost:active { background: rgba(91,192,240,0.20); }

.btn.big:hover { transform: translateY(-3px); }

/* Nudge the arrow-less secondary buttons: a small chevron that slides on hover,
   so it reads as "this goes somewhere". */
.btn.ghost.go::after,
.btn.primary.go::after {
  content: "\2192"; margin-left: 8px; display: inline-block;
  transition: transform .18s ease;
}
.btn.ghost.go:hover::after,
.btn.primary.go:hover::after { transform: translateX(4px); }

@media (prefers-reduced-motion: reduce) {
  .btn:hover, .btn.big:hover, .plan[data-plan]:hover { transform: none; }
  .btn.ghost.go:hover::after, .btn.primary.go:hover::after { transform: none; }
}

/* ---- Brand is a link home on every page ---- */
a.brand { text-decoration: none; transition: opacity .16s ease, transform .12s ease; }
a.brand:hover { opacity: .85; }
a.brand:active { transform: translateY(1px); }
a.brand:focus-visible { outline: 2px solid var(--section); outline-offset: 4px; border-radius: 10px; }

/* ============================================================
   CHECKOUT PAGE  (upgrade.html) - it was nearly empty
   ============================================================ */
.co-wrap { max-width: 960px; margin: 0 auto; padding: 30px 32px 60px; }
.co-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 22px; align-items: start; }
@media (max-width: 860px) { .co-grid { grid-template-columns: 1fr; } }

.co-panel {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 16px; padding: 26px; backdrop-filter: blur(18px);
}
.co-panel h2 { color: var(--title); font-size: 19px; margin-bottom: 12px; }
.co-panel h3 { color: var(--title); font-size: 14px; margin: 18px 0 8px; }

.co-summary { border-color: var(--primary); background: var(--plan-bg-featured); }
.co-plan-name { color: var(--section); font-size: 15px; font-weight: 600; letter-spacing: .4px; text-transform: uppercase; }
.co-price { font-size: 40px; font-weight: 700; color: var(--title); line-height: 1.1; margin: 6px 0 2px; }
.co-price small { font-size: 15px; font-weight: 400; color: var(--text-faint); }
.co-rows { list-style: none; margin: 18px 0 0; }
.co-rows li {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 10px 0; border-bottom: 1px solid var(--card-border);
  color: var(--text-dim); font-size: 13.5px;
}
.co-rows li:last-child { border-bottom: none; }
.co-rows li span:last-child { color: var(--text); text-align: right; }

.co-trust { list-style: none; margin-top: 16px; }
.co-trust li {
  padding: 7px 0 7px 24px; position: relative;
  color: var(--text-dim); font-size: 13px; line-height: 1.55;
}
.co-trust li::before { content: "\2713"; position: absolute; left: 0; color: #5bd08a; font-weight: 700; }

.co-switch { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--card-border); }
.co-switch .lbl { color: var(--text-faint); font-size: 12px; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; }
.co-switch-row { display: flex; gap: 8px; flex-wrap: wrap; }
.co-switch-row a {
  flex: 1 1 auto; text-align: center; text-decoration: none;
  color: var(--text-dim); font-size: 13px; padding: 9px 12px;
  border: 1px solid var(--card-border); border-radius: 10px;
  background: rgba(255,255,255,0.03);
  transition: background .16s ease, color .16s ease, border-color .16s ease;
}
.co-switch-row a:hover { background: rgba(91,192,240,0.12); border-color: rgba(91,192,240,0.6); color: #fff; }
.co-switch-row a[aria-current="true"] {
  background: var(--primary); color: #fff; border-color: var(--primary-hover); font-weight: 600;
}

.co-status { margin-top: 16px; font-size: 14px; color: var(--text-dim); min-height: 20px; }
.co-status.err { color: #ff7b7b; }
.co-status.ok { color: #5bd08a; }
