/* Pinpole — inner pages aligned with landing-page/index.html */

:root {
  --background: #faf9f7;
  --surface: #ffffff;
  --surface-2: #f8f7f5;
  --muted: #e8e6e1;
  --foreground: #0f172a;
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-muted: rgba(37, 99, 235, 0.08);
  --border: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.12);
  --text: #0f172a;
  --text-muted: #475569;
  --text-dim: #64748b;
  --cyan: #0891b2;
  --emerald: #059669;
  --amber: #d97706;
  --rose: #e11d48;
  --purple: #7c3aed;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 10px 40px -12px rgba(15, 23, 42, 0.12);
  --max-w: 1200px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; background: #faf9f7; }
body.pinpole-subpage {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--foreground);
  background: #faf9f7;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero .gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav (same behavior as index: light text on hero, then scrolled) */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: 0 1px 8px rgba(15, 23, 42, 0.04);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: white;
  transition: color 0.3s;
  flex-shrink: 0;
}
.nav.scrolled .nav-logo { color: var(--foreground); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}
.nav-links a:hover { color: white; }
.nav.scrolled .nav-links a { color: var(--text-muted); }
.nav.scrolled .nav-links a:hover { color: var(--foreground); }
.nav-links a.active { color: white; font-weight: 600; }
.nav.scrolled .nav-links a.active { color: var(--primary); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}
.nav.scrolled .nav-cta {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
.nav.scrolled .nav-cta:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}
.mobile-toggle {
  display: none;
  background: none;
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s;
  flex-shrink: 0;
}
.nav.scrolled .mobile-toggle { color: var(--foreground); }

/* Page hero (index hero, compact) */
.page-hero {
  padding: 140px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #0b1120;
}
.page-hero .hero-video-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0b1120;
}
.page-hero .hero-video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 17, 32, 0.45);
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: white;
  margin-bottom: 24px;
}
.page-hero .hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--emerald);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: white;
}
.page-hero p {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Sections */
.section { padding: 88px 0; position: relative; }
.section-sm { padding: 64px 0; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--primary-muted);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.section-head { margin-bottom: 40px; }
.section-head.center { text-align: center; }
.section-head .section-desc { margin-left: auto; margin-right: auto; }
.section-title {
  font-size: clamp(1.65rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--foreground);
  margin-bottom: 12px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 8px 0 0;
}
.stat-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.stat-value {
  font-size: 1.85rem;
  font-weight: 800;
  font-family: ui-monospace, monospace;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Feature cards grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.feature-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.2s;
  box-shadow: var(--shadow);
}
.feature-card:hover {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 0.9rem;
  font-weight: 800;
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Persona / use-case cards */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.persona-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.2s;
  box-shadow: var(--shadow);
}
.persona-card:hover {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.persona-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--primary-muted);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 14px;
}
.persona-tag.cyan { color: var(--cyan); background: rgba(8, 145, 178, 0.1); border-color: rgba(8, 145, 178, 0.2); }
.persona-tag.rose { color: var(--rose); background: rgba(225, 29, 72, 0.08); border-color: rgba(225, 29, 72, 0.15); }
.persona-tag.emerald { color: var(--emerald); background: rgba(5, 150, 105, 0.1); border-color: rgba(5, 150, 105, 0.2); }
.persona-tag.purple { color: var(--purple); background: rgba(124, 58, 237, 0.1); border-color: rgba(124, 58, 237, 0.2); }
.persona-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 8px;
}
.persona-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Pricing */
.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.pricing-toggle-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}
.pricing-toggle-label.active { color: var(--foreground); font-weight: 600; }
.pricing-toggle {
  width: 48px;
  height: 26px;
  border-radius: 13px;
  background: var(--muted);
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
}
.pricing-toggle.on { background: var(--primary); }
.pricing-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.pricing-toggle.on::after { transform: translateX(22px); }
.pricing-save {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--emerald);
  background: rgba(5,150,105,0.08);
  padding: 3px 8px;
  border-radius: 20px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all 0.25s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px -15px rgba(15,23,42,0.12);
}
.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), 0 20px 60px -15px rgba(37,99,235,0.18);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.pricing-card-name {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.pricing-card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.pricing-card-price .amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--foreground);
  line-height: 1;
  letter-spacing: -1.5px;
}
.pricing-card-price .period {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 500;
}
.pricing-card-desc {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 24px;
  line-height: 1.5;
}
.pricing-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pricing-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.45;
}
.pricing-card-features li svg {
  width: 16px;
  height: 16px;
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-card .btn-primary,
.pricing-card .btn-outline {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 12px 0;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.2s;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1.5px solid var(--border-strong);
  color: var(--foreground);
  padding: 12px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.2s;
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-muted);
}
.enterprise-row {
  margin-top: 32px;
  padding: 28px 36px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.enterprise-row h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 4px;
}
.enterprise-row p {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.5;
  max-width: 520px;
}

/* Media grid */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.media-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.media-frame {
  aspect-ratio: 16 / 10;
  position: relative;
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  display: grid;
  place-items: center;
}
.media-frame img,
.media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-card.is-broken .media-frame img,
.media-card.is-broken .media-frame video { display: none; }
.media-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--primary);
  background: var(--primary-muted);
  border: 1px solid rgba(37, 99, 235, 0.18);
}
.media-placeholder {
  display: none;
  text-align: center;
  padding: 20px;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}
.media-placeholder strong {
  display: block;
  color: var(--foreground);
  margin-bottom: 4px;
  font-size: 0.85rem;
}
.media-card.is-broken .media-placeholder { display: block; }
.media-meta { padding: 14px 14px 16px; }
.media-meta h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 6px;
}
.media-meta p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--primary);
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.2s;
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--surface);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  transition: all 0.2s;
}
.btn-secondary:hover {
  background: var(--surface-2);
  border-color: var(--border);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  border-radius: 10px;
  border: 1px solid rgba(37, 99, 235, 0.25);
  background: var(--primary-muted);
  transition: all 0.2s;
}
.btn-ghost:hover {
  border-color: var(--primary);
  background: rgba(37, 99, 235, 0.12);
}

/* CTA */
.cta-section { padding: 80px 0; position: relative; }
.cta-box {
  text-align: center;
  padding: 56px 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.cta-box h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--foreground);
  margin-bottom: 12px;
  line-height: 1.2;
}
.cta-box p { color: var(--text-muted); margin-bottom: 28px; }
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--foreground);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom span { font-size: 0.8rem; color: var(--text-dim); }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a { color: var(--text-dim); transition: color 0.2s; }
.footer-socials a:hover { color: var(--primary); }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile menu (light, matches scrolled nav) */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(250, 249, 247, 0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--foreground);
}
.mobile-menu .btn-primary { margin-top: 8px; }
.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  color: var(--text-muted);
  background: none;
  line-height: 1;
}

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr; }
  .persona-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .stats-row { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
  .enterprise-row { flex-direction: column; align-items: stretch; text-align: center; }
}

/* ─── Comparison tables ─────────────────────────────── */
.compare-section { margin-top: 64px; }
.compare-section > h3 {
  font-size: 1.15rem; font-weight: 700; text-align: center;
  color: var(--foreground); margin-bottom: 6px;
}
.compare-section > p {
  font-size: 0.82rem; color: var(--text-dim); text-align: center; margin-bottom: 24px;
}
.compare-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border-radius: var(--radius); border: 1px solid var(--border-strong);
  background: var(--surface); box-shadow: var(--shadow);
}
.compare-table {
  width: 100%; border-collapse: collapse; font-size: 0.78rem; min-width: 840px;
}
.compare-table th {
  background: var(--surface-2); font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted);
  padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--border-strong);
  white-space: nowrap;
}
.compare-table td {
  padding: 10px 14px; border-bottom: 1px solid var(--border);
  vertical-align: top; color: var(--text-muted); line-height: 1.5;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td { background: rgba(37,99,235,0.015); }
.compare-cat td {
  background: var(--surface-2) !important; font-weight: 700; font-size: 0.66rem;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim);
  padding: 8px 14px; border-bottom: 1px solid var(--border-strong);
}
.compare-table .tool-name { font-weight: 700; color: var(--foreground); white-space: nowrap; }
.compare-table .tool-sub { display: block; font-size: 0.66rem; font-weight: 400; color: var(--text-dim); margin-top: 1px; white-space: normal; }
.compare-table .pp-row td { background: rgba(37,99,235,0.03); }
.compare-table .pp-row td:first-child { border-left: 3px solid var(--primary); }
.compare-table .rec-pill {
  display: inline-block; font-size: 0.58rem; font-weight: 700;
  text-transform: uppercase; background: rgba(5,150,105,0.14); color: var(--emerald);
  padding: 2px 7px; border-radius: 4px; margin-left: 6px; letter-spacing: 0.03em; vertical-align: middle;
}
.compare-table .c-free { color: var(--emerald); font-weight: 600; }
.compare-table .c-warn { color: var(--amber); font-weight: 600; }
.compare-table .c-detail { display: block; font-size: 0.66rem; color: var(--text-dim); margin-top: 2px; }
.compare-table .c-na { color: var(--text-dim); }
.heatmap-table { min-width: 680px; }
.heatmap-table th { text-align: center; font-size: 0.66rem; padding: 10px 8px; }
.heatmap-table th:first-child { text-align: left; min-width: 200px; }
.heatmap-table td { text-align: center; padding: 9px 8px; }
.heatmap-table td:first-child { text-align: left; font-weight: 500; color: var(--foreground); }
.heatmap-table th.pp-col, .heatmap-table td.pp-col { background: rgba(37,99,235,0.04); }
.dot-f, .dot-p, .dot-a { display: inline-block; width: 16px; height: 16px; border-radius: 50%; }
.dot-f { background: #3d8c40; }
.dot-p { background: #d4920a; }
.dot-a { background: #ccc; }
.heatmap-legend {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-bottom: 16px; font-size: 0.75rem; color: var(--text-muted);
}
.heatmap-legend span { display: flex; align-items: center; gap: 6px; }
.heatmap-legend .dot-f, .heatmap-legend .dot-p, .heatmap-legend .dot-a { width: 11px; height: 11px; }
