/* Trakr comparison-page stylesheet — shared by /vs-*.html landing pages */
:root {
  --navy:       #0c1524;
  --navy-2:     #0f1829;
  --navy-3:     #162035;
  --navy-4:     #1a2840;
  --border:     #1e2f48;
  --border-dim: #162035;
  --teal:       #2ec4a0;
  --teal-dim:   rgba(46,196,160,0.12);
  --teal-glow:  rgba(46,196,160,0.25);
  --text:       #e8f0f8;
  --text-dim:   #7a98b8;
  --subtle:     #4a6080;
  --muted:      #2a3f5a;
  --amber:      #f59e0b;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--navy-2);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.teal { color: var(--teal); }
a { color: var(--teal); }

.pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal); background: var(--teal-dim);
  border: 1px solid var(--teal-glow); padding: 6px 16px; border-radius: 100px;
}
.pill .dot { width: 5px; height: 5px; background: var(--teal); border-radius: 50%; flex-shrink: 0; }

/* BACKGROUND */
.bg-grid {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(46,196,160,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,196,160,0.028) 1px, transparent 1px);
  background-size: 52px 52px;
}

/* NAV */
nav#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
nav#nav.scrolled {
  background: rgba(12,21,36,0.94);
  border-color: var(--border);
  backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 32px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--teal) 0%, #1a8a72 100%);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(46,196,160,0.3);
  flex-shrink: 0;
}
.nav-icon svg { width: 18px; height: 18px; }
.nav-wordmark { font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -0.03em; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--text-dim); text-decoration: none; transition: color 0.15s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  background: var(--teal); color: #0c1524; border: none; cursor: pointer;
  padding: 9px 22px; border-radius: 100px; text-decoration: none; transition: opacity 0.15s;
}
.nav-cta:hover { opacity: 0.85; }

@media (max-width: 820px) {
  .nav-links { display: none; }
}

/* HERO */
.vs-hero {
  min-height: auto; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 160px 32px 70px; position: relative;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(46,196,160,0.1) 0%, transparent 70%);
}
.vs-hero-inner { max-width: 860px; position: relative; z-index: 1; }
.vs-hero-eyebrow { margin-bottom: 22px; }
.vs-hero h1 {
  font-size: clamp(42px, 7vw, 74px); font-weight: 900;
  color: #fff; letter-spacing: -0.04em; line-height: 1.0; margin-bottom: 22px;
}
.vs-hero h1 em { font-style: normal; color: var(--teal); }
.vs-hero h1 .vs-sep { color: var(--subtle); font-weight: 700; margin: 0 12px; }
.vs-hero-sub {
  font-size: clamp(15px, 2vw, 18px); color: var(--text-dim);
  max-width: 640px; margin: 0 auto 36px; line-height: 1.65;
}
.vs-hero-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* BUTTONS */
.btn-primary {
  display: inline-block; padding: 14px 32px; background: var(--teal); color: #0c1524;
  font-size: 14px; font-weight: 700; border-radius: 100px; text-decoration: none;
  transition: opacity 0.15s, transform 0.15s; letter-spacing: 0.02em;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-ghost {
  display: inline-block; padding: 14px 32px; background: transparent; color: var(--text-dim);
  font-size: 14px; font-weight: 600; border-radius: 100px; text-decoration: none;
  border: 1px solid var(--border); transition: border-color 0.15s, color 0.15s;
}
.btn-ghost:hover { border-color: var(--text-dim); color: var(--text); }

/* SECTION LABELS */
.section-label { text-align: center; margin-bottom: 48px; }
.section-label h2 {
  font-size: clamp(28px, 4.4vw, 44px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.1; margin-top: 16px; color: #fff;
}
.section-label h2 em { font-style: normal; color: var(--teal); }
.section-label p { margin-top: 14px; font-size: 15px; color: var(--text-dim); max-width: 580px; margin-inline: auto; }

/* VERDICT PANEL (3-column) */
.verdict-section { padding: 80px 0 40px; position: relative; z-index: 1; }
.verdict-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-dim); border: 1px solid var(--border); }
.verdict-card { background: var(--navy-3); padding: 28px 26px; }
.verdict-card.is-trakr { background: rgba(46,196,160,0.06); position: relative; }
.verdict-card.is-trakr::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--teal), transparent); }
.verdict-head { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.verdict-tag { font-size: 9px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); background: var(--teal-dim); border: 1px solid var(--teal-glow); padding: 3px 10px; }
.verdict-tag.neutral { color: var(--text-dim); background: var(--navy-4); border-color: var(--border); }
.verdict-tag.competitor { color: var(--amber); background: rgba(245,158,11,0.08); border-color: rgba(245,158,11,0.25); }
.verdict-card h3 { font-size: 15px; font-weight: 800; color: #fff; letter-spacing: -0.02em; margin-bottom: 12px; }
.verdict-card ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.verdict-card li { font-size: 13px; color: var(--text-dim); line-height: 1.55; padding-left: 16px; position: relative; }
.verdict-card li::before { content: '→'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.verdict-card.competitor li::before { color: var(--amber); }
.verdict-card.neutral li::before { color: var(--text-dim); }

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

/* COMPARE TABLE (reused from index.html) */
.compare-section { padding: 80px 0; border-top: 1px solid var(--border-dim); position: relative; z-index: 1; }
.compare-wrap { border: 1px solid var(--border); overflow: hidden; margin-top: 40px; }
.compare-scroll { overflow-x: auto; }
.compare-head {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr;
  background: var(--navy); border-bottom: 1px solid var(--border);
}
.compare-head-cell {
  padding: 28px 24px; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: flex-end; min-width: 150px;
}
.compare-head-cell:last-child { border-right: none; }
.compare-head-cell:first-child { justify-content: center; }
.compare-head-label { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--subtle); }
.compare-head-cell.is-trakr {
  background: rgba(46,196,160,0.07);
  border-right: 1px solid var(--teal-glow);
  border-left: 1px solid var(--teal-glow);
  position: relative;
}
.compare-head-cell.is-trakr::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}
.compare-badge {
  display: inline-block; font-size: 9px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal); background: var(--teal-dim);
  border: 1px solid var(--teal-glow); padding: 3px 10px; margin-bottom: 10px; align-self: flex-start;
}
.compare-prod-name { font-size: 16px; font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1.1; }
.compare-prod-by { font-size: 11px; color: var(--subtle); margin-top: 4px; letter-spacing: 0.02em; }

.compare-row {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr;
  border-bottom: 1px solid var(--border-dim); transition: background 0.15s;
}
.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: rgba(255,255,255,0.02); }
.compare-cell {
  padding: 18px 24px; border-right: 1px solid var(--border-dim);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; min-width: 150px;
}
.compare-cell:last-child { border-right: none; }
.compare-cell:first-child { align-items: flex-start; justify-content: center; flex-direction: row; gap: 12px; }
.compare-cell.is-trakr {
  background: rgba(46,196,160,0.04);
  border-left: 1px solid rgba(46,196,160,0.1);
  border-right: 1px solid rgba(46,196,160,0.1);
}
.compare-feat-icon {
  width: 30px; height: 30px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  background: var(--navy-4); border: 1px solid var(--border); color: var(--subtle);
}
.compare-feat-icon svg { width: 14px; height: 14px; }
.compare-feat-label { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.4; }

.cmp-yes { display: flex; align-items: center; gap: 6px; color: var(--teal); font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-align: center; }
.cmp-yes svg { width: 18px; height: 18px; flex-shrink: 0; }
.cmp-no-wrap, .cmp-partial-wrap { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cmp-no-wrap svg { width: 14px; height: 14px; color: var(--muted); }
.cmp-partial-wrap svg { width: 14px; height: 14px; color: var(--amber); }
.cmp-no-text { font-size: 10.5px; font-weight: 600; color: var(--muted); letter-spacing: 0.03em; text-align: center; line-height: 1.4; }
.cmp-partial-text { font-size: 10.5px; font-weight: 600; color: var(--amber); letter-spacing: 0.03em; text-align: center; line-height: 1.4; }

.compare-legend {
  display: flex; align-items: center; gap: 28px; padding: 14px 24px;
  background: var(--navy); border-top: 1px solid var(--border); flex-wrap: wrap;
}
.compare-legend-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-right: 4px; }
.compare-legend-item { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; }
.compare-legend-item svg { width: 13px; height: 13px; }
.legend-yes { color: var(--teal); }
.legend-partial { color: var(--amber); }
.legend-no { color: var(--muted); }

@media (max-width: 900px) {
  .compare-head { grid-template-columns: 200px 120px 120px; }
  .compare-row  { grid-template-columns: 200px 120px 120px; }
}

/* WHY SWITCH — narrative blocks */
.why-section { padding: 80px 0; border-top: 1px solid var(--border-dim); position: relative; z-index: 1; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border-dim); border: 1px solid var(--border-dim); }
.why-card { background: var(--navy-3); padding: 32px 28px; position: relative; overflow: hidden; transition: background 0.2s; }
.why-card:hover { background: var(--navy-4); }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--teal-glow), transparent); opacity: 0; transition: opacity 0.2s; }
.why-card:hover::before { opacity: 1; }
.why-num { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; color: var(--muted); margin-bottom: 14px; }
.why-card h3 { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -0.02em; margin-bottom: 10px; line-height: 1.25; }
.why-card p { font-size: 14px; color: var(--text-dim); line-height: 1.7; }
.why-card p + p { margin-top: 12px; }
@media (max-width: 820px) { .why-grid { grid-template-columns: 1fr; } }

/* PRICING COMPARE */
.pricing-compare { padding: 80px 0; border-top: 1px solid var(--border-dim); position: relative; z-index: 1; }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border-dim); border: 1px solid var(--border); margin-top: 40px; }
.price-card { background: var(--navy-3); padding: 36px 32px; position: relative; }
.price-card.is-trakr { background: rgba(46,196,160,0.05); }
.price-card.is-trakr::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--teal), transparent); }
.price-card h3 { font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -0.02em; margin-bottom: 6px; }
.price-card .price-sub { font-size: 12px; color: var(--subtle); margin-bottom: 22px; }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.price-list li { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-dim); padding: 8px 0; border-bottom: 1px dashed var(--border-dim); }
.price-list li:last-child { border-bottom: none; }
.price-list li strong { color: var(--text); font-weight: 700; }
.price-tco { margin-top: 22px; padding: 16px 18px; background: var(--navy); border: 1px solid var(--border); font-size: 12px; color: var(--text-dim); line-height: 1.65; }
.price-tco strong { color: var(--teal); }
@media (max-width: 820px) { .price-grid { grid-template-columns: 1fr; } }

/* MIGRATION BAND */
.migration { padding: 80px 0; border-top: 1px solid var(--border-dim); position: relative; z-index: 1; }
.migration-wrap { background: var(--navy-3); border: 1px solid var(--border); padding: 48px 40px; margin-top: 40px; }
.migration-wrap h3 { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -0.02em; margin-bottom: 16px; }
.migration-steps { counter-reset: step; list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 22px; }
.migration-steps li {
  counter-increment: step; position: relative;
  padding: 14px 18px 14px 58px;
  background: var(--navy); border: 1px solid var(--border-dim);
  font-size: 13.5px; color: var(--text-dim); line-height: 1.65;
}
.migration-steps li::before {
  content: counter(step); position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal-dim); border: 1px solid var(--teal-glow); color: var(--teal);
  font-size: 12px; font-weight: 800;
}
.migration-steps li strong { color: var(--text); font-weight: 700; }

/* FAQ */
.faq-section { padding: 80px 0; border-top: 1px solid var(--border-dim); position: relative; z-index: 1; }
.faq-list { display: flex; flex-direction: column; gap: 2px; background: var(--border-dim); border: 1px solid var(--border-dim); margin-top: 40px; }
.faq-item { background: var(--navy-3); padding: 0; }
.faq-item details { padding: 22px 28px; }
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 15px; font-weight: 700; color: #fff;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; color: var(--teal); font-size: 22px; font-weight: 300; transition: transform 0.2s;
}
.faq-item details[open] summary::after { content: '−'; }
.faq-item details p { margin-top: 14px; font-size: 14px; color: var(--text-dim); line-height: 1.7; }
.faq-item details p + p { margin-top: 10px; }

/* RELATED (grouped) */
.related-section { padding: 80px 0 60px; border-top: 1px solid var(--border-dim); position: relative; z-index: 1; }
.related-group { margin-top: 36px; }
.related-group-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px; padding: 0 2px;
}
.related-group-label { font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); }
.related-group-count { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }
.related-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1px; background: var(--border-dim); border: 1px solid var(--border-dim); margin-top: 0;
}
.related-card {
  background: var(--navy-3); padding: 20px 22px; text-decoration: none;
  transition: background 0.15s;
  display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto auto;
  gap: 4px 12px; align-items: center; position: relative; overflow: hidden;
}
.related-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal-glow), transparent);
  opacity: 0; transition: opacity 0.2s;
}
.related-card:hover { background: var(--navy-4); }
.related-card:hover::before { opacity: 1; }
.related-card .r-lbl {
  grid-column: 1; grid-row: 1;
  font-size: 9.5px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal);
}
.related-card .r-name {
  grid-column: 1; grid-row: 2;
  font-size: 16px; font-weight: 800; color: #fff; letter-spacing: -0.02em; line-height: 1.2;
  transition: color 0.15s;
}
.related-card .r-sub {
  grid-column: 1 / 3; grid-row: 3;
  font-size: 11.5px; color: var(--subtle); line-height: 1.5; letter-spacing: 0.01em;
  margin-top: 2px;
}
.related-card .r-arrow {
  grid-column: 2; grid-row: 1 / 3;
  font-size: 18px; color: var(--muted); font-weight: 400;
  transition: color 0.15s, transform 0.15s;
  align-self: center;
}
.related-card:hover .r-arrow { color: var(--teal); transform: translateX(3px); }
.related-card:hover .r-name { color: var(--teal); }

/* CTA BAND */
.cta-band {
  padding: 90px 0; border-top: 1px solid var(--border-dim);
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(46,196,160,0.08) 0%, transparent 70%);
  position: relative; z-index: 1; text-align: center;
}
.cta-band h2 { font-size: clamp(28px, 4.4vw, 44px); font-weight: 800; letter-spacing: -0.03em; color: #fff; margin-bottom: 14px; line-height: 1.1; }
.cta-band h2 em { font-style: normal; color: var(--teal); }
.cta-band p { font-size: 15px; color: var(--text-dim); max-width: 560px; margin: 0 auto 34px; line-height: 1.65; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* FOOTER */
footer { border-top: 1px solid var(--border-dim); padding: 40px 0; background: var(--navy); position: relative; z-index: 1; }
.footer-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-meta { font-size: 11px; color: var(--muted); text-align: right; line-height: 1.8; }
@media (max-width: 640px) {
  .footer-inner { flex-direction: column; }
  .footer-meta { text-align: left; }
}

/* ALTERNATIVES PILL GRID (used by index.html) */
.alt-section { padding: 80px 0; border-top: 1px solid var(--border-dim); position: relative; z-index: 1; }
.alt-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1px; background: var(--border-dim); border: 1px solid var(--border-dim); margin-top: 40px; }
.alt-card {
  background: var(--navy-3); padding: 20px 22px; text-decoration: none;
  transition: background 0.15s; display: flex; flex-direction: column; gap: 4px;
}
.alt-card:hover { background: var(--navy-4); }
.alt-card .a-lbl { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); }
.alt-card .a-name { font-size: 15px; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.alt-card .a-by { font-size: 11px; color: var(--subtle); }
