/* ===========================================================================
   PeelBoard marketing site — shared components for the standalone SEO pages.
   Tokens + base come from /css/site.css, which every page loads first.

   Everything above the "SEO-PAGE ADDITIONS" rule below is copied verbatim out
   of index.html's own <style> block (nav, feature clusters, the comparison
   table, pricing tiers, FAQ, CTA card, footer, responsive), so these pages
   look like the home page instead of merely resembling it. If a rule changes
   in index.html, change it here too.
   =========================================================================== */

/* ── NAV ──────────────────────────────────────────────────────────────────── */
#nav {
  position: sticky; top: 0; z-index: 120;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  height: 72px;
  padding: 0 var(--pad-x);
  background: rgba(10,10,11,0.72);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: height .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
#nav.is-stuck { height: 62px; border-bottom-color: var(--border); background: rgba(10,10,11,0.9); }
.nav-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; min-height: 44px; }
.nav-brand img { width: 30px; height: 30px; border-radius: 7px; }
.nav-brand span {
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: 18px; letter-spacing: -0.025em;
}
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--muted);
  position: relative;
  display: inline-flex; align-items: center; min-height: 44px;
  transition: color .2s var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 11px;
  height: 1px; background: var(--accent-hi);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-signin {
  font-size: 14.5px; font-weight: 500; color: var(--muted);
  padding: 12px 6px; min-height: 44px; display: inline-flex; align-items: center;
  transition: color .2s var(--ease);
}
.nav-signin:hover { color: var(--text); }

/* ── FEATURE CLUSTERS ─────────────────────────────────────────────────────── */
#features { border-top: 1px solid var(--border); }

/* spotlight row: copy + big screen */
.spot { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 64px; align-items: center; }
.spot.is-flipped .spot-copy { order: 2; }
.spot h3 { margin-bottom: 16px; max-width: 18ch; }
.spot p { color: var(--muted); max-width: 48ch; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tag {
  font-size: 13px; font-weight: 500; color: var(--muted);
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 7px 13px; border-radius: 999px;
  transition: border-color .22s var(--ease), color .22s var(--ease);
}
.tag:hover { border-color: var(--border-hi); color: var(--text); }

/* bento: 2 cells with screens, 2 without */
.bento { display: grid; grid-template-columns: 1.25fr 1fr; gap: 20px; }
.bento .card { padding: 32px; overflow: hidden; display: flex; flex-direction: column; }
.bento h3 { font-size: 22px; margin-bottom: 12px; }
.bento p { color: var(--muted); font-size: 15px; }
.bento .card-shot { margin-top: 28px; margin-bottom: -33px; margin-right: -33px; border-radius: 10px 0 0 0; border: 1px solid var(--border-hi); border-right: 0; border-bottom: 0; overflow: hidden; }
.bento .card-shot img { width: 100%; height: auto; }

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

/* reporting: typographic, no screenshot */
.report-lines { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-card); overflow: hidden; }
.report-lines > div { background: var(--bg); padding: 24px 28px; display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; }
.report-lines b { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 17px; letter-spacing: -0.02em; min-width: 190px; }
.report-lines span { color: var(--muted); font-size: 15px; flex: 1; min-width: 220px; }

.beta {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-hi); background: var(--accent-soft); border: 1px solid var(--accent-line);
  padding: 3px 10px; border-radius: 999px; vertical-align: 4px; margin-left: 12px;
}

/* ── COMPARISON ─────────────────────────────────────────────── */
/* Sits between the reporting and team clusters, so it keeps the same cluster
   rhythm (one .wrap, 120px below) rather than opening a new full-width band. */
#compare { margin-bottom: 120px; scroll-margin-top: 88px; }
#compare .sec-head { margin-bottom: 34px; }

/* the provenance line: prominent, right under the heading, not a footnote */
.cmp-source {
  margin-top: 22px;
  max-width: 78ch;
  padding-left: 16px;
  border-left: 2px solid var(--accent-line);
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--muted);
}
.cmp-source a { color: var(--accent-hi); text-decoration: underline; text-underline-offset: 3px; }

.cmp-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
/* The table scrolls inside its own box; the page never scrolls sideways.
   position:relative is load-bearing: without a positioned ancestor the sticky
   cells leak their scrollable overflow past the scroller and the whole page
   picks up a horizontal scrollbar. */
.cmp-scroll { overflow-x: auto; overscroll-behavior-x: contain; position: relative; }

table.cmp {
  width: 100%;
  min-width: 1040px;
  border-collapse: separate;
  border-spacing: 0;
  font-variant-numeric: tabular-nums;
}
table.cmp th, table.cmp td { padding: 13px 10px; vertical-align: middle; }

/* header: plain company name + the plan price it is quoted at */
table.cmp thead th {
  position: sticky; top: 62px; z-index: 3;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-hi);
  padding-top: 22px; padding-bottom: 16px;
  text-align: center;
  font-weight: 600;
}
table.cmp thead th.cmp-feat { z-index: 4; text-align: left; padding-left: 22px; min-width: 234px; width: 25%; }
.cmp-h-name {
  display: block;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 13.5px; letter-spacing: -0.01em; color: var(--muted);
}
.cmp-h-price { display: block; margin-top: 5px; font-size: 11.5px; font-weight: 500; color: var(--dim); letter-spacing: 0; }

/* first column stays put while the competitor columns scroll under it */
table.cmp th[scope="row"] {
  position: sticky; left: 0; z-index: 2;
  background: var(--bg-card);
  min-width: 234px; width: 25%;
  text-align: left; font-weight: 500; font-size: 13.5px;
  line-height: 1.45; color: var(--text);
  padding: 15px 20px 15px 22px;
}
table.cmp tbody th, table.cmp tbody td { border-top: 1px solid var(--border); }
table.cmp .cmp-cell { min-width: 96px; text-align: center; color: var(--dim); }

/* PeelBoard column, lifted out of the field */
table.cmp .is-us {
  min-width: 132px;
  background: rgba(99,102,241,0.07);
  border-left: 1px solid var(--accent-line);
  border-right: 1px solid var(--accent-line);
}
table.cmp thead th.is-us {
  background: #191a27;                 /* opaque: rows scroll under it */
  border-top: 1px solid var(--accent-line);
  border-bottom-color: var(--accent-line);
}
table.cmp thead th.is-us .cmp-h-name { color: var(--text); }
table.cmp thead th.is-us .cmp-h-price { color: var(--accent-hi); }
table.cmp tbody tr:last-child .is-us { border-bottom: 1px solid var(--accent-line); }

/* cell states: shape carries the meaning, colour only reinforces it, and every
   cell also carries .sr-only words. */
.cmp-mark { display: inline-flex; align-items: center; justify-content: center; }
.cmp-mark--full { width: 21px; height: 21px; border-radius: 50%; background: #3c3c49; color: #fff; }
.is-us .cmp-mark--full { background: var(--accent); color: #fff; box-shadow: 0 2px 10px rgba(99,102,241,0.32); }
.cmp-mark--part {
  width: 21px; height: 21px; border-radius: 50%;
  background: transparent; border: 1px solid var(--border-hi); color: var(--dim);
}
.cmp-mark--none { width: 7px; height: 7px; border-radius: 50%; background: #30303a; }
.cmp-n { display: block; margin-top: 6px; font-size: 10.5px; line-height: 1.3; color: var(--dim); }
.cmp-txt { font-size: 12.5px; line-height: 1.4; color: var(--muted); }
.is-us .cmp-txt { color: var(--text); font-weight: 600; }

/* rounded corners without clipping the sticky cells (no overflow:hidden here) */
table.cmp thead th:first-child { border-top-left-radius: var(--r-card); }
table.cmp thead th:last-child  { border-top-right-radius: var(--r-card); }

.cmp-note {
  padding: 15px 22px 17px;
  border-top: 1px solid var(--border);
  font-size: 12.5px; line-height: 1.55; color: var(--dim);
}

/* at a width where the whole table fits the wrap, drop the scroller so the
   header row can stick to the page under the nav instead of to the box. */
@media (min-width: 1240px) {
  .cmp-scroll { overflow: visible; }
}

/* ── stacked view, under 760px ── */
.cmp-cards { display: none; }
.cmp-cards-h {
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 15px; letter-spacing: -0.01em; color: var(--muted);
  margin-bottom: 12px;
}
#cmp-cards { display: grid; gap: 10px; }
.cmp-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-btn); padding: 16px 18px; }
.cmp-card-f { font-size: 14.5px; font-weight: 500; line-height: 1.45; }
.cmp-badge {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 12px; padding: 6px 13px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600;
}
.cmp-badge.is-full { background: var(--accent-soft); border: 1px solid var(--accent-line); color: var(--accent-hi); }
.cmp-badge.is-part { background: var(--bg-raise); border: 1px solid var(--border-hi); color: var(--muted); }
.cmp-badge.is-none { background: var(--bg-inset); border: 1px solid var(--border); color: var(--dim); }
.cmp-card-c { margin-top: 11px; font-size: 12.5px; line-height: 1.5; color: var(--dim); }
.cmp-card-c b { color: var(--muted); font-weight: 700; }
.cmp-card-vals { margin-top: 11px; display: grid; gap: 5px; font-size: 12.5px; color: var(--dim); }
.cmp-card-vals b { color: var(--muted); font-weight: 600; }

/* ── what you would otherwise pay ── */
.cmp-stack {
  margin-top: 26px; padding: 34px 36px;
  display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 44px; align-items: center;
}
.cmp-stack h3 { font-size: 20px; margin-bottom: 18px; }
.cmp-stack-list {
  list-style: none; display: grid; gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--r-btn); overflow: hidden;
}
.cmp-stack-list li {
  background: var(--bg); display: flex; align-items: baseline; gap: 10px;
  padding: 10px 15px; font-size: 13px;
}
.cmp-stack-list b { font-weight: 600; }
.cmp-stack-list i { font-style: normal; font-size: 12px; color: var(--dim); flex: 1; }
.cmp-stack-list span { color: var(--muted); font-weight: 600; }
.cmp-stack-total {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  margin-top: 14px; padding: 13px 15px;
  border: 1px solid var(--border-hi); border-radius: var(--r-btn);
  font-size: 14px;
}
.cmp-stack-total b { font-weight: 600; }
.cmp-stack-total span { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 18px; letter-spacing: -0.03em; }
.cmp-stack-note { margin-top: 13px; font-size: 12px; line-height: 1.5; color: var(--dim); }
.cmp-big {
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: clamp(54px, 7vw, 84px); letter-spacing: -0.045em; line-height: 1;
  color: var(--accent-hi);
}
.cmp-big-l { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 19px; margin-top: 10px; letter-spacing: -0.02em; }
.cmp-big-sub { margin-top: 12px; font-size: 14px; color: var(--muted); }
.cmp-cheap {
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--dim);
}
.cmp-cheap b { color: var(--muted); font-weight: 600; }
.cmp-cards .cmp-note { padding: 4px 2px 0; border-top: 0; }
.cmp-foot { margin-top: 22px; max-width: 78ch; font-size: 12.5px; line-height: 1.6; color: var(--dim); }
.cmp-foot a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }

/* ── IMPORT ───────────────────────────────────────────────────────────────── */
.imports { display: grid; gap: 12px; margin-top: 8px; }
.import-row {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-btn); padding: 18px 22px;
  transition: border-color .22s var(--ease), transform .22s var(--ease);
}
.import-row:hover { border-color: var(--accent-line); transform: translateX(4px); }
.import-row b { font-size: 16px; font-weight: 600; flex: 1; }
.import-row i { color: var(--dim); font-style: normal; }
.import-row u { text-decoration: none; color: var(--accent-hi); font-weight: 600; font-size: 14.5px; }

/* ── PRICING ──────────────────────────────────────────────────────────────── */
#pricing { background: var(--bg-raise); border-top: 1px solid var(--border); }
.trial {
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
  background: var(--accent-soft); border: 1px solid var(--accent-line);
  border-radius: var(--r-card); padding: 18px 26px; text-align: center;
  font-size: 15.5px; margin-bottom: 40px;
}
.trial b { color: var(--accent-hi); font-weight: 700; }
.tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.tier { padding: 30px 26px; display: flex; flex-direction: column; position: relative; }
.tier.is-popular { border-color: var(--accent-line); background: linear-gradient(180deg, rgba(99,102,241,0.08), var(--bg-card) 46%); }
.tier-flag {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em;
  padding: 4px 13px; border-radius: 999px; white-space: nowrap;
}
.tier-name { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 17px; margin-bottom: 10px; }
.tier-amt { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 40px; letter-spacing: -0.04em; line-height: 1; }
.tier-amt small { font-size: 15px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.tier-blurb { font-size: 13.5px; color: var(--dim); margin: 12px 0 22px; min-height: 38px; }
.tier ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; flex: 1; }
.tier li { display: flex; gap: 10px; font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.tier li svg { flex-shrink: 0; margin-top: 3px; color: var(--accent-hi); }
.tier li.carry { color: var(--text); font-weight: 600; }
.tier .btn { width: 100%; }
.price-note { text-align: center; font-size: 14px; color: var(--dim); margin-top: 30px; }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq { display: grid; gap: 10px; max-width: 800px; margin: 0 auto; }
.faq details { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-card); overflow: hidden; transition: border-color .22s var(--ease); }
.faq details[open] { border-color: var(--border-hi); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 20px 24px; min-height: 44px;
  font-size: 16px; font-weight: 600;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; flex-shrink: 0; width: 11px; height: 11px;
  border-right: 2px solid var(--dim); border-bottom: 2px solid var(--dim);
  transform: rotate(45deg) translate(-2px,-2px);
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); border-color: var(--accent-hi); }
.faq p { padding: 0 24px 22px; color: var(--muted); font-size: 15.5px; }

/* ── FINAL CTA + FOOTER ───────────────────────────────────────────────────── */
#cta { border-top: 1px solid var(--border); }
.cta-card {
  border-radius: var(--r-lg); padding: 84px 32px; text-align: center;
  position: relative; overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--border);
}
.cta-card::before {
  content: ''; position: absolute; top: -160px; left: 50%; width: 660px; height: 380px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(99,102,241,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-card > * { position: relative; }
.cta-card p { font-size: 17.5px; color: var(--muted); max-width: 52ch; margin: 20px auto 34px; }

#footer { border-top: 1px solid var(--border); padding: 54px var(--pad-x); }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.footer-copy { font-size: 13.5px; color: var(--dim); max-width: 340px; margin-top: 14px; line-height: 1.6; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { font-size: 13.5px; color: var(--dim); padding: 11px 0; min-height: 44px; display: inline-flex; align-items: center; transition: color .2s var(--ease); }
.footer-links a:hover { color: var(--text); }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 1040px) {
  .nav-links { display: none; }
  .cmp-stack { grid-template-columns: 1fr; gap: 30px; }
  .spot, .how-grid, .apps-grid { grid-template-columns: 1fr; gap: 40px; }
  .spot.is-flipped .spot-copy { order: 0; }
  .bento { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1040px) {
  .how-media-inner { position: sticky; top: 78px; }
  .how-step { min-height: 0; padding: 30px 0; opacity: 1; }
  .how-grid { display: block; }
  .how-media-inner { margin-bottom: 36px; }
}
@media (max-width: 760px) {
  #hero { padding-top: 56px; }
  .cmp-table-wrap { display: none; }
  .cmp-cards { display: grid; gap: 10px; }
  .cmp-stack { padding: 26px 22px; }
  .cmp-source { font-size: 14px; }
  .hero-stage { margin-top: 48px; }
  .hero-phone { width: 116px; left: -4px; bottom: -14px; }
  .replaces, .band, .stat-rail { grid-template-columns: 1fr 1fr; }
  .stat-rail { gap: 28px 20px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .founder, .cta-card { padding: 44px 24px; }
  .phones .shot--phone { width: 40%; }
  .phones .shot--phone:nth-child(2) { margin-top: 26px; }
  .bento .card { padding: 26px; }
  .bento .card-shot { margin-right: -27px; margin-bottom: -27px; }
}
@media (max-width: 540px) {
  .tiers, .replaces { grid-template-columns: 1fr; }
  .band { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; }
  .hero-stage { margin-left: -4px; margin-right: -4px; }
  .report-lines b { min-width: 0; }
}


/* ═══════════ SEO-PAGE ADDITIONS ═══════════════════════════════════════════
   Only what the home page does not already have: breadcrumbs, the page head,
   long-form prose, the two-column "vs" table and the footer's About block. */

/* ── breadcrumb ───────────────────────────────────────────────────────────── */
.crumbs {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 26px var(--pad-x) 0;
  font-size: 13px;
  color: var(--dim);
}
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.crumbs li { display: flex; align-items: center; gap: 8px; }
.crumbs li + li::before { content: '/'; color: #3a3a45; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.crumbs [aria-current] { color: var(--dim); }

/* ── page head ────────────────────────────────────────────────────────────── */
.phead { padding: 54px var(--pad-x) 0; }
.phead-inner { max-width: 940px; margin: 0 auto; }
.phead h1 { font-size: clamp(34px, 5.2vw, 58px); }
.phead .lede { margin-top: 22px; font-size: clamp(17px, 1.7vw, 20px); max-width: 62ch; }
.phead-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.phead-note { margin-top: 18px; font-size: 13.5px; color: var(--dim); }

/* ── long-form copy ───────────────────────────────────────────────────────── */
.prose { max-width: 68ch; }
.prose h2 { font-size: clamp(25px, 3vw, 34px); margin-top: 54px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: clamp(18px, 1.9vw, 21px); margin-top: 34px; }
.prose p { color: var(--muted); font-size: 16.5px; margin-top: 16px; }
.prose p strong { color: var(--text); font-weight: 600; }
.prose ul { margin-top: 16px; padding-left: 0; list-style: none; display: grid; gap: 9px; }
.prose ul li { position: relative; padding-left: 20px; color: var(--muted); font-size: 16px; }
.prose ul li::before {
  content: ''; position: absolute; left: 3px; top: 11px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
.prose a { color: var(--accent-hi); text-decoration: underline; text-underline-offset: 3px; }
.prose .tags { margin-top: 26px; }

/* a screenshot with its own caption, used between prose blocks */
.seo-figure { margin: 44px 0 0; }
.seo-figure figcaption { margin-top: 14px; font-size: 13.5px; color: var(--dim); }
.seo-figure--pair { display: grid; grid-template-columns: 1.62fr 0.38fr; gap: 22px; align-items: end; }
.seo-figure--pair .shot--phone { width: 100%; }

/* ── two-column comparison used on the /vs pages ──────────────────────────── */
.vs-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
}
table.vs { width: 100%; border-collapse: separate; border-spacing: 0; }
table.vs caption { text-align: left; padding: 0; }
table.vs th, table.vs td { padding: 14px 18px; vertical-align: top; text-align: left; }
table.vs thead th {
  border-bottom: 1px solid var(--border-hi);
  padding-top: 20px; padding-bottom: 15px;
  font-weight: 600;
}
table.vs thead th.is-us { background: #191a27; border-bottom-color: var(--accent-line); }
table.vs thead th.is-us .cmp-h-name { color: var(--text); }
table.vs thead th.is-us .cmp-h-price { color: var(--accent-hi); }
table.vs tbody th, table.vs tbody td { border-top: 1px solid var(--border); }
table.vs tbody th[scope="row"] {
  font-weight: 500; font-size: 14.5px; line-height: 1.45; color: var(--text); width: 44%;
}
table.vs td { width: 28%; }
table.vs td.is-us { background: rgba(99,102,241,0.07); border-left: 1px solid var(--accent-line); border-right: 1px solid var(--accent-line); }
table.vs tbody tr:last-child td.is-us { border-bottom: 1px solid var(--accent-line); }
.vs-cell { display: flex; align-items: flex-start; gap: 9px; }
.vs-cell .cmp-mark { flex-shrink: 0; margin-top: 1px; }
.vs-cell span.vs-n { font-size: 12.5px; line-height: 1.45; color: var(--dim); }
.vs-cell span.vs-l { font-size: 13px; font-weight: 600; color: var(--muted); }
td.is-us .vs-cell span.vs-l { color: var(--text); }
.vs-price { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 26px; }
.vs-price .card { padding: 24px 26px; }
.vs-price h3 { font-size: 17px; }
.vs-price .num { display: block; font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 30px; letter-spacing: -0.035em; margin: 10px 0 8px; }
.vs-price p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.vs-price .card.is-us { border-color: var(--accent-line); background: linear-gradient(180deg, rgba(99,102,241,0.08), var(--bg-card) 60%); }
.vs-price .card.is-us .num { color: var(--accent-hi); }

/* ── other-pages link grid + footer About ─────────────────────────────────── */
.page-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 26px; }
.page-links a {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-btn);
  padding: 16px 18px; font-size: 14.5px; font-weight: 500;
  transition: border-color .22s var(--ease), transform .22s var(--ease);
}
.page-links a:hover { border-color: var(--accent-line); transform: translateY(-2px); }
.page-links a i { display: block; font-style: normal; font-size: 12.5px; color: var(--dim); margin-top: 4px; font-weight: 400; }

.footer-about {
  max-width: var(--maxw); margin: 34px auto 0;
  padding-top: 26px; border-top: 1px solid var(--border);
  font-size: 13px; line-height: 1.65; color: var(--dim);
}
.footer-about b { color: var(--muted); font-weight: 600; }
.footer-about a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }

/* ── this page's responsive adjustments ───────────────────────────────────── */
@media (max-width: 900px) {
  .page-links { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .phead { padding-top: 34px; }
  .seo-figure--pair { grid-template-columns: 1fr; }
  .seo-figure--pair .shot--phone { width: 46%; }
  .vs-price { grid-template-columns: 1fr; }
  table.vs th, table.vs td { padding: 12px 13px; }
  table.vs tbody th[scope="row"] { width: 40%; font-size: 13.5px; }
}
@media (max-width: 560px) {
  .page-links { grid-template-columns: 1fr; }
  .phead-ctas .btn { width: 100%; }
  table.vs th, table.vs td { padding: 11px 10px; }
  table.vs tbody th[scope="row"] { width: 38%; font-size: 13px; }
  .vs-cell { flex-direction: column; gap: 5px; }
}
