/* ==========================================================================
   Project Launchpad — site stylesheet

   Static replacement for the design system's React component layer. The
   tokens below are imported from the bound design system, so colour, type,
   spacing, radius, elevation and motion stay in sync with it; only the
   component rendering is reimplemented here as plain CSS.

   Component styles mirror _ds/…/components/**.jsx one-for-one. When a
   component changes there, change it here.
   ========================================================================== */

@import url("../_ds/project-launchpad-design-system-f9e4bb5f-c9ac-484c-9435-02df147f5564/styles.css");

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-body);
  font-family: var(--plp-font-body);
  font-size: var(--plp-text-base);
  line-height: var(--plp-leading-relaxed);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

:focus-visible {
  outline: none;
  box-shadow: var(--plp-ring-focus);
  border-radius: var(--plp-radius-xs);
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--plp-white); color: var(--text-brand);
  padding: 12px 20px; border-radius: 0 0 var(--plp-radius-sm) 0;
  font-weight: var(--plp-weight-bold);
}
.skip-link:focus { left: 0; }

/* ---------- layout ---------- */
.wrap { max-width: var(--plp-container); margin: 0 auto; padding-inline: var(--plp-gutter); }
.wrap--narrow { max-width: var(--plp-container-narrow); }

.section { padding-block: var(--plp-section-y); position: relative; }
.section--alt { background: var(--surface-page-alt); }
.section--tight { padding-block: var(--plp-space-9); }

.section--brand,
.section--indigo {
  color: var(--text-on-brand);
  overflow: hidden;
}
.section--brand { background: var(--plp-grad-purple); }
.section--indigo { background: var(--plp-grad-indigo); }
/* Prose links on a brand ground invert to white. Buttons are excluded: they
   carry their own variant colours, and this rule outranks .btn--* on
   specificity — without :not(.btn) it paints .btn--onbrand white on white. */
.section--brand a:not(.btn),
.section--indigo a:not(.btn) { color: var(--plp-white); }

.grid { display: grid; gap: var(--plp-space-6); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.split {
  display: grid; gap: var(--plp-space-10);
  grid-template-columns: 1.2fr 1fr; align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: var(--plp-space-8); } }

/* ---------- typography ---------- */
.eyebrow {
  display: inline-block; margin-bottom: var(--plp-space-3);
  font-weight: var(--plp-weight-extrabold); font-size: var(--plp-text-xs);
  letter-spacing: var(--plp-tracking-eyebrow); text-transform: uppercase;
  color: var(--text-brand);
}
.section--brand .eyebrow,
.section--indigo .eyebrow { color: rgba(255, 255, 255, 0.8); }

.h1, .h2, .h3, .h4 {
  margin: 0; font-family: var(--plp-font-display);
  letter-spacing: var(--plp-tracking-tight); color: var(--text-heading);
  text-wrap: balance;
}
.h1 { font-weight: var(--plp-weight-black); font-size: var(--plp-text-h1); line-height: var(--plp-leading-tight); letter-spacing: -0.03em; }
.h2 { font-weight: var(--plp-weight-extrabold); font-size: var(--plp-text-h2); line-height: var(--plp-leading-snug); }
.h3 { font-weight: var(--plp-weight-extrabold); font-size: var(--plp-text-h4); line-height: var(--plp-leading-snug); }
.h4 { font-weight: var(--plp-weight-extrabold); font-size: var(--plp-text-h5); line-height: var(--plp-leading-snug); }
.section--brand .h1, .section--brand .h2, .section--brand .h3,
.section--indigo .h1, .section--indigo .h2, .section--indigo .h3 { color: var(--plp-white); }

.hero-title {
  margin: 0; font-family: var(--plp-font-display); font-weight: var(--plp-weight-black);
  font-size: var(--plp-text-hero); line-height: var(--plp-leading-tight);
  letter-spacing: -0.03em; color: var(--plp-white); text-wrap: balance;
}

.lead {
  margin: var(--plp-space-5) 0 0; font-size: var(--plp-text-lead);
  line-height: var(--plp-leading-normal); text-wrap: pretty; max-width: 60ch;
}
.section--brand .lead, .section--indigo .lead { color: rgba(255, 255, 255, 0.9); }

.prose > * + * { margin-top: var(--plp-space-4); }
.prose p { margin: 0; max-width: 68ch; line-height: var(--plp-leading-relaxed); }

.section-head { max-width: 720px; margin-inline: auto; text-align: center; }
.section-head .lead { margin-inline: auto; }

.emphasis {
  margin: var(--plp-space-4) 0 0; font-family: var(--plp-font-display);
  font-weight: var(--plp-weight-extrabold); font-size: var(--plp-text-h4);
  color: var(--text-brand);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--plp-space-2);
  font-family: var(--plp-font-body); font-weight: var(--plp-weight-bold);
  line-height: 1; letter-spacing: -0.005em; text-decoration: none;
  border: var(--plp-border-strong) solid transparent;
  border-radius: var(--plp-radius-pill);
  min-height: var(--plp-tap-min); cursor: pointer;
  padding: 13px 26px; font-size: var(--plp-text-base);
  transition: background var(--plp-dur-base) var(--plp-ease-out),
              transform var(--plp-dur-fast) var(--plp-ease-out),
              box-shadow var(--plp-dur-base) var(--plp-ease-out);
}
.btn:hover { transform: translateY(var(--plp-hover-lift)); text-decoration: none; }
.btn:active { transform: scale(var(--plp-press-scale)); }

.btn--sm { padding: 9px 18px; font-size: var(--plp-text-sm); }
.btn--lg { padding: 17px 36px; font-size: var(--plp-text-lead); }
.btn--full { display: flex; width: 100%; }

.btn--primary { background: var(--action-primary-bg); color: var(--action-primary-fg); box-shadow: var(--plp-shadow-purple); }
.btn--primary:hover { background: var(--action-primary-bg-hover); box-shadow: var(--plp-shadow-hover); color: var(--action-primary-fg); }

.btn--accent { background: var(--action-accent-bg); color: var(--action-accent-fg); box-shadow: var(--plp-shadow-md); }
.btn--accent:hover { background: var(--action-accent-bg-hover); box-shadow: var(--plp-shadow-hover); color: var(--action-accent-fg); }

.btn--secondary { background: transparent; color: var(--action-secondary-fg); border-color: var(--action-secondary-border); }
.btn--secondary:hover { background: var(--action-secondary-bg-hover); color: var(--action-secondary-fg); }

.btn--onbrand { background: var(--plp-white); color: var(--plp-indigo-700); box-shadow: var(--plp-shadow-md); }
.btn--onbrand:hover { background: var(--plp-purple-50); color: var(--plp-indigo-700); }

.btn--ghost { background: transparent; color: var(--text-brand); }
.btn--ghost:hover { background: var(--plp-purple-100); color: var(--text-brand); }

/* Ghost on a brand ground. Mirrors Hero.jsx: brand purple is a light-surface
   colour and drops to ~1.2:1 on the purple gradient, so white text plus a
   translucent outline carries the secondary action instead. */
.btn--ghost-onbrand { background: transparent; color: var(--plp-white); border-color: rgba(255, 255, 255, 0.55); }
.btn--ghost-onbrand:hover { background: rgba(255, 255, 255, 0.12); color: var(--plp-white); }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--plp-space-3); margin-top: var(--plp-space-8); }
.btn-row--center { justify-content: center; }

/* ---------- badges ---------- */
.badge {
  display: inline-flex; align-items: center;
  padding: 5px 11px; border-radius: var(--plp-radius-pill);
  font-weight: var(--plp-weight-extrabold); font-size: var(--plp-text-micro);
  letter-spacing: var(--plp-tracking-wide); text-transform: uppercase;
  background: var(--surface-brand-soft); color: var(--text-brand);
}
.badge--accent { background: var(--plp-coral-500); color: var(--plp-white); }
.badge--indigo { background: var(--plp-indigo-700); color: var(--plp-white); }
.badge--onbrand { background: rgba(255, 255, 255, 0.18); color: var(--plp-white); }
.badge--capsule {
  padding: 9px 18px; font-size: var(--plp-text-xs);
  letter-spacing: var(--plp-tracking-eyebrow);
}

/* ---------- cards ---------- */
.card {
  background: var(--surface-card); border: var(--plp-border-hairline) solid var(--border-card);
  border-radius: var(--plp-radius-lg); padding: var(--plp-space-7);
  box-shadow: var(--plp-shadow-sm);
  display: flex; flex-direction: column; gap: var(--plp-space-4);
}
.card--interactive { transition: transform var(--plp-dur-base) var(--plp-ease-out), box-shadow var(--plp-dur-base) var(--plp-ease-out); }
.card--interactive:hover { transform: translateY(var(--plp-hover-lift)); box-shadow: var(--plp-shadow-md); }
.card--brand { background: var(--plp-grad-purple); border-color: transparent; color: var(--plp-white); }
.card--brand .h3, .card--brand .h4 { color: var(--plp-white); }
.card--flat { box-shadow: none; }
.card p { margin: 0; font-size: var(--plp-text-sm); line-height: var(--plp-leading-relaxed); text-wrap: pretty; }
.card--brand p { color: rgba(255, 255, 255, 0.9); }

.card-icon {
  width: 56px; height: 56px; border-radius: var(--plp-radius-circle);
  background: var(--surface-brand-soft);
  display: grid; place-items: center; font-size: 26px; flex: none;
}

/* ---------- stat card ---------- */
.stat {
  background: var(--surface-card); border: var(--plp-border-hairline) solid var(--border-card);
  border-radius: var(--plp-radius-lg); padding: var(--plp-space-6);
  box-shadow: var(--plp-shadow-sm);
  display: flex; flex-direction: column; gap: var(--plp-space-2);
}
.stat-icon { font-size: 22px; line-height: 1; }
.stat-value {
  font-family: var(--plp-font-display); font-weight: var(--plp-weight-black);
  font-size: 32px; line-height: 1.05; letter-spacing: -0.03em;
  color: var(--text-brand); font-variant-numeric: tabular-nums;
}
.stat-value .unit {
  font-family: var(--plp-font-body); font-weight: var(--plp-weight-semibold);
  font-size: var(--plp-text-sm); letter-spacing: 0; color: var(--text-muted);
}
.stat-label {
  font-family: var(--plp-font-display); font-weight: var(--plp-weight-bold);
  font-size: var(--plp-text-h5); color: var(--text-heading); line-height: var(--plp-leading-snug);
}
.stat p { margin: 0; font-size: var(--plp-text-sm); line-height: var(--plp-leading-relaxed); color: var(--text-body); }

/* ---------- step list ---------- */
.steps { display: grid; gap: var(--plp-space-6); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); counter-reset: step; }
.step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--plp-space-3); }
.step-n {
  width: 44px; height: 44px; border-radius: var(--plp-radius-circle);
  background: var(--surface-brand); color: var(--plp-white);
  display: grid; place-items: center;
  font-family: var(--plp-font-display); font-weight: var(--plp-weight-extrabold); font-size: var(--plp-text-h5);
  box-shadow: var(--plp-shadow-purple);
}
.step p { margin: 0; font-size: var(--plp-text-sm); line-height: var(--plp-leading-relaxed); max-width: 32ch; }

/* ---------- testimonial ---------- */
.quote {
  background: var(--surface-card); border: var(--plp-border-hairline) solid var(--border-card);
  border-radius: var(--plp-radius-lg); padding: var(--plp-space-7);
  box-shadow: var(--plp-shadow-sm);
  display: flex; flex-direction: column; gap: var(--plp-space-4);
}
.quote::before {
  content: "\201C"; font-family: var(--plp-font-display); font-weight: var(--plp-weight-black);
  font-size: 52px; line-height: 0.7; color: var(--plp-coral-500);
}
.quote blockquote { margin: 0; font-size: var(--plp-text-base); line-height: var(--plp-leading-relaxed); text-wrap: pretty; }
.quote figcaption { display: flex; flex-direction: column; gap: 2px; }
.quote-name { font-family: var(--plp-font-display); font-weight: var(--plp-weight-bold); font-size: var(--plp-text-h5); color: var(--text-heading); }
.quote-role { font-size: var(--plp-text-xs); color: var(--text-muted); line-height: var(--plp-leading-normal); }

/* ---------- logo marquee ---------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: var(--plp-space-10); width: max-content; animation: marquee 38s linear infinite; }
.marquee-track span {
  font-family: var(--plp-font-display); font-weight: var(--plp-weight-bold);
  font-size: var(--plp-text-h5); color: var(--text-subtle); white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee { mask-image: none; -webkit-mask-image: none; overflow-x: auto; }
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; gap: var(--plp-space-6); justify-content: center; }
}

/* ---------- accordion ---------- */
.accordion { display: flex; flex-direction: column; gap: var(--plp-space-3); }
.accordion details {
  background: var(--surface-card); border: var(--plp-border-hairline) solid var(--border-card);
  border-radius: var(--plp-radius-md); overflow: hidden;
}
.accordion summary {
  list-style: none; cursor: pointer; padding: var(--plp-space-5) var(--plp-space-6);
  font-family: var(--plp-font-display); font-weight: var(--plp-weight-bold);
  font-size: var(--plp-text-h5); color: var(--text-heading);
  display: flex; align-items: center; justify-content: space-between; gap: var(--plp-space-4);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+"; font-family: var(--plp-font-body); font-weight: var(--plp-weight-bold);
  font-size: 20px; color: var(--text-brand); flex: none; line-height: 1;
  transition: transform var(--plp-dur-base) var(--plp-ease-out);
}
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion summary:hover { background: var(--plp-purple-50); }
.accordion .answer { padding: 0 var(--plp-space-6) var(--plp-space-5); }
.accordion .answer p { margin: 0; font-size: var(--plp-text-sm); line-height: var(--plp-leading-relaxed); max-width: 72ch; }

/* ---------- pricing ---------- */
.tiers { display: grid; gap: var(--plp-space-7); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); max-width: 900px; margin-inline: auto; }
.tier {
  position: relative; background: var(--surface-card);
  border: var(--plp-border-hairline) solid var(--border-card);
  border-radius: var(--plp-radius-lg); padding: var(--plp-space-8) var(--plp-space-7);
  display: flex; flex-direction: column; gap: var(--plp-space-5);
}
.tier--featured { border: var(--plp-border-strong) solid var(--plp-purple-500); box-shadow: var(--plp-shadow-lg); }
.tier-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--tier-liftoff-badge-bg); color: var(--plp-white);
  font-weight: var(--plp-weight-extrabold); font-size: var(--plp-text-micro);
  letter-spacing: var(--plp-tracking-wide); text-transform: uppercase;
  padding: 6px 11px; border-radius: var(--plp-radius-pill); white-space: nowrap;
}
.tier-price {
  margin-top: var(--plp-space-3); font-family: var(--plp-font-display);
  font-weight: var(--plp-weight-black); font-size: 44px; line-height: 1;
  letter-spacing: -0.03em; color: var(--text-heading);
}
.tier--featured .tier-price { color: var(--text-brand); }
.tier-price .period { font-family: var(--plp-font-body); font-weight: var(--plp-weight-semibold); font-size: var(--plp-text-base); color: var(--text-muted); }
.tier-tagline { margin: var(--plp-space-2) 0 0; font-size: var(--plp-text-sm); color: var(--text-muted); }
.tier-note {
  background: var(--surface-brand-soft); border-radius: var(--plp-radius-sm);
  padding: 12px 14px; font-weight: var(--plp-weight-semibold);
  font-size: var(--plp-text-xs); color: var(--plp-indigo-700);
}
.feature-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; font-size: var(--plp-text-sm); line-height: var(--plp-leading-normal); }
.feature-list li { display: flex; gap: 9px; align-items: flex-start; }
.feature-list li::before { content: "\2713"; color: var(--plp-success-500); font-weight: var(--plp-weight-bold); flex: none; }
.feature-list li.is-head { font-weight: var(--plp-weight-bold); color: var(--text-heading); }

/* ---------- callout + trust row ---------- */
.callout {
  display: flex; gap: var(--plp-space-4); align-items: flex-start;
  background: var(--surface-brand-soft); border-radius: var(--plp-radius-md);
  padding: var(--plp-space-6);
}
.callout-icon { font-size: 24px; line-height: 1.2; flex: none; }
.callout p { margin: 0; font-size: var(--plp-text-sm); line-height: var(--plp-leading-relaxed); }
.callout-label { font-family: var(--plp-font-display); font-weight: var(--plp-weight-bold); font-size: var(--plp-text-h5); color: var(--text-heading); margin-bottom: 4px; }

.trust-row { list-style: none; margin: var(--plp-space-9) 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: var(--plp-space-6); justify-content: center; font-weight: var(--plp-weight-semibold); font-size: var(--plp-text-sm); }
.section--brand .trust-row, .section--indigo .trust-row { color: rgba(255, 255, 255, 0.9); }

/* ---------- brand circle motif ---------- */
.circles { position: absolute; pointer-events: none; }
.circles span { position: absolute; border-radius: var(--plp-radius-circle); display: block; }
.circle-ground {
  position: relative; display: grid; place-items: center; min-height: 360px;
}
.circle-ground::before {
  content: ""; position: absolute; width: min(340px, 80%); aspect-ratio: 1;
  border-radius: var(--plp-radius-circle); background: var(--plp-indigo-700);
}
.circle-ground img { position: relative; width: min(300px, 72%); }

/* ---------- site header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: var(--plp-border-hairline) solid var(--border-card);
}
.site-header .wrap { display: flex; align-items: center; gap: var(--plp-space-7); min-height: 76px; }
.site-logo { display: inline-flex; align-items: center; }
.site-logo img { height: 40px; width: auto; display: block; mix-blend-mode: multiply; }

.nav { margin-left: auto; display: flex; align-items: center; gap: var(--plp-space-6); }
.nav-list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: var(--plp-space-6); }
.nav-list > li { position: relative; }
.nav-link {
  font-weight: var(--plp-weight-bold); font-size: var(--plp-text-xs);
  letter-spacing: var(--plp-tracking-wide); text-transform: uppercase;
  color: var(--plp-indigo-800); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 5px; padding-block: 6px;
}
.nav-link:hover { color: var(--text-brand); text-decoration: none; }
.nav-link[aria-current="page"] { color: var(--text-brand); }
.has-menu > .nav-link::after { content: "\25BE"; font-size: 9px; opacity: 0.7; }

.nav-menu {
  position: absolute; top: 100%; left: -14px; min-width: 210px;
  background: var(--surface-card); border: var(--plp-border-hairline) solid var(--border-card);
  border-radius: var(--plp-radius-md); box-shadow: var(--plp-shadow-md);
  padding: var(--plp-space-2); margin: 0; list-style: none;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity var(--plp-dur-fast) var(--plp-ease-out), transform var(--plp-dur-fast) var(--plp-ease-out), visibility var(--plp-dur-fast);
}
.has-menu:hover .nav-menu,
.has-menu:focus-within .nav-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu a {
  display: block; padding: 9px 12px; border-radius: var(--plp-radius-xs);
  font-size: var(--plp-text-sm); font-weight: var(--plp-weight-semibold);
  color: var(--text-body); white-space: nowrap;
}
.nav-menu a:hover { background: var(--surface-brand-soft); color: var(--text-brand); text-decoration: none; }

/* Below the dropdown breakpoint the nav becomes a plain wrapped list —
   no JS, no hamburger, and submenu items are promoted inline. */
@media (max-width: 940px) {
  .site-header .wrap { flex-wrap: wrap; gap: var(--plp-space-4); padding-block: var(--plp-space-4); }
  .nav { margin-left: 0; width: 100%; flex-wrap: wrap; gap: var(--plp-space-4); }
  .nav-list { flex-wrap: wrap; gap: var(--plp-space-4); }
  .nav-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: transparent; padding: 0;
    flex-direction: row; flex-wrap: wrap; gap: var(--plp-space-3);
  }
  .nav-menu a { padding: 0; font-size: var(--plp-text-xs); color: var(--text-muted); }
  .has-menu > .nav-link::after { display: none; }
  .nav-cta { width: 100%; }
}
.nav-cta { display: flex; align-items: center; gap: var(--plp-space-3); }

/* ---------- site footer ---------- */
.site-footer { background: var(--plp-grad-indigo); color: rgba(255, 255, 255, 0.78); }
.site-footer a { color: rgba(255, 255, 255, 0.78); }
.site-footer a:hover { color: var(--plp-white); }
.footer-grid {
  display: grid; gap: var(--plp-space-9);
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(140px, 1fr));
  padding-block: var(--plp-space-11) var(--plp-space-7);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--plp-space-7); } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { background: var(--plp-white); border-radius: var(--plp-radius-md); padding: 10px 14px; display: inline-flex; }
.footer-logo img { height: 38px; width: auto; display: block; mix-blend-mode: multiply; }
.footer-mission { margin: var(--plp-space-5) 0 0; max-width: 340px; font-size: var(--plp-text-sm); line-height: var(--plp-leading-relaxed); text-wrap: pretty; }
.footer-col h2 {
  margin: 0 0 var(--plp-space-4); font-family: var(--plp-font-display);
  font-weight: var(--plp-weight-extrabold); font-size: var(--plp-text-xs);
  letter-spacing: var(--plp-tracking-eyebrow); text-transform: uppercase; color: var(--plp-white);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: var(--plp-text-sm); }
.footer-base {
  border-top: var(--plp-border-hairline) solid rgba(255, 255, 255, 0.14);
  padding-block: var(--plp-space-6) var(--plp-space-9);
  display: flex; flex-wrap: wrap; gap: var(--plp-space-4);
  justify-content: space-between; font-size: var(--plp-text-xs);
}

/* ---------- page header band ---------- */
.page-head { padding-block: var(--plp-space-11); }
.page-head .hero-title { font-size: var(--plp-text-h1); }
.page-head .lead { max-width: 62ch; }

/* ---------- tables ---------- */
.table-scroll { overflow-x: auto; border: var(--plp-border-hairline) solid var(--border-card); border-radius: var(--plp-radius-md); background: var(--surface-card); }
table.compare { border-collapse: collapse; width: 100%; min-width: 560px; font-size: var(--plp-text-sm); }
table.compare th, table.compare td { padding: 14px 18px; text-align: left; border-bottom: var(--plp-border-hairline) solid var(--border-card); vertical-align: top; }
table.compare thead th {
  font-family: var(--plp-font-display); font-weight: var(--plp-weight-extrabold);
  font-size: var(--plp-text-h5); color: var(--text-heading); background: var(--plp-ink-050);
}
table.compare tbody tr:last-child td { border-bottom: none; }
table.compare td.yes { color: var(--plp-success-500); font-weight: var(--plp-weight-bold); }
table.compare td.no { color: var(--text-subtle); }

/* ---------- misc ---------- */
.note-inline { font-size: var(--plp-text-xs); color: var(--text-muted); }
.stack { display: flex; flex-direction: column; gap: var(--plp-space-4); }
.stack--lg { gap: var(--plp-space-7); }
.center { text-align: center; }
.mt-9 { margin-top: var(--plp-space-9); }
.mt-7 { margin-top: var(--plp-space-7); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
