/* slabster.ca marketing site */

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

:root {
  --gold:   #c9a84c;
  --gold2:  #e8c86a;
  --bg:     #07090d;
  --panel:  #0b1018;
  --panel2: #0f1622;
  --line:   #1a2236;
  --text:   #e8eaf0;
  --muted:  #8a94a8;
  --green:  #4caf81;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Nav ─────────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,9,13,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 0 clamp(16px, 5vw, 80px);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 60px;
  gap: 32px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.nav-brand:hover { text-decoration: none; }

.nav-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
}

.nav-links a:hover { color: var(--text); text-decoration: none; }

.btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 22px; border-radius: 3px; font-size: 14px; font-weight: 600; letter-spacing: .02em; cursor: pointer; border: none; transition: opacity .15s; text-decoration: none; }
.btn:hover { opacity: .88; text-decoration: none; }
.btn-primary { background: var(--gold); color: #09080a; }
.btn-outline { background: transparent; border: 1px solid var(--gold); color: var(--gold); }

/* ── Hero ─────────────────────────────────────────────────── */

.hero {
  padding: clamp(64px, 10vw, 120px) clamp(16px, 5vw, 80px) clamp(80px, 12vw, 140px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(201,168,76,.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  border: 1px solid rgba(201,168,76,.3);
  padding: 4px 12px;
  border-radius: 20px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  max-width: 820px;
  margin: 0 auto 24px;
}

.hero h1 span { color: var(--gold); }

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Card mockup ──────────────────────────────────────────── */

.hero-art {
  margin: 60px auto 0;
  max-width: 780px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(201,168,76,.1);
}

.hero-art-bar {
  background: var(--panel2);
  border-bottom: 1px solid var(--line);
  padding: 10px 16px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.hero-art-dot { width: 10px; height: 10px; border-radius: 50%; }

.hero-art-inner {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.mock-card {
  background: var(--panel2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px;
}

.mock-card-img {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #0d1420 0%, #1a2a3e 100%);
  border-radius: 3px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.mock-card-img svg { width: 34%; height: 34%; }

.mock-card-name { font-size: 11px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.mock-card-set  { font-size: 10px; color: var(--muted); margin-bottom: 6px; }
.mock-card-price { font-size: 12px; font-weight: 700; color: var(--gold); }
.mock-badge { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: .06em; padding: 2px 6px; border-radius: 2px; text-transform: uppercase; }
.mock-badge-green { background: rgba(76,175,129,.18); color: var(--green); }

/* ── Section base ─────────────────────────────────────────── */

.section {
  padding: clamp(64px, 8vw, 100px) clamp(16px, 5vw, 80px);
}

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-heading {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.55;
}

/* ── Features grid ─────────────────────────────────────────── */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.feature-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px 24px;
  transition: border-color .2s;
}

.feature-card:hover { border-color: rgba(201,168,76,.3); }

.feature-icon { margin-bottom: 16px; color: var(--gold); }
.feature-icon svg { width: 28px; height: 28px; }
.feature-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-desc { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ── Scan showcase ─────────────────────────────────────────── */

.scan-showcase { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.scan-modes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.scan-mode-card {
  background: var(--panel2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px 24px;
}

.scan-mode-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
}
.scan-mode-badge-live { background: rgba(76,175,129,.16); color: var(--green); border: 1px solid rgba(76,175,129,.35); }
.scan-mode-badge-soon { background: rgba(201,168,76,.14); color: var(--gold); border: 1px solid rgba(201,168,76,.3); }

.scan-mode-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.scan-mode-desc { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 24px; }

.scan-demo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.scan-demo-photo {
  width: 64px;
  height: 84px;
  flex-shrink: 0;
  background: var(--panel);
  border: 1px dashed var(--line);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}
.scan-demo-photo svg { width: 50%; height: 50%; }

.scan-demo-arrow { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }

.scan-demo .mock-card { flex: 1; max-width: 180px; }

.scan-table-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mock-card.mini { padding: 10px; }
.mock-card.mini .mock-card-name { font-size: 12px; margin-bottom: 4px; }
.mock-card.mini .mock-card-price { font-size: 13px; }

/* ── How it works ──────────────────────────────────────────── */

.how-section { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 48px;
  counter-reset: step;
}

.step { counter-increment: step; }

.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold);
  font-weight: 800;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

.step-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-desc  { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ── Mobile app ────────────────────────────────────────────── */

.mobile-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.mobile-modes { list-style: none; margin: 32px 0; display: flex; flex-direction: column; gap: 18px; }
.mobile-mode-title { font-size: 15px; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.mobile-mode-desc { font-size: 14px; color: var(--muted); line-height: 1.55; max-width: 440px; }

.mobile-badges { display: flex; gap: 10px; flex-wrap: wrap; }

.store-badge {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.4);
  border-radius: 20px;
  padding: 6px 14px;
}

.store-badge-muted { color: var(--muted); border-color: var(--line); }

.phone-mockup { width: 240px; flex-shrink: 0; }

.phone-frame {
  background: #0b1018;
  border: 8px solid #1a2236;
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 30px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(201,168,76,.08);
}

.phone-notch { width: 70px; height: 16px; background: #05070c; border-radius: 10px; margin: 0 auto 10px; }

.phone-screen {
  background: var(--panel2);
  border-radius: 20px;
  padding: 16px 12px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phone-title { font-size: 13px; font-weight: 700; text-align: center; color: var(--text); }

.phone-mode-row { display: flex; gap: 6px; }

.phone-mode-btn {
  flex: 1;
  text-align: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 4px;
  font-size: 10px;
  color: var(--muted);
}

.phone-mode-btn.active {
  border-color: rgba(201,168,76,.5);
  color: var(--text);
  background: linear-gradient(160deg, #0d1828 0%, #0b1018 100%);
}

.phone-viewfinder {
  flex: 1;
  min-height: 120px;
  border: 2px dashed rgba(201,168,76,.35);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-scan-result { background: var(--panel); border: 1px solid var(--line); border-radius: 8px; padding: 10px; }

.phone-result-badge { font-size: 11px; font-weight: 700; color: var(--green); margin-bottom: 6px; }

.phone-result-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  padding: 2px 0;
}

.phone-result-row span:last-child { color: var(--text); font-weight: 600; }

@media (max-width: 720px) {
  .mobile-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .mobile-mode-desc { margin: 0 auto; }
}

/* ── Pricing ───────────────────────────────────────────────── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
  align-items: start;
}

.pricing-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px 28px;
  position: relative;
}

.pricing-card.featured {
  border-color: rgba(201,168,76,.5);
  background: linear-gradient(160deg, #0d1828 0%, #0b1018 100%);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #09080a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-plan { font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.pricing-price { font-size: 42px; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.pricing-price span { font-size: 18px; font-weight: 400; color: var(--muted); }
.pricing-per { font-size: 13px; color: var(--muted); margin-top: 4px; margin-bottom: 24px; }

.pricing-divider { border: none; border-top: 1px solid var(--line); margin-bottom: 20px; }

.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li { font-size: 14px; color: var(--muted); padding: 5px 0; display: flex; gap: 8px; }
.pricing-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.pricing-features li.limit { color: var(--text); }

.pricing-cta { display: block; text-align: center; }

/* ── CTA band ──────────────────────────────────────────────── */

.cta-band {
  padding: clamp(64px, 8vw, 100px) clamp(16px, 5vw, 80px);
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,.08) 0%, transparent 70%);
}

.cta-band h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 16px; }
.cta-band p  { font-size: 17px; color: var(--muted); margin-bottom: 36px; }

/* ── Footer ────────────────────────────────────────────────── */

.footer {
  border-top: 1px solid var(--line);
  padding: 32px clamp(16px, 5vw, 80px);
}

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

.footer-copy { font-size: 13px; color: var(--muted); }
.footer-links { display: flex; gap: 20px; list-style: none; }
.footer-links a { font-size: 13px; color: var(--muted); }
.footer-links a:hover { color: var(--text); }

@media (max-width: 640px) {
  .hero-art-inner { grid-template-columns: 1fr 1fr; }
  .nav-links      { display: none; }
}

/* ── Nav active state ──────────────────────────────────────── */
.nav-links a.active { color: var(--text); }

/* ── Subpage hero (smaller hero for non-home pages) ──────────── */

.subpage-hero {
  padding: clamp(48px, 7vw, 80px) clamp(16px, 5vw, 80px) clamp(48px, 6vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.subpage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(201,168,76,.10) 0%, transparent 70%);
  pointer-events: none;
}

.subpage-hero h1 {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  max-width: 760px;
  margin: 0 auto 18px;
}

.subpage-hero h1 span { color: var(--gold); }

.subpage-hero p {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ── Compatibility strip (text-only brand mentions, no third-party logos) ─ */

.compat-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  padding: 28px clamp(16px, 5vw, 80px);
}

.compat-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.compat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: var(--panel2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 8px 16px;
}

.compat-badge b { color: var(--gold); font-weight: 800; }
.compat-wordmark { font-weight: 900; letter-spacing: -.02em; }
.compat-wordmark .e { color: #e53238; }
.compat-wordmark .b { color: #0064d2; }
.compat-wordmark .y { color: #f5af02; }
.compat-wordmark .a2 { color: #86b817; }

.compat-note {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  max-width: 640px;
  margin: 14px auto 0;
  line-height: 1.5;
}

/* ── Why Slabster / comparison ────────────────────────────────── */

.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.compare-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px 26px;
}

.compare-card.good { border-color: rgba(201,168,76,.4); background: linear-gradient(160deg, #0d1828 0%, #0b1018 100%); }

.compare-title { font-size: 15px; font-weight: 800; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .06em; }
.compare-title.good { color: var(--gold); }
.compare-title.bad { color: var(--muted); }

.compare-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.compare-list li { font-size: 14px; color: var(--muted); display: flex; gap: 8px; line-height: 1.5; }
.compare-list li::before { content: '✕'; color: #a05050; font-weight: 700; flex-shrink: 0; }
.compare-card.good .compare-list li { color: var(--text); }
.compare-card.good .compare-list li::before { content: '✓'; color: var(--green); }

/* ── Legal / long-form content pages ──────────────────────────── */

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 72px) clamp(16px, 5vw, 80px) clamp(80px, 10vw, 120px);
}

.legal-content h2 { font-size: 22px; font-weight: 800; margin: 40px 0 14px; letter-spacing: -.01em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 16px; font-weight: 700; margin: 24px 0 10px; color: var(--gold); }
.legal-content p { font-size: 14.5px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.legal-content ul, .legal-content ol { color: var(--muted); font-size: 14.5px; line-height: 1.7; margin: 0 0 14px 22px; }
.legal-content li { margin-bottom: 6px; }
.legal-content strong { color: var(--text); }
.legal-content a { color: var(--gold); }

.legal-updated {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.legal-disclaimer {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  padding: 16px 20px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ── About page ────────────────────────────────────────────────── */

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.about-block {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px 24px;
}

.about-block-title { font-size: 15px; font-weight: 800; color: var(--gold); margin-bottom: 10px; letter-spacing: .02em; }
.about-block-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

.parent-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  background: var(--panel2);
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 20px;
  padding: 8px 18px;
  margin-top: 12px;
}

/* ── Pricing: seats / notes ───────────────────────────────────── */

.pricing-note {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px 26px;
  margin-top: 32px;
}

.pricing-note h3 { font-size: 15px; font-weight: 800; color: var(--gold); margin-bottom: 12px; }
.pricing-note p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 10px; }
.pricing-note ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 10px; }
.pricing-note li { font-size: 14px; color: var(--text); display: flex; gap: 8px; }
.pricing-note li::before { content: '→'; color: var(--gold); flex-shrink: 0; }
.pricing-note .fine { font-size: 12px; color: var(--muted); }

/* ── Feature groups (features.html) ───────────────────────────── */

.feature-group { margin-top: 56px; }
.feature-group:first-of-type { margin-top: 48px; }
.feature-group-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

/* ── eBay Canada highlight banner (compare.html) ──────────────── */

.ebayca-banner {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(160deg, #0d1828 0%, #0b1018 100%);
  padding: clamp(40px, 6vw, 64px) clamp(16px, 5vw, 80px);
}

.ebayca-banner-inner { max-width: 1100px; margin: 0 auto; text-align: center; }

.ebayca-banner-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #09080a;
  background: var(--gold);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.ebayca-banner h2 {
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.25;
  max-width: 760px;
  margin: 0 auto 40px;
}

.ebayca-banner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  text-align: left;
}

.ebayca-point {
  background: var(--panel);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 6px;
  padding: 22px 20px;
}

.ebayca-point-title { font-size: 14px; font-weight: 800; color: var(--gold); margin-bottom: 8px; }
.ebayca-point-desc { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* ── Comparison table (compare.html) ──────────────────────────── */

.compare-table-wrap {
  margin-top: 40px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.compare-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
  font-size: 13.5px;
}

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

.compare-table thead th {
  background: var(--panel2);
  color: var(--text);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .01em;
  white-space: nowrap;
}

.compare-table thead th span { display: block; font-size: 10.5px; font-weight: 500; color: var(--muted); white-space: normal; margin-top: 2px; }

.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:nth-child(even) { background: rgba(255,255,255,.015); }

.ct-feature-col { min-width: 220px; }
.ct-slabster-col { color: var(--gold) !important; }

.ct-feature { font-weight: 600; color: var(--text); }

.ct-yes, .ct-partial, .ct-no { color: var(--muted); }
.ct-yes::before, .ct-partial::before, .ct-no::before {
  display: inline-block;
  margin-right: 7px;
  font-weight: 800;
}
.ct-yes::before { content: '✓'; color: var(--green); }
.ct-partial::before { content: '△'; color: var(--gold); }
.ct-no::before { content: '✕'; color: #a05050; }

.compare-table td.ct-slabster,
.compare-table td:nth-child(2) { background: rgba(201,168,76,.06); color: var(--text); font-weight: 600; }

.compare-table tr.ct-highlight { background: rgba(201,168,76,.1); }
.compare-table tr.ct-highlight td { border-bottom: 1px solid rgba(201,168,76,.3); font-weight: 700; }
.compare-table tr.ct-highlight td.ct-feature { color: var(--gold); }
.compare-table tr.ct-highlight td:nth-child(2) { background: rgba(201,168,76,.18); }

.ct-footnote { font-size: 12px; color: var(--muted); margin-top: 20px; max-width: 760px; line-height: 1.6; }

/* ── Footer brand line ─────────────────────────────────────────── */

.footer-brand {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.footer-legal-note {
  max-width: 1100px;
  margin: 20px auto 0;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.footer-land-ack {
  max-width: 1100px;
  margin: 16px auto 0;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
