/* ── SHARED VS PAGE STYLES ────────────────────────────────────────────────
   All VS comparison pages load this file. Per-page overrides go in
   assets/css/{slug}.css (e.g. monday-com.css, asana.css).
   ──────────────────────────────────────────────────────────────────────── */

/* ── LAYOUT ─────────────────────────────── */
.vs-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}
/* No-breadcrumb variant — only eyebrow sits above H1, so reduce the
   pre-H1 stack to keep H1 anchored to --hero-pad-top from the top. */
.vs-wrap--no-crumb {
  --vs-pre-h1-stack: 28px;
}

/* ── BREADCRUMB ──────────────────────────── */
.breadcrumb {
  /* Override the global `nav { position: fixed }` rule in main.css. The
     breadcrumb uses <nav> for accessibility but should flow inline. */
  position: static;
  top: auto;
  left: auto;
  right: auto;
  z-index: auto;
  /* Pre-H1 stack for crumb pages: pushes the breadcrumb down so it sits at
     roughly the same vertical position as the .vs-hero eyebrow on no-crumb
     pages. Matches the visual "top of content" between the two layouts. */
  padding: max(0px, calc(var(--hero-pad-top) - 28px)) 0 0;
  font-size: 13px;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  height: auto;
}
/* Crumb pages: the breadcrumb absorbs the hero top spacing, so .vs-hero
   does not need to add its own. Otherwise the H1 ends up doubly indented. */
.vs-wrap:not(.vs-wrap--no-crumb) .vs-hero {
  padding-top: 0;
}
.breadcrumb a { color: var(--ink-3); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb-sep { color: var(--line); }

/* ── HERO ────────────────────────────────── */
.vs-hero {
  /* Anchors H1 to the same vertical position as a standard .page-hero H1.
     calc accounts for the breadcrumb + eyebrow sitting above it. */
  padding: max(0px, calc(var(--hero-pad-top) - var(--vs-pre-h1-stack))) 0 56px;
  border-bottom: 1px solid var(--line);
}
.vs-eyebrow {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.vs-hero h1 {
  font-family: var(--font);
  font-size: var(--hero-h1-size);
  font-weight: 700;
  line-height: var(--hero-h1-leading);
  letter-spacing: var(--hero-h1-tracking);
  color: var(--ink);
  margin-bottom: 20px;
  max-width: 680px;
}
.vs-hero-lede {
  font-size: var(--hero-sub-size);
  line-height: var(--hero-sub-leading);
  color: var(--ink-2);
  max-width: 580px;
  margin-bottom: 32px;
}
.vs-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--ink);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.btn-primary:hover { opacity: 0.85; }
.vs-hero-trust { font-size: 13px; color: var(--ink-3); }

/* ── VERDICT ─────────────────────────────── */
.vs-verdict {
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}
.vs-verdict p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
}
.vs-verdict strong { color: var(--ink); }

/* ── SECTION HEADER ──────────────────────── */
.vs-section { padding: 56px 0 0; }
.vs-section-eyebrow {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.vs-section h2 {
  font-family: var(--font);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.vs-section-lede {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 640px;
  margin-bottom: 36px;
  margin-top: -24px;
}

/* ── WHO IT'S FOR CARDS ──────────────────── */
.switch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 0;
}
.switch-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.switch-card-num {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.switch-card h3 {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.switch-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-2);
}

/* ── FEATURES CALLOUT ────────────────────── */
.vs-feat-callout {
  background: #f0f4ff;
  border: 1px solid #c7d7fd;
  border-radius: var(--radius);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.vs-feat-callout-text { flex: 1; }
.vs-feat-callout-text h3 {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.vs-feat-callout-text p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-2);
}
.btn-secondary {
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
  padding: 12px 20px;
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.btn-secondary:hover { background: var(--ink); color: #fff; }
@media (max-width: 640px) {
  .vs-feat-callout { flex-direction: column; align-items: flex-start; }
}

/* ── COMPARISON TABLE ────────────────────── */
.vs-table-wrap {
  overflow-x: auto;
  padding-bottom: 4px;
}
.vs-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  font-size: 13px;
}
.vs-table thead th {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: left;
  padding: 11px 14px;
  background: #2d2d2d;
  color: #fff;
  border: none;
  white-space: nowrap;
}
.vs-table thead th:first-child { border-radius: 8px 0 0 0; background: var(--ink); }
.vs-table thead th:last-child { border-radius: 0 8px 0 0; }
.vs-table thead th.col-gript {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
}
.vs-table thead th.col-comp { background: #3a3a3a; }
.vs-table tbody tr { border-bottom: 1px solid var(--line); }
.vs-table tbody tr:last-child { border-bottom: none; }
.vs-table tbody tr:nth-child(even) td { background: #f7f7f7; }
.vs-table tbody td {
  padding: 12px 14px;
  vertical-align: middle;
  background: var(--surface);
}
.vs-table tbody td:first-child { font-weight: 500; color: var(--ink); font-size: 13px; }
.vs-table tbody td.col-gript {
  background: #f0f4ff !important;
  font-weight: 600;
}
.vs-table tbody tr:nth-child(even) td.col-gript { background: #e8eeff !important; }
.check { color: var(--green); font-size: 14px; font-weight: 700; }
.cross { color: #ccc; font-size: 14px; }
.partial { color: var(--amber); font-size: 12px; font-weight: 500; }
.uf-row td:first-child { color: var(--blue) !important; }
.vs-table-note {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 12px;
  padding-left: 4px;
  line-height: 1.6;
}

/* ── PRICING COMPARISON TABLE ───────────── */
.pricing-math {
  margin-top: 24px;
  background: #f5f5f5;
  border-radius: 8px;
  padding: 16px 20px;
}
.pricing-math h4 {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pricing-cmp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 8px;
}
.pricing-cmp-table thead th {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 8px 12px;
  text-align: left;
  border-bottom: 2px solid var(--line);
}
.pricing-cmp-table thead th:not(:first-child) { text-align: right; }
.pricing-cmp-table tbody td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}
.pricing-cmp-table tbody td:not(:first-child) { text-align: right; }
.pricing-cmp-table tbody tr:last-child td { border-bottom: none; }
.pricing-cmp-gript td {
  background: #f0f4ff;
  color: var(--ink);
  font-weight: 600;
}
.pricing-cmp-gript td strong { color: var(--green); }
.savings { font-weight: 600; font-family: var(--font); color: var(--red); }
.savings.baseline { color: var(--green); }
.plan-note {
  font-size: 11px;
  color: var(--ink-3);
  font-weight: 400;
}
.pricing-footnote {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 20px;
  line-height: 1.6;
}

/* ── INFO BUTTON & TOOLTIP ──────────────── */
.info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid var(--ink-3);
  background: none;
  color: var(--ink-3);
  font-size: 9px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  line-height: 1;
}
.info-btn:hover, .info-btn.is-open {
  border-color: var(--blue);
  color: var(--blue);
  background: #eff6ff;
}
.feat-label {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
#tip {
  position: fixed;
  z-index: 9999;
  max-width: 280px;
  background: var(--ink);
  color: #fff;
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.55;
  padding: 12px 16px;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.12s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
#tip.visible { opacity: 1; pointer-events: auto; }
#tip::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: var(--ink);
  transform: rotate(45deg);
  border-radius: 2px;
}

/* ── CTA BLOCK ───────────────────────────── */
.vs-cta {
  margin-top: 72px;
  background: var(--ink);
  border-radius: 16px;
  padding: 56px 48px;
  text-align: center;
}
.vs-cta h2 {
  font-family: var(--font);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.vs-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.vs-cta-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-cta-white {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--ink);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.btn-cta-white:hover { opacity: 0.9; }
.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.btn-cta-ghost:hover { border-color: rgba(255,255,255,0.7); color: #fff; }
.vs-cta-trust { margin-top: 20px; font-size: 13px; color: rgba(255,255,255,0.4); }

/* ── HOW TO SWITCH STEPS ─────────────────── */
.vs-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.vs-step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.vs-step:last-child { border-bottom: none; }
.vs-step-num {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  min-width: 28px;
  padding-top: 3px;
  flex-shrink: 0;
}
.vs-step-body { flex: 1; }
.vs-step-title {
  font-family: var(--body);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.vs-step-desc {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
}

/* ── DIVIDER ─────────────────────────────── */
.vs-divider { border: none; border-top: 1px solid var(--line); margin: 56px 0 0; }

/* ── VS INDEX PAGE ───────────────────────────────────────────────────────── */
.vs-index-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.vs-index-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 28px 22px;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.vs-index-card:hover {
  border-color: var(--ink-2);
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  text-decoration: none;
}
.vs-index-card--wide { grid-column: span 2; }
.vs-index-card-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.vs-index-card-title {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 2px;
}
.vs-index-card-sub {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-2);
  flex: 1;
}
.vs-index-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.vs-index-card-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.vs-index-card-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-3);
  background: #f5f5f5;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 2px 8px;
}
.vs-index-card-arrow {
  font-size: 16px;
  color: var(--ink-3);
  flex-shrink: 0;
  transition: transform 0.15s;
}
.vs-index-card:hover .vs-index-card-arrow { transform: translateX(3px); }

/* ── MIGRATION WIZARDS CALLOUT (index page) ──── */
.vs-index-mw-box {
  background: #f0f4ff;
  border: 1px solid #c7d7fd;
  border-radius: var(--radius);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.vs-index-mw-text .vs-section-eyebrow { margin-bottom: 8px; }
.vs-index-mw-text h2 { margin-bottom: 10px; font-size: 22px; }
.vs-index-mw-text p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 480px;
  margin: 0;
}

@media (max-width: 640px) {
  .vs-index-grid { grid-template-columns: 1fr; }
  .vs-index-card--wide { grid-column: span 1; }
  .vs-index-mw-box { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   NEW VS DESIGN SYSTEM — shared across all 5 competitor pages
   ============================================================ */

:root {
  --surface-2: #f4f4f5;
  --ink-4: #cccccc;
  --line-2: #d4d4d8;
  --red: #dc2626;
  --green-soft: #dcfce7;
  --amber-soft: #fef3c7;
  --red-soft: #fee2e2;
  --accent-soft: #dbeafe;
  --radius: 12px;
  --radius-lg: 14px;
  --sh-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --sh-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.05);
  --sh-lg: 0 10px 25px rgba(0,0,0,.09), 0 4px 10px rgba(0,0,0,.06);
}

/* --- Layout containers --- */
.wrap        { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.wrap-wide   { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 820px;  margin: 0 auto; padding: 0 24px; }

/* --- Hero --- */
.hero { padding: 96px 0 80px; background: var(--bg); text-align: center; }
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
  color: var(--blue); background: var(--accent-soft);
  padding: 4px 12px; border-radius: 20px; margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--font); font-size: clamp(32px, 5vw, 54px);
  font-weight: 700; line-height: 1.15; color: var(--ink);
  max-width: 860px; margin: 0 auto 20px;
}
.hero .lede {
  font-size: 19px; line-height: 1.6; color: var(--ink-2);
  max-width: 620px; margin: 0 auto 36px;
}
.hero h2.sub {
  font-size: 15px; font-weight: 500; color: var(--ink-3); margin: 0 auto 12px;
}
.hero-cta { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.hero-cta .btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: #fff;
  font-size: 15px; font-weight: 600; padding: 14px 28px;
  border-radius: var(--radius); text-decoration: none; transition: opacity .15s;
}
.hero-cta .btn-primary:hover { opacity: .85; }
.hero-trust { font-size: 13px; color: var(--ink-3); }

/* --- Bundle band --- */
.bundle { background: var(--ink); color: #fff; padding: 20px 0; text-align: center; }
.bundle p { font-size: 14px; line-height: 1.6; margin: 0; opacity: .85; }
.bundle strong { opacity: 1; }

/* --- Tier-S gap sections --- */
.gap { padding: 80px 0; }
.gap:nth-child(even) { background: var(--surface-2); }
.gap-label {
  display: inline-block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--blue); background: var(--accent-soft);
  padding: 3px 10px; border-radius: 20px; margin-bottom: 12px;
}
.gap h2 {
  font-family: var(--font); font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700; color: var(--ink); margin: 0 0 16px;
}
.gap .gap-sub {
  font-size: 17px; line-height: 1.6; color: var(--ink-2);
  max-width: 620px; margin: 0 0 48px;
}
.gap-visual {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--sh-md); margin-bottom: 32px;
}
.gap-visual img { width: 100%; display: block; }
.gap-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--blue); text-decoration: none;
}
.gap-cta:hover { opacity: .75; }

/* --- Tier-A strip cards --- */
.strip { padding: 80px 0; background: var(--surface); }
.strip h2 {
  font-family: var(--font); font-size: clamp(22px, 3vw, 34px);
  font-weight: 700; color: var(--ink); margin: 0 0 12px; text-align: center;
}
.strip-sub { font-size: 16px; color: var(--ink-2); text-align: center; margin: 0 0 48px; }
.strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.strip-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px; box-shadow: var(--sh-sm);
}
.strip-card h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin: 0 0 8px; }
.strip-card p { font-size: 14px; line-height: 1.6; color: var(--ink-2); margin: 0; }

/* --- Import CTA card --- */
.import-cta { padding: 0 0 80px; background: var(--surface); }
.import-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 48px;
  display: flex; align-items: center; gap: 40px; box-shadow: var(--sh-sm);
}
.import-card-body { flex: 1; }
.import-card-body h3 { font-size: 22px; font-weight: 700; color: var(--ink); margin: 0 0 10px; }
.import-card-body p { font-size: 15px; line-height: 1.6; color: var(--ink-2); margin: 0 0 24px; }
.import-card-body .btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: #fff;
  font-size: 14px; font-weight: 600; padding: 12px 22px;
  border-radius: var(--radius); text-decoration: none; transition: opacity .15s;
}
.import-card-body .btn-primary:hover { opacity: .85; }
.import-card-img {
  width: 220px; flex-shrink: 0;
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
}
.import-card-img img { width: 100%; display: block; }

/* --- Comparison table --- */
.compare { padding: 80px 0; background: var(--surface-2); }
.compare h2 {
  font-family: var(--font); font-size: clamp(22px, 3vw, 34px);
  font-weight: 700; color: var(--ink); margin: 0 0 12px; text-align: center;
}
.compare-sub { font-size: 16px; color: var(--ink-2); text-align: center; margin: 0 0 48px; }
.compare-table {
  width: 100%; border-collapse: collapse;
  background: var(--surface); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--sh-sm);
}
.compare-table th {
  font-size: 14px; font-weight: 700; color: var(--ink);
  padding: 18px 20px; text-align: left;
  border-bottom: 2px solid var(--line); background: var(--surface);
}
.compare-table th:not(:first-child) { text-align: center; width: 140px; }
.compare-table td {
  font-size: 14px; color: var(--ink-2);
  padding: 14px 20px; border-bottom: 1px solid var(--line); vertical-align: top;
}
.compare-table td:not(:first-child) { text-align: center; color: var(--ink); font-weight: 600; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--surface-2); }
.check { color: var(--green); }
.cross { color: var(--ink-4); }

/* --- Comparison table cell marks --- */
.compare-table-wrap {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--sh-sm);
}
.compare-table.new { font-size: 14.5px; }
.compare-table.new thead th {
  text-align: left; padding: 16px 22px;
  font-family: var(--font); font-weight: 600; font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-3); background: var(--surface-2); border-bottom: 1px solid var(--line);
}
.compare-table.new thead th.col-gript { background: var(--ink); color: #fff; width: 22%; text-align: center; text-transform: none; font-size: 13px; letter-spacing: .02em; }
.compare-table.new thead th.col-them  { width: 22%; text-align: center; text-transform: none; font-size: 13px; letter-spacing: .02em; color: var(--ink); }
.compare-table.new tbody tr { border-bottom: 1px solid var(--line-2); }
.compare-table.new tbody tr:last-child { border-bottom: 0; }
.compare-table.new tbody td { padding: 14px 22px; color: var(--ink); vertical-align: middle; }
.compare-table.new tbody td.cat-row {
  background: var(--surface-2); font-family: var(--font); font-weight: 600;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-3); padding-top: 16px; padding-bottom: 16px;
}
.compare-table.new td.cell-mark { text-align: center; font-size: 16px; }
.compare-table.new td.cell-mark.gript { background: rgba(22,163,74,.04); }
.mark-yes  { color: var(--green); font-weight: 700; }
.mark-no   { color: var(--ink-4); font-weight: 400; }
.mark-paid { font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 4px; background: var(--amber-soft); color: var(--amber); display: inline-block; letter-spacing: .02em; }
.mark-partial { font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 4px; background: var(--surface-2); color: var(--ink-2); display: inline-block; }
.compare-foot { text-align: center; color: var(--ink-3); font-size: 13px; margin-top: 18px; }

/* --- Bundle section --- */
.bundle-section { background: var(--ink); color: #fff; padding: 64px 0; }
.bundle-head { text-align: center; margin-bottom: 40px; }
.bundle-head .bundle-eyebrow { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5); margin-bottom: 10px; }
.bundle-head h2 { font-family: var(--font); font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: #fff; margin: 0 0 12px; }
.bundle-head p { font-size: 16px; color: rgba(255,255,255,.65); max-width: 600px; margin: 0 auto; }
.bundle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.bundle-item { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 16px 18px; }
.bundle-item-tag  { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.45); margin-bottom: 4px; }
.bundle-item-name { display: block; font-size: 14px; font-weight: 600; color: #fff; }

/* --- Gaps section (Tier S) intro --- */
.gaps-section { padding: 80px 0 0; }
.gaps-intro { text-align: center; margin-bottom: 56px; }
.gaps-intro .gaps-eyebrow { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); margin-bottom: 12px; }
.gaps-intro h2 { font-family: var(--font); font-size: clamp(28px, 3.5vw, 42px); font-weight: 700; color: var(--ink); margin: 0 0 12px; }
.gaps-intro p { font-size: 17px; color: var(--ink-2); max-width: 580px; margin: 0 auto; }

/* --- Individual gap articles --- */
.gap-article { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 72px 0; border-top: 1px solid var(--line); }
.gaps-section { padding-bottom: 80px; }
.gap-article.reverse .gap-visual { order: -1; }
.gap-num  { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); margin-bottom: 10px; }
.gap-text h3 { font-family: var(--font); font-size: clamp(22px, 2.8vw, 30px); font-weight: 700; color: var(--ink); margin: 0 0 14px; line-height: 1.2; }
.gap-text p { font-size: 16px; line-height: 1.65; color: var(--ink-2); margin: 0 0 16px; }
.gap-vs { font-size: 14px; line-height: 1.6; color: var(--ink-3); background: var(--surface-2); border-left: 3px solid var(--line-2); padding: 12px 14px; border-radius: 0 var(--radius) var(--radius) 0; margin: 0 0 20px; }
.gap-vs strong { color: var(--ink-2); }

/* --- Strip cards intro --- */
.strip-intro { text-align: center; margin-bottom: 40px; }
.strip-intro .strip-eyebrow { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); margin-bottom: 10px; }
.strip-intro h2 { font-family: var(--font); font-size: clamp(22px, 3vw, 34px); font-weight: 700; color: var(--ink); margin: 0 0 12px; }
.strip-intro p { font-size: 16px; color: var(--ink-2); max-width: 540px; margin: 0 auto; }
.vs-mini { font-size: 13px; color: var(--ink-3); margin-top: 8px; }
.strip-card h4 { font-size: 16px; font-weight: 700; color: var(--ink); margin: 0 0 8px; }
.strip-card-icon { margin-bottom: 12px; color: var(--ink-2); }

/* --- Import section --- */
.import-section { padding: 48px 0 80px; }

/* --- Pricing section intro --- */
.pricing-intro { text-align: center; margin-bottom: 40px; }
.pricing-intro .pricing-eyebrow { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); margin-bottom: 10px; }
.pricing-intro h2 { font-family: var(--font); font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; color: var(--ink); margin: 0 0 12px; }
.pricing-intro p { font-size: 15px; color: var(--ink-2); max-width: 480px; margin: 0 auto; }
.pricing-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 820px; margin: 0 auto; }
.plan { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; }
.plan.featured { background: var(--ink); color: #fff; border-color: var(--ink); }
.plan-name { font-family: var(--font); font-weight: 700; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 16px; }
.plan.featured .plan-name { color: rgba(255,255,255,.65); }
.plan-price { font-family: var(--font); font-size: 48px; font-weight: 700; line-height: 1; letter-spacing: -.02em; }
.plan-price sup { font-size: 22px; font-weight: 600; vertical-align: top; margin-right: 2px; }
.plan-unit { font-size: 13px; color: var(--ink-3); margin-top: 4px; }
.plan.featured .plan-unit { color: rgba(255,255,255,.55); }
.plan-desc { font-size: 14px; color: var(--ink-2); margin: 16px 0 22px; }
.plan.featured .plan-desc { color: rgba(255,255,255,.7); }
.plan-cta {
  display: block; text-align: center; background: var(--ink); color: #fff;
  padding: 12px; border-radius: 10px; font-weight: 600; text-decoration: none; margin-bottom: 22px;
}
.plan.featured .plan-cta { background: #fff; color: var(--ink); }
.plan-features { list-style: none; padding: 0; margin: 0; font-size: 14px; }
.plan-features li { padding: 6px 0; color: var(--ink-2); position: relative; padding-left: 22px; }
.plan-features li::before { content: "\2713"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.plan.featured .plan-features li { color: rgba(255,255,255,.85); }
.plan.featured .plan-features li::before { color: rgba(255,255,255,.6); }
.cost-foot { text-align: center; color: var(--ink-3); font-size: 13px; margin-top: 14px; }

@media (max-width: 900px) {
  .bundle-grid { grid-template-columns: repeat(2, 1fr); }
  .gap-article { grid-template-columns: 1fr; gap: 32px; }
  .gap-article.reverse .gap-visual { order: 0; }
  .pricing-grid-2 { grid-template-columns: 1fr; }
}

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

/* --- Pricing section --- */
.pricing-section { padding: 80px 0; background: var(--surface); }
.pricing-section h2 {
  font-family: var(--font); font-size: clamp(22px, 3vw, 34px);
  font-weight: 700; color: var(--ink); margin: 0 0 12px; text-align: center;
}
.pricing-section-sub { font-size: 16px; color: var(--ink-2); text-align: center; margin: 0 0 48px; }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 860px; margin: 0 auto; }
.plan-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--sh-sm);
}
.plan-card.featured { background: var(--ink); color: #fff; border-color: var(--ink); }
.plan-card h3 { font-size: 18px; font-weight: 700; margin: 0 0 6px; }
.plan-card .plan-price { font-size: 36px; font-weight: 700; line-height: 1; margin: 16px 0 4px; }
.plan-card .plan-price span { font-size: 16px; font-weight: 400; opacity: .6; }
.plan-card .plan-period { font-size: 13px; opacity: .5; margin-bottom: 24px; }
.plan-card ul { list-style: none; padding: 0; margin: 0 0 28px; }
.plan-card ul li { font-size: 14px; padding: 5px 0; border-bottom: 1px solid var(--line); }
.plan-card.featured ul li { border-color: rgba(255,255,255,.1); }
.plan-card .btn-plan {
  display: block; text-align: center; padding: 12px;
  border-radius: var(--radius); font-size: 14px; font-weight: 600;
  text-decoration: none; border: 2px solid var(--line); color: var(--ink); transition: border-color .15s;
}
.plan-card.featured .btn-plan { background: #fff; color: var(--ink); border-color: #fff; }
.plan-card .btn-plan:hover { border-color: var(--ink); }

/* --- Final CTA --- */
.final-cta { padding: 100px 0; background: var(--ink); text-align: center; }
.final-cta h2 {
  font-family: var(--font); font-size: clamp(28px, 4vw, 46px);
  font-weight: 700; color: #fff; margin: 0 0 16px;
}
.final-cta p { font-size: 18px; color: rgba(255,255,255,.7); margin: 0 0 40px; }
.final-cta .btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--ink);
  font-size: 15px; font-weight: 700; padding: 16px 32px;
  border-radius: var(--radius); text-decoration: none; transition: opacity .15s;
}
.final-cta .btn-white:hover { opacity: .9; }
.final-cta .fine { font-size: 13px; color: rgba(255,255,255,.4); margin-top: 16px; }

/* --- Monday: ghost-seat module --- */
.ghost-seat { padding: 72px 0; background: var(--surface-2); }
.ghost-seat h2 {
  font-family: var(--font); font-size: clamp(22px, 3vw, 32px);
  font-weight: 700; color: var(--ink); margin: 0 0 8px;
}
.ghost-seat .gs-sub { font-size: 16px; color: var(--ink-2); margin: 0 0 40px; max-width: 600px; }
.ghost-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--sh-md);
}
.ghost-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px; gap: 20px; }
.ghost-head h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin: 0 0 4px; }
.ghost-head p { font-size: 13px; color: var(--ink-3); margin: 0; }
.ghost-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }
.ghost-side {
  border: 2px solid var(--line); border-radius: var(--radius); padding: 20px;
}
.ghost-side h4 {
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: var(--ink-3); margin: 0 0 12px;
}
.seats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.seat {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; border: 2px solid transparent;
}
.seat.filled        { background: var(--accent-soft); color: var(--blue); border-color: var(--blue); }
.seat.ghost-empty   { background: var(--surface-2); color: var(--ink-4); border-color: var(--line-2); border-style: dashed; }
.seat.filled-gript  { background: var(--green-soft); color: var(--green); border-color: var(--green); }
.ghost-math {
  background: var(--surface-2); border-radius: var(--radius); padding: 20px; margin-bottom: 20px;
}
.ghost-math table { width: 100%; border-collapse: collapse; }
.ghost-math td { font-size: 14px; padding: 6px 0; color: var(--ink-2); }
.ghost-math td:last-child { text-align: right; font-weight: 600; color: var(--ink); }
.ghost-math tr.total td { padding-top: 10px; border-top: 1px solid var(--line); font-weight: 700; color: var(--ink); }
.ghost-foot { display: flex; gap: 20px; padding-top: 24px; border-top: 1px solid var(--line); }
.ghost-foot .gf-item { flex: 1; }
.ghost-foot .gf-item .label { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-3); display: block; margin-bottom: 4px; }
.ghost-foot .gf-item .val   { font-size: 22px; font-weight: 700; color: var(--ink); display: block; }
.ghost-foot .gf-item .val.green { color: var(--green); }
.ghost-foot .gf-item .note  { font-size: 12px; color: var(--ink-3); display: block; }

/* --- ClickUp/Notion: default-columns proof strip --- */
.proof { padding: 56px 0; background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof h2 {
  font-family: var(--font); font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700; color: var(--ink); margin: 0 0 8px; text-align: center;
}
.proof-label { font-size: 14px; color: var(--ink-2); text-align: center; margin: 0 0 36px; }
.proof-cols { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.proof-col {
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px 20px; min-width: 160px; text-align: center;
}
.proof-col strong { display: block; font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.proof-col span   { font-size: 13px; color: var(--ink-3); }
.thats-it { font-size: 15px; font-weight: 600; color: var(--green); text-align: center; margin-top: 20px; }

/* --- ClickUp/Notion/Asana: billing surprise module --- */
.surprise { padding: 88px 0; background: var(--surface-2); }
.surprise h2 {
  font-family: var(--font); font-size: clamp(22px, 3vw, 32px);
  font-weight: 700; color: var(--ink); margin: 0 0 8px;
}
.surprise .surp-sub { font-size: 16px; color: var(--ink-2); margin: 0 0 40px; max-width: 600px; }
.surprise-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; max-width: 860px; margin: 0 auto; }
.surprise-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--sh-sm);
}
.ic-label  { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-3); margin-bottom: 8px; }
.ic-amount { font-size: 40px; font-weight: 800; color: var(--ink); line-height: 1; }
.ic-period { font-size: 13px; color: var(--ink-3); margin: 8px 0 28px; }
.ic-line { display: flex; justify-content: space-between; font-size: 14px; color: var(--ink-2); padding: 10px 0; border-bottom: 1px solid var(--line); }
.ic-line:last-of-type { border-bottom: none; }
.ic-line .amount { font-weight: 600; color: var(--ink); }
.year2 { margin-top: 16px; padding-top: 16px; border-top: 2px solid var(--line); }
.year2 .ic-label  { color: var(--red); }
.year2 .ic-amount { color: var(--red); }
.surprise-arrow {
  display: flex; flex-direction: column; align-items: center; padding: 0 16px; gap: 10px;
  max-width: 210px; text-align: center;
}
.surprise-arrow span { max-width: 140px; text-align: center; line-height: 1.5; }
.surprise-arrow .big    { font-size: 24px; font-weight: 800; color: var(--green); }
.surprise-arrow .saving { font-size: 13px; color: var(--ink-3); text-align: center; max-width: 100px; }
.surprise-foot   { font-size: 13px; color: var(--ink-3); margin: 20px auto 0; max-width: 820px; text-align: center; }
.surprise-source { font-size: 12px; color: var(--ink-4); margin: 8px auto 0; max-width: 820px; text-align: center; }

/* --- Asana: pricing-gap cards --- */
.pricing-cell {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--sh-sm);
}
.pricing-cell.gript { background: var(--ink); color: #fff; border-color: var(--ink); }
.pricing-cell.gript .pc-label  { color: rgba(255,255,255,.7); }
.pricing-cell.gript .pc-amount { color: #fff; }
.pricing-cell.gript .pc-period { color: rgba(255,255,255,.65); }
.pricing-cell.gript .pc-feat   { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.15); }
.pc-label  { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-3); margin-bottom: 8px; }
.pc-amount { font-size: 40px; font-weight: 800; color: var(--ink); line-height: 1; }
.pc-period { font-size: 13px; color: var(--ink-3); margin: 8px 0 28px; }
.pc-feats  { display: flex; flex-direction: column; list-style: none; padding: 0; margin: 0; }
.pc-feat   { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-2); padding: 10px 0; border-bottom: 1px solid var(--line); }
.pc-feat:last-child { border-bottom: none; }
.pc-feat svg { flex-shrink: 0; }
.pc-has::before { content: "✓"; color: var(--green); font-weight: 700; font-size: 14px; flex-shrink: 0; }
.pc-miss::before { content: "—"; color: var(--ink-4); font-size: 14px; flex-shrink: 0; }
/* Competitor card: "has" checkmarks must be neutral, not Gript brand green */
.pricing-cell.competitor .pc-has::before { color: var(--ink-3); }
/* Gript dark card: force SVG checkmarks to render white regardless of inherited color */
.pricing-cell.gript .pc-feat svg { stroke: rgba(255,255,255,0.85); }

/* --- Asana: services positioning block --- */
.services { padding: 72px 0; background: var(--surface); }
.services h2 {
  font-family: var(--font); font-size: clamp(22px, 3vw, 32px);
  font-weight: 700; color: var(--ink); margin: 0 0 8px;
}
.services .srv-sub { font-size: 16px; color: var(--ink-2); margin: 0 0 40px; max-width: 600px; }
.services-card {
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--sh-sm); max-width: 820px; margin: 0 auto;
}
.quote { font-size: 20px; font-style: italic; color: var(--ink); line-height: 1.5; margin: 0 0 20px; }
.services-personas { display: flex; flex-wrap: wrap; gap: 10px; }
.services-personas span {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 20px; padding: 6px 14px; font-size: 13px; color: var(--ink-2);
}

/* --- Trello: power-up math module --- */
.stack { padding: 72px 0; background: var(--surface-2); }
.stack h2 {
  font-family: var(--font); font-size: clamp(22px, 3vw, 32px);
  font-weight: 700; color: var(--ink); margin: 0 0 8px;
}
.stack .stk-sub { font-size: 16px; color: var(--ink-2); margin: 0 0 40px; max-width: 600px; }
.stack-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 0; max-width: 820px; margin: 0 auto; }
.stack-cell {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--sh-sm);
}
.stack-cell.gript { background: var(--ink); color: #fff; border-color: var(--ink); }
.stack-cell.gript .sc-label  { color: rgba(255,255,255,.5); }
.stack-cell.gript .sc-amount { color: #fff; }
.stack-cell.gript .sc-sub    { color: rgba(255,255,255,.4); }
.stack-cell.gript .sc-row    { color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.12); }
.stack-cell.gript .sc-tag    { background: rgba(255,255,255,.1); color: rgba(255,255,255,.6); }
.sc-label  { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-3); margin-bottom: 8px; }
.sc-amount { font-size: 40px; font-weight: 800; color: var(--ink); line-height: 1; }
.sc-sub    { font-size: 13px; color: var(--ink-3); margin: 8px 0 28px; }
.sc-rows   { display: flex; flex-direction: column; }
.sc-row    { display: flex; align-items: center; justify-content: space-between; font-size: 14px; color: var(--ink-2); padding: 10px 0; border-bottom: 1px solid var(--line); }
.sc-row:last-child { border-bottom: none; }
.sc-tag    { font-size: 11px; background: var(--surface-2); color: var(--ink-3); padding: 2px 8px; border-radius: 10px; }

/* --- Trello: Atlassian pivot callout --- */
.pivot { padding: 56px 0; background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pivot h2 {
  font-family: var(--font); font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700; color: var(--ink); margin: 0 0 24px; text-align: center;
}
.pivot-card {
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 36px; max-width: 760px; margin: 0 auto;
}
.pivot-body  { font-size: 16px; line-height: 1.65; color: var(--ink-2); margin: 0 0 16px; }
.pivot-quote {
  font-size: 16px; font-style: italic; color: var(--ink); line-height: 1.5;
  border-left: 3px solid var(--blue); padding-left: 16px; margin: 0 0 8px;
}
.pivot-attrib { font-size: 13px; color: var(--ink-3); }

/* --- Notion: docs defense block --- */
.defense { padding: 72px 0; background: var(--surface); }
.defense-card {
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 48px; max-width: 820px; text-align: center; margin: 0 auto;
}
.defense-card h3 { font-size: 22px; font-weight: 700; color: var(--ink); margin: 0 0 12px; }
.defense-card p  { font-size: 16px; line-height: 1.65; color: var(--ink-2); margin: 0; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .strip-grid         { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards      { grid-template-columns: 1fr 1fr; }
  .surprise-grid      { grid-template-columns: 1fr; }
  .stack-grid         { grid-template-columns: 1fr; }
  .surprise-arrow     { flex-direction: row; padding: 16px 0; justify-content: center; }
  .ghost-grid         { grid-template-columns: 1fr; }
  .ghost-head         { flex-direction: column; }
  .import-card        { flex-direction: column; }
  .import-card-img    { width: 100%; }
}

@media (max-width: 640px) {
  .hero          { padding: 64px 0 56px; }
  .strip-grid    { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .proof-cols    { flex-direction: column; align-items: center; }
  .ghost-foot    { flex-direction: column; }
  .wrap, .wrap-wide, .wrap-narrow { padding: 0 16px; }
}

/* Match the paired demo button to .btn-white's proportions so the two closing
   buttons line up. Base styles are .btn-ghost-ondark in main.css. */
.final-cta .cta-pair { margin-bottom: 0; }
.final-cta .btn-ghost-ondark {
  padding: 16px 32px;
  font-weight: 700;
  border-radius: var(--radius);
}
