/* ===========================================================
   HookLab AI — Global stylesheet
   Mobile-first. CSS variables. Dark mode auto.
   =========================================================== */

*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, ul, ol, figure { margin: 0; padding: 0; }
ul { list-style: none; }
img, picture { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

:root {
  --purple: #7C3AED;
  --pink: #EC4899;
  --gradient: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);

  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --bg-card: #FFFFFF;
  --text: #0F172A;
  --text-muted: #475569;
  --border: #E2E8F0;
  --shadow: 0 1px 3px rgba(15,23,42,.06), 0 8px 24px rgba(15,23,42,.04);
  --shadow-lg: 0 12px 40px rgba(124,58,237,.15);

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;

  --font-sans: -apple-system, "SF Pro Display", BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --max-w: 1120px;
  --max-w-narrow: 760px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0F172A;
    --bg-alt: #111B33;
    --bg-card: #1A2540;
    --text: #F8FAFC;
    --text-muted: #94A3B8;
    --border: #283457;
    --shadow: 0 1px 3px rgba(0,0,0,.3), 0 8px 24px rgba(0,0,0,.2);
    --shadow-lg: 0 12px 40px rgba(124,58,237,.4);
  }
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; font-weight: 700; }
h1 { font-size: clamp(2rem, 6vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4.5vw, 2.5rem); margin-bottom: var(--space-3); }
h3 { font-size: 1.15rem; margin-bottom: var(--space-1); }
p { color: var(--text-muted); }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-3);
}
.container.narrow { max-width: var(--max-w-narrow); }
.text-center { text-align: center; }

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
}
.logo-mark {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--gradient);
  display: inline-block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.nav-links a { color: var(--text-muted); font-weight: 500; font-size: .95rem; }
.nav-links a:hover { color: var(--text); }
.cta-small {
  background: var(--gradient);
  color: #FFF !important;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
}
@media (max-width: 540px) {
  .nav-links a:not(.cta-small) { display: none; }
}

/* ----- Buttons ----- */
.btn-primary {
  display: inline-block;
  background: var(--gradient);
  color: #FFF;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform .15s ease, box-shadow .2s ease;
  box-shadow: var(--shadow-lg);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-large { padding: 18px 36px; font-size: 1.05rem; }

/* ----- Sections ----- */
.section { padding: var(--space-6) 0; }
@media (min-width: 768px) {
  .section { padding: var(--space-7) 0; }
}
.section:nth-child(odd) { background: var(--bg-alt); }

.section-lead {
  font-size: 1.05rem;
  margin-bottom: var(--space-4);
  max-width: 640px;
}
.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: var(--space-2);
}

/* ----- Hero ----- */
.hero {
  padding: var(--space-6) 0 var(--space-7);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(236,72,153,.15), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.1fr 1fr; gap: var(--space-6); }
}
.lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  margin: var(--space-3) 0 var(--space-4);
  max-width: 560px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}
.price-badge {
  font-size: .9rem;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: var(--space-2);
}
.hero-bullets li {
  position: relative;
  padding-left: 24px;
  color: var(--text-muted);
}
.hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 14px;
  background: var(--gradient);
  border-radius: 4px;
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8l3 3 7-7' stroke='white' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8l3 3 7-7' stroke='white' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.hero-screenshot {
  display: flex;
  justify-content: center;
}
.hero-screenshot img {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--bg-card);
}
.phone-frame {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 38px;
  background: linear-gradient(160deg, #1a1a1f, #0a0a0d);
  box-shadow:
    0 30px 60px -20px rgba(124, 58, 237, .35),
    0 20px 40px -15px rgba(15, 23, 42, .35),
    inset 0 0 0 1px rgba(255, 255, 255, .08);
}
.phone-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  box-shadow: none;
  background: var(--bg-card);
}

/* ----- Problem ----- */
.section-problem p { font-size: 1.1rem; margin-bottom: var(--space-2); }
.section-problem .emphasis {
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: var(--space-3);
}

/* ----- How ----- */
.steps-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-3);
  box-shadow: var(--shadow);
}
.step-number {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--gradient);
  color: #FFF;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

/* ----- Styles grid ----- */
.styles-grid {
  display: grid;
  gap: var(--space-2);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .styles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .styles-grid { grid-template-columns: repeat(5, 1fr); } }
.style-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-3);
  transition: transform .2s ease, border-color .2s ease;
}
.style-card:hover {
  transform: translateY(-2px);
  border-color: var(--purple);
}
.style-card h3 {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}
.style-card p { font-size: .92rem; }

/* ----- Pricing ----- */
.pricing-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
  margin-top: var(--space-4);
}
@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4);
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card-featured {
  border: 2px solid transparent;
  background-image: linear-gradient(var(--bg-card), var(--bg-card)), var(--gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #FFF;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.price-card h3 { font-size: 1rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }
.price {
  font-size: 2.5rem;
  font-weight: 700;
  margin: var(--space-1) 0 var(--space-3);
  color: var(--text);
}
.price-sub {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 6px;
}
.price-card ul { display: flex; flex-direction: column; gap: 10px; }
.price-card li {
  position: relative;
  padding-left: 26px;
  color: var(--text-muted);
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 700;
}

/* ----- Privacy strip ----- */
.privacy-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
  margin-top: var(--space-3);
}
@media (min-width: 768px) { .privacy-grid { grid-template-columns: repeat(2, 1fr); } }
.privacy-grid li {
  padding: var(--space-3);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
}
.privacy-grid strong { color: var(--text); display: block; margin-bottom: 4px; }

/* ----- FAQ ----- */
.faq-list { display: flex; flex-direction: column; gap: var(--space-2); margin-top: var(--space-3); }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-2) var(--space-3);
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: var(--purple); }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  padding: 6px 0;
  position: relative;
  padding-right: 32px;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--purple);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin-top: var(--space-1); }

/* ----- Download CTA ----- */
.section-download {
  background: var(--gradient);
  color: #FFF;
}
.section-download h2 { color: #FFF; }
.section-download .btn-primary {
  background: #FFF;
  color: var(--purple);
  margin-top: var(--space-3);
}
.section-download .trust-line {
  margin-top: var(--space-2);
  color: rgba(255,255,255,.85);
  font-size: .95rem;
}

/* Override odd-section bg for download */
.section-download.section { background: var(--gradient); }

/* ----- Footer ----- */
.site-footer {
  padding: var(--space-5) 0 var(--space-4);
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1.5fr; }
}
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { color: var(--text-muted); font-weight: 500; }
.footer-nav a:hover { color: var(--text); }
.footer-credit p { font-size: .85rem; margin-bottom: 4px; }

/* ----- Legal pages (privacy / terms / support) ----- */
.legal-main {
  padding: var(--space-5) 0 var(--space-6);
}
.legal-main .container { max-width: var(--max-w-narrow); }
.legal-main h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: var(--space-2); }
.legal-main h2 {
  font-size: 1.35rem;
  margin: var(--space-5) 0 var(--space-2);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
}
.legal-main h2:first-of-type { border-top: none; padding-top: 0; }
.legal-main h3 { font-size: 1.05rem; margin: var(--space-3) 0 var(--space-1); }
.legal-main p, .legal-main li { color: var(--text-muted); }
.legal-main p { margin-bottom: var(--space-2); }
.legal-main ul, .legal-main ol {
  padding-left: var(--space-3);
  margin-bottom: var(--space-2);
}
.legal-main ul { list-style: disc; }
.legal-main ol { list-style: decimal; }
.legal-main li { margin-bottom: 6px; }
.legal-main a { color: var(--purple); text-decoration: underline; }
.legal-main a:hover { color: var(--pink); }
.legal-main strong { color: var(--text); }
.legal-effective {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}

/* ----- Support contact block ----- */
.support-contact {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-3);
  margin: var(--space-3) 0;
  text-align: center;
}
.support-contact .btn-primary { margin-top: var(--space-2); }

/* ----- Accessibility & motion ----- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ----- V2 — Shared section header / accents ----- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-4);
}
.section-header .eyebrow { margin-bottom: var(--space-1); }
.section-header h2 { margin-bottom: var(--space-2); }
.section-header .section-lead {
  margin: 0 auto;
  text-align: center;
}
.accent-purple {
  background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.accent-pink {
  background: linear-gradient(135deg, #EC4899 0%, #F472B6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.section-cta {
  text-align: center;
  margin-top: var(--space-4);
}
.btn-ghost {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
  box-shadow: none;
  padding: 12px 26px;
}
.btn-ghost:hover { background: var(--purple); color: #FFF; }

/* ----- V2 — Live hooks ----- */
.live-hooks-grid {
  display: grid;
  gap: var(--space-2);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .live-hooks-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .live-hooks-grid { grid-template-columns: repeat(3, 1fr); } }
.hook-card {
  position: relative;
  text-align: left;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: var(--space-3);
  font: inherit;
  color: inherit;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform .15s ease, border-color .2s ease, background-color .25s ease, box-shadow .2s ease;
}
.hook-card:hover {
  transform: translateY(-2px);
  border-color: var(--purple);
  box-shadow: 0 6px 24px rgba(124,58,237,.12);
}
.hook-card:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}
.hook-card .style-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: var(--space-1);
}
.hook-card .hook-text {
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.45;
  margin-top: 4px;
}
.hook-card .hook-copy-hint {
  display: block;
  margin-top: var(--space-2);
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.hook-card.is-copied {
  background-color: color-mix(in srgb, var(--purple) 12%, var(--bg-card));
  border-color: var(--purple);
}
.hook-card.is-copied .hook-copy-hint { color: var(--purple); font-weight: 700; }

/* Toast for clipboard feedback */
.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translate(-50%, 20px);
  background: var(--text);
  color: var(--bg);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 100;
}
.copy-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ----- V2 — Screenshots gallery ----- */
.screenshots-gallery {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .screenshots-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .screenshots-gallery { grid-template-columns: repeat(3, 1fr); } }
.screenshots-gallery figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}
.screenshots-gallery img {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--bg-card);
  transition: transform .25s ease;
}
.screenshots-gallery figure:hover img { transform: scale(1.02); }
.screenshots-gallery figcaption {
  font-size: .92rem;
  color: var(--text-muted);
  text-align: center;
  font-weight: 500;
}

/* ----- V2 — Pro+ Features ----- */
.pro-plus-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .pro-plus-grid { grid-template-columns: repeat(2, 1fr); } }
.pro-plus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.pro-plus-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
}
.pro-plus-card h3 {
  font-size: 1.4rem;
  margin: var(--space-2) 0 var(--space-2);
}
.pro-plus-card p { margin-bottom: var(--space-2); }
.pro-plus-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: var(--space-2);
}
.pro-plus-card li {
  position: relative;
  padding-left: 22px;
  color: var(--text-muted);
  font-size: .95rem;
}
.pro-plus-card li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 700;
}
.pro-plus-icon {
  font-size: 2.2rem;
  line-height: 1;
}
.pro-plus-pricing {
  text-align: center;
  margin-top: var(--space-4);
  font-size: 1.05rem;
  color: var(--text);
}
.pro-plus-pricing strong { color: var(--purple); }

/* ----- V2 — Comparison table ----- */
.compare-table {
  margin-top: var(--space-3);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.compare-table table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table th,
.compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  color: var(--text-muted);
  font-size: .96rem;
}
.compare-table thead th {
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--bg-alt);
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody td:first-child {
  font-weight: 600;
  color: var(--text);
  width: 30%;
}
.compare-table td.us,
.compare-table th.us {
  background: color-mix(in srgb, var(--purple) 6%, var(--bg-card));
  color: var(--text);
  font-weight: 500;
}
.compare-table th.us { color: var(--purple); }
.mark {
  display: inline-block;
  width: 22px;
  text-align: center;
  font-weight: 700;
  margin-right: 6px;
}
.mark-yes { color: #10B981; }
.mark-no { color: #94A3B8; }
@media (max-width: 720px) {
  .compare-table table,
  .compare-table thead,
  .compare-table tbody,
  .compare-table tr,
  .compare-table th,
  .compare-table td { display: block; width: 100%; }
  .compare-table thead { display: none; }
  .compare-table tbody tr {
    padding: var(--space-2) 0;
    border-bottom: 1px solid var(--border);
  }
  .compare-table tbody tr:last-child { border-bottom: none; }
  .compare-table tbody td {
    padding: 8px 18px;
    border-bottom: none;
  }
  .compare-table tbody td:first-child {
    width: 100%;
    font-size: 1rem;
    color: var(--text);
    padding-top: 14px;
  }
  .compare-table tbody td[data-label]::before {
    content: attr(data-label) " — ";
    font-weight: 600;
    color: var(--text);
    margin-right: 4px;
  }
  .compare-table tbody td:first-child[data-label]::before { content: none; }
  .compare-table td.us {
    border-left: 3px solid var(--purple);
  }
}

/* ----- Print ----- */
@media print {
  .site-header, .site-footer, .section-download { display: none; }
  body { color: #000; background: #FFF; }
  a { color: #000; text-decoration: underline; }
}
