/* ── Variables ──────────────────────────────────────────── */
:root {
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --accent: #ffd12f;
  --accent-dark: #996100;
  --blue: #2167ff;
  --amber: #f2a900;
  --coral: #ff6b4a;
  --violet: #6c5ce7;
  --lime: #7bcf2d;
  --paper: #fff;
  --surface: #f9fafb;
  --shadow: 0 1px 3px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.08);
  --radius: 12px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  /* Very subtle dot texture for depth */
  background-image: radial-gradient(rgba(0,0,0,0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, p { margin-top: 0; }

/* ── Typography ─────────────────────────────────────────── */
h1 {
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin-bottom: 22px;
}
h2 {
  font-size: clamp(30px, 4.5vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 16px;
}
h3 {
  font-size: 19px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 8px;
}

/* ── Eyebrow / Labels ───────────────────────────────────── */
.eyebrow, .section-label, .plan-kicker {
  display: block;
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px clamp(18px, 4vw, 56px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color .18s, border-color .18s, box-shadow .18s;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,0.92);
  border-color: var(--line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

/* ── Header actions / mobile menu ──────────────────────── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 38px;
  height: 38px;
  padding: 0;
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}
.mobile-nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
  padding: 4px clamp(18px, 4vw, 56px) 12px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 13px 2px;
  font-size: 15px;
  font-weight: 500;
  border-top: 1px solid var(--line);
}
.mobile-nav a:first-child { border-top: none; }

/* ── Brand ──────────────────────────────────────────────── */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.01em;
  min-width: fit-content;
}
.brand img {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 8px;
}
.brand span { font-size: 13px; }

/* ── Nav ────────────────────────────────────────────────── */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}
.desktop-nav a { padding: 6px 0; }
.desktop-nav a:hover { color: var(--ink); }

/* ── Buttons ────────────────────────────────────────────── */
.header-cta, .primary-action, .secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity .15s, background .15s;
}
.header-cta, .primary-action {
  color: #1a1000;
  background: var(--accent);
}
.header-cta:hover, .primary-action:hover { opacity: 0.85; }
.secondary-action {
  color: var(--ink);
  background: transparent;
  border: 1.5px solid var(--line);
}
.secondary-action:hover { border-color: #9ca3af; }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  padding: clamp(72px, 9vw, 120px) clamp(18px, 5vw, 72px) clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  max-width: 840px;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.hero-lede {
  max-width: 580px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
  margin-bottom: 28px;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07), 0 0 0 3px rgba(255,209,47,0.12);
  width: fit-content;
}
.rating-stars {
  display: flex;
  gap: 1px;
  font-size: 16px;
  line-height: 1;
}
.rating-stars span { color: var(--accent); }
.rating-stars .star-half { opacity: 0.45; }
.rating-text {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}
.rating-text strong {
  color: var(--ink);
  font-weight: 700;
}

/* Hero — text top, image below full width */
.hero {
  padding-bottom: clamp(48px, 6vw, 80px);
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(255, 209, 47, 0.13) 0%, transparent 60%),
    radial-gradient(ellipse 55% 55% at 0% 110%, rgba(33, 103, 255, 0.05) 0%, transparent 60%),
    transparent;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(40px, 5vw, 64px);
  max-width: 1280px;
  margin: 0 auto;
}
.hero-copy {
  max-width: 720px;
  margin-bottom: 0;
}
.hero-images {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
/* ── Hero mini widget (coded product preview, no screenshot) ── */
.mini-widget {
  width: 100%;
  max-width: 440px;
  padding: 16px;
  background:
    radial-gradient(ellipse 80% 80% at 25% 0%, rgba(255, 209, 47, 0.38) 0%, transparent 65%),
    radial-gradient(ellipse 70% 70% at 100% 100%, rgba(255, 107, 74, 0.18) 0%, transparent 65%),
    var(--surface);
  border-radius: 24px;
}
.mw-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(17, 24, 39, 0.08), 0 1px 4px rgba(17, 24, 39, 0.04);
  padding: 14px 16px 12px;
}
.mw-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.mw-title {
  flex: 1;
  font-size: 13px;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}
.mw-panel {
  display: grid;
  gap: 7px;
  margin-bottom: 10px;
}
.mw-bar-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mw-bar-label {
  width: 88px;
  flex-shrink: 0;
  font-size: 10px;
  color: var(--muted);
}
.mw-bar-track {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mw-bar {
  display: block;
  height: 6px;
  border-radius: 3px;
}
.mw-bar--ghost { opacity: 0.32; }
.mw-bar--cogs { background: #a78bfa; }
.mw-bar--shipping { background: #818cf8; }
.mw-bar--fees { background: #22d3ee; }
.mw-bar--google { background: #fbbf24; }
.mw-bar--profit { background: #34d399; }
.mw-bar-row::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 6px);
  transform: translate(-50%, 4px) scale(0.96);
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s, transform .15s;
  z-index: 5;
}
.mw-bar-row:hover::after {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}
.mw-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  border-top: 1px solid var(--line);
  font-size: 11px;
}
.mw-row:first-child { border-top: none; }
.mw-row span:first-child { flex: 1; color: var(--muted); }
.mw-row strong { color: var(--ink); font-size: 12px; }
.mw-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 10px;
}
.mw-stats > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px 8px 7px;
  background: var(--surface);
  border-radius: 9px;
}
.mw-stat-label { font-size: 10px; color: var(--muted); }
.mw-stat-value { display: inline-flex; align-items: baseline; gap: 5px; }
.mw-stat-value strong { font-size: 15px; color: var(--ink); letter-spacing: -0.01em; }
.mw-up { color: #16a34a; font-size: 11px; font-weight: 700; }

/* Side-by-side hero on desktop: copy left, widget right */
@media (min-width: 981px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .hero-copy {
    flex: 1 1 520px;
    max-width: 560px;
    text-align: left;
  }
  .hero-lede {
    margin-left: 0;
    margin-right: 0;
  }
  .hero-actions {
    justify-content: flex-start;
  }
  .hero-images {
    flex: 1 1 440px;
    width: auto;
    max-width: 480px;
  }
}

/* ── General section ────────────────────────────────────── */
section { padding: clamp(72px, 9vw, 120px) clamp(18px, 5vw, 72px); }
.problem-section,
.feature-section,
.deep-features-section,
.pricing-section,
.faq-section {
  max-width: 1280px;
  margin: 0 auto;
}

/* ── Problem ────────────────────────────────────────────── */
.problem-section { border-bottom: 1px solid var(--line); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
#problem-title .dim {
  color: var(--muted);
}
#problem-title .hl {
  background-image: linear-gradient(120deg, rgba(255, 209, 47, 0.65) 0%, rgba(255, 209, 47, 0.65) 100%);
  background-repeat: no-repeat;
  background-position: 0 88%;
  background-size: 100% 0.32em;
  padding: 0 0.05em;
  border-radius: 2px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.problem-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.clean-list {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.clean-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink);
}
.clean-list li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

/* ── Visual band ────────────────────────────────────────── */
.visual-band {
  padding: clamp(40px, 5vw, 72px) 0;
  background: #f8f9fb;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.visual-band img {
  width: min(1200px, 100%);
  margin: 0 auto;
}

/* Orders table (coded, replaces screenshot) */
.orders-table-wrap {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow-x: auto;
}
.orders-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 14px;
}
.orders-table th {
  text-align: left;
  padding: 14px 18px;
  background: var(--surface);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 1px solid var(--line);
}
.orders-table td {
  padding: 13px 18px;
  white-space: nowrap;
  border-top: 1px solid var(--line);
  color: var(--ink);
}
.orders-table tbody tr:first-child td { border-top: none; }
.orders-table th:first-child,
.orders-table td:first-child {
  position: sticky;
  left: 0;
  background: #fff;
  font-weight: 600;
  z-index: 2;
}
.orders-table th:first-child { background: var(--surface); }
.src-icon, .pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin-right: 7px;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.src-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}
.src-icon--fb { background: #1877f2; }
.src-icon--google {
  background: #fff;
  color: #4285f4;
  border: 1px solid var(--line);
  font-weight: 800;
}
.pay-badge {
  min-width: 30px;
  height: 16px;
  padding: 0 5px;
  border-radius: 4px;
}
.pay-badge--klarna { background: #ffb3c7; color: #0b051d; }
.pay-badge--amex { background: #016fd0; }
.pay-badge--paypal { background: #003087; }
.pay-badge--visa { background: #1a1f71; }
.pay-badge--mastercard {
  position: relative;
  width: 26px;
  height: 16px;
  background: transparent;
}
.pay-badge--mastercard span {
  position: absolute;
  top: 1px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
}
.pay-badge--mastercard .c1 { left: 0; background: #eb001b; }
.pay-badge--mastercard .c2 { left: 7px; background: #f79e1b; mix-blend-mode: multiply; }

/* ── Feature cards ──────────────────────────────────────── */
.feature-section { border-bottom: 1px solid var(--line); }
.section-heading { max-width: 680px; margin-bottom: 48px; }
.section-heading p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin-top: 10px;
  margin-bottom: 0;
}
.section-intro {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin-top: 10px;
  margin-bottom: 0;
}

/* Grid with border lines between cells (PennyPulse style) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 26px;
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 0;
  transition: background 0.15s;
}
.feature-card:hover {
  background: #fffef5;
}
.feature-card:nth-child(3n) { border-right: none; }
.feature-card:nth-last-child(-n+3):nth-child(3n+1),
.feature-card:nth-last-child(-n+3):nth-child(3n+2),
.feature-card:nth-last-child(-n+3):nth-child(3n) {
  border-bottom: none;
}
.feature-card h3 { font-size: 16px; font-weight: 700; margin: 0; }
.feature-card p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0; flex: 1; }
.feature-index {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.feature-index::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  flex-shrink: 0;
}
.accent-blue   .feature-index::before { background: var(--blue); }
.accent-amber  .feature-index::before { background: var(--amber); }
.accent-coral  .feature-index::before { background: var(--coral); }
.accent-lime   .feature-index::before { background: var(--lime); }
.accent-violet .feature-index::before { background: var(--violet); }
.accent-sidekick .feature-index::before { background: #6c3fc5; }

/* Feature card "New" badge */
.feature-new-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f0ecff;
  color: #5b3dbf;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 100px;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.feature-card.accent-sidekick { text-decoration: none; cursor: pointer; }
.feature-card.accent-sidekick:hover { background: #f5f0ff; }

/* ── Deep features ──────────────────────────────────────── */
.deep-features-section { border-bottom: 1px solid var(--line); }
.deep-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  margin-top: clamp(56px, 8vw, 96px);
  padding-top: clamp(56px, 8vw, 96px);
  border-top: 1px solid var(--line);
}
.deep-feature-row--reverse { direction: rtl; }
.deep-feature-row--reverse > * { direction: ltr; }
.deep-feature-media img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.deep-feature-copy h3 {
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.15;
  margin-bottom: 10px;
}
.deep-feature-copy > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 24px;
}
.feature-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}
.feature-list li::before {
  content: "";
  flex-shrink: 0;
  margin-top: 5px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}
.deep-feature-multistore {
  margin-top: clamp(56px, 8vw, 96px);
  padding: clamp(36px, 5vw, 56px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.multistore-copy h3 {
  font-size: clamp(22px, 3vw, 36px);
  max-width: 700px;
  margin-bottom: 12px;
  line-height: 1.15;
}
.multistore-copy > p {
  max-width: 640px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 24px;
}
.multistore-copy .feature-list {
  max-width: 600px;
  grid-template-columns: repeat(2, 1fr);
}

/* ── Workflow wrapper bg ─────────────────────────────────── */
#workflow {
  background: #f8f9fb;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ── Workflow ────────────────────────────────────────────── */
.workflow-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(360px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  max-width: 1280px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.workflow-copy { position: sticky; top: 100px; align-self: start; }
.workflow-copy p { color: var(--muted); font-size: 17px; line-height: 1.65; }
.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}
.timeline { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.timeline li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.timeline span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--accent-dark);
  background: #fff9e0;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}
.timeline h3 { font-size: 15px; margin-bottom: 4px; }
.timeline p { color: var(--muted); font-size: 14px; line-height: 1.55; margin: 0; }

/* ── Proof ──────────────────────────────────────────────── */
.proof-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 7vw, 80px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.proof-media img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
blockquote {
  margin: 0 0 14px;
  padding: 16px 20px;
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

/* ── Pricing ────────────────────────────────────────────── */
.pricing-section {
  border-bottom: 1px solid var(--line);
  background: #f8f9fb;
  border-top: 1px solid var(--line);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.price-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 300px;
}
.price-card.highlighted {
  border-color: rgba(255, 201, 40, 0.7);
  background: #fffdf0;
}
.price-card h3 {
  font-size: 16px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 4px;
}
.price {
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  margin: 10px 0 22px;
  letter-spacing: -0.02em;
}
.price span { font-size: 15px; font-weight: 400; color: var(--muted); }
.price-card ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.price-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}
.price-card li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(360px, 1fr);
  gap: clamp(32px, 7vw, 92px);
  border-bottom: 1px solid var(--line);
}
.faq-list { display: grid; gap: 8px; }
details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 600;
  font-size: 15px;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
details p { margin: 0; padding: 0 20px 18px; color: var(--muted); font-size: 14px; line-height: 1.65; }

/* ── Final CTA ──────────────────────────────────────────── */
.final-cta {
  max-width: 1180px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  padding: clamp(48px, 6vw, 80px);
  background: #fffbeb;
  border: 1px solid rgba(255, 201, 40, 0.35);
  border-radius: var(--radius);
}
.final-cta h2 { max-width: 760px; }
.final-cta p {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 28px;
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 32px clamp(18px, 5vw, 72px);
  background: var(--surface);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.footer-brand { margin-bottom: 8px; color: var(--ink); }
.site-footer p { margin: 0; }
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  font-weight: 500;
}
.site-footer nav a:hover { color: var(--ink); }

/* ── Lightbox ───────────────────────────────────────────── */
.zoomable { cursor: zoom-in; transition: opacity .15s; }
.zoomable:hover { opacity: 0.88; }
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.88);
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: min(1400px, 96vw);
  max-height: 92vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 32px 100px rgba(0,0,0,0.5);
}

/* ── Help center ────────────────────────────────────────── */
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.legal-back:hover { color: var(--ink); }
.help-hub {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 72px);
}
.help-hub h1 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 8px; }
.help-hub-intro {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 48px;
}
.help-category-label {
  display: block;
  margin: 0 0 16px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.help-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 56px;
}
.help-card {
  display: block;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .15s, background .15s;
}
.help-card:hover { border-color: #d7dae0; background: #fff; }
.help-card h3 { font-size: 16px; margin-bottom: 6px; }
.help-card p { color: var(--muted); font-size: 14px; margin: 0; }

/* ── Help article page ─────────────────────────────────────── */
.help-page {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 72px) clamp(64px, 8vw, 96px);
}
.help-page h1 {
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12;
  margin-bottom: 10px;
}
.help-meta {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.help-intro {
  font-size: 18px;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 28px;
}
.help-page h2 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 14px;
}
.help-page h3 { font-size: 16px; margin-bottom: 6px; }
.help-page ul, .help-page ol {
  padding-left: 20px;
  margin-bottom: 18px;
}
.help-page li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 6px;
}
.help-page li strong { color: var(--ink); }
.help-page p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.help-callout {
  display: flex;
  gap: 10px;
  padding: 14px 18px;
  background: #fffbeb;
  border: 1px solid rgba(255, 201, 40, 0.4);
  border-radius: 10px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
  margin: 20px 0;
}
.help-callout.success {
  background: #f0fdf4;
  border-color: rgba(34, 197, 94, 0.35);
}
.code-block {
  display: block;
  padding: 14px 18px;
  margin: 16px 0 20px;
  background: var(--ink);
  border-radius: 10px;
  color: #f3f4f6;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.7;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-all;
}
.param-table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 20px;
  font-size: 14px;
}
.param-table th, .param-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
}
.param-table th { color: var(--muted); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.param-table code { color: var(--ink); }
.help-page code {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 2px 6px;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 13px;
  color: var(--ink);
}
.help-steps {
  display: grid;
  gap: 18px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  counter-reset: help-step;
}
.help-steps > li {
  position: relative;
  padding-left: 44px;
  counter-increment: help-step;
}
.help-steps > li::before {
  content: counter(help-step);
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: #fff9e0;
  color: var(--accent-dark);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}
.help-steps h3 { margin-bottom: 4px; }
.help-steps p { margin-bottom: 8px; }
.help-screenshot {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin: 8px 0 4px;
  cursor: zoom-in;
}
.help-page details {
  margin-bottom: 8px;
}
.help-page summary { font-size: 15px; }
.help-sources {
  margin: 8px 0 0;
  padding-left: 18px;
}
.help-sources li { margin-bottom: 8px; font-size: 14px; color: var(--muted); }
.help-sources a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-word;
}
.help-sources a:hover { color: var(--ink); }
.help-related {
  max-width: 720px;
  margin: 0 auto clamp(56px, 7vw, 96px);
  padding: 0 clamp(18px, 5vw, 72px);
}
.help-related h2 { font-size: 18px; margin-bottom: 14px; }
.help-related ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.help-related li { border-top: 1px solid var(--line); }
.help-related a {
  display: block;
  padding: 14px 2px;
  font-size: 15px;
  font-weight: 500;
}
.help-related a:hover { color: var(--accent-dark); }
.help-back-cta {
  max-width: 720px;
  margin: 0 auto clamp(64px, 8vw, 96px);
  padding: 0 clamp(18px, 5vw, 72px);
}
.help-back-cta p { color: var(--muted); font-size: 14px; margin-bottom: 0; }
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 20px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .mobile-nav-toggle { display: flex; }
  .hero-copy { margin-bottom: 0; }
  .problem-grid,
  .proof-section,
  .faq-section,
  .workflow-section { grid-template-columns: 1fr; }
  .workflow-copy { position: static; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .deep-feature-row { grid-template-columns: 1fr; }
  .deep-feature-row--reverse { direction: ltr; }
  .multistore-copy .feature-list { grid-template-columns: 1fr; }
  .feature-card:nth-child(3n) { border-right: 1px solid var(--line); }
  .feature-card:nth-child(2n) { border-right: none; }
}

@media (max-width: 680px) {
  .site-header { padding: 12px 16px; }
  .brand span { display: none; }
  .header-cta { min-height: 36px; padding: 0 12px; font-size: 13px; }
  section { padding: 56px 16px; }
  .hero { padding: 48px 16px 40px; grid-template-columns: 1fr; }
  .mini-widget { padding: 14px; border-radius: 22px; }
  .mw-card { padding: 16px 16px 14px; }
  .mw-bar-label { width: 78px; font-size: 10px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card:nth-child(n) { border-right: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .final-cta { margin-inline: 16px; padding: 32px 20px; }
  .site-footer { flex-direction: column; }
  .site-footer nav { justify-content: flex-start; }
  .help-card-grid { grid-template-columns: 1fr; }
  .orders-table-wrap { border-radius: 0; border-left: none; border-right: none; }
  .orders-table { min-width: 640px; font-size: 13px; }
  .orders-table th, .orders-table td { padding: 11px 12px; }
}
