*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bg:        #F7F4ED;
  --bg-alt:    #EFE9DD;
  --bg-deep:   #0F1115;
  --card:      #FFFFFF;
  --ink:       #0F1115;
  --ink-2:     #3A3D44;
  --ink-3:     #6B6E76;
  --ink-4:     #9A9CA1;
  --line:      rgba(15,17,21,0.08);
  --line-2:    rgba(15,17,21,0.14);
  --line-s:    rgba(15,17,21,0.28);
  --coral:     #E84A3D;
  --coral-h:   #C93B30;
  --coral-soft:#FBE5E2;
  --sage:      #2E6E5A;
  --sage-soft: #DBE9E2;
  --amber:     #B86E18;
  --amber-soft:#F5E5C9;
  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Geist', -apple-system, sans-serif;
  --mono:  'Geist Mono', ui-monospace, monospace;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container    { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.container-md { max-width: 1000px; margin: 0 auto; padding: 0 40px; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(247,244,237,0.88);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 62px; padding: 0 40px;
  max-width: 1240px; margin: 0 auto;
}
.logo {
  display: inline-block;
  width: 139px; height: 32px;
  background: url(sellerqi-logo.png) left center / contain no-repeat;
  text-decoration: none;
  font-size: 0 !important; color: transparent !important;
  text-indent: -9999px; overflow: hidden; white-space: nowrap;
  flex-shrink: 0;
}
.logo-mark { display: none; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--ink-3); text-decoration: none;
  font-size: 14px; font-weight: 500; transition: color 0.15s;
}
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; gap: 10px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px; border-radius: 8px; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  text-decoration: none; transition: all 0.15s; letter-spacing: -0.005em;
}
.btn-ghost  { background: transparent; color: var(--ink-3); }
.btn-ghost:hover { color: var(--ink); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--line-s); }
.btn-outline:hover { background: var(--ink); color: var(--bg); }
.btn-primary { background: var(--coral); color: #fff; }
.btn-primary:hover { background: var(--coral-h); transform: translateY(-1px); }
.btn-dark   { background: var(--ink); color: var(--bg); }
.btn-dark:hover { background: var(--coral); }
.btn-lg  { padding: 14px 26px; font-size: 15px; border-radius: 9px; }
.btn-xl  { padding: 16px 30px; font-size: 16px; border-radius: 10px; }

/* ── HERO ── */
.hero { padding: 88px 0 0; }
.hero-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 72px; align-items: flex-start;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge    { animation: fadeUp 0.5s ease 0.05s both; }
.hero h1       { animation: fadeUp 0.6s ease 0.15s both; }
.hero-sub      { animation: fadeUp 0.5s ease 0.28s both; }
.hero-ctas     { animation: fadeUp 0.5s ease 0.38s both; }
.hero-trust    { animation: fadeUp 0.5s ease 0.46s both; }
.hero-panel    { animation: fadeUp 0.7s ease 0.3s both; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 5px 13px; border-radius: 100px;
  background: var(--card); border: 1px solid var(--line-2);
  font-family: var(--mono); font-size: 11px; color: var(--ink-3);
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage); animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(46px, 5.8vw, 76px);
  font-weight: 400; line-height: 0.97;
  letter-spacing: -0.035em;
  margin-bottom: 26px;
  font-variation-settings: "opsz" 144;
}
.hero h1 em {
  font-style: italic; font-weight: 300;
  color: var(--coral);
}

.hero-sub {
  font-size: 18px; color: var(--ink-2);
  line-height: 1.6; max-width: 520px;
  margin-bottom: 34px; font-weight: 300;
}
.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  align-items: center; margin-bottom: 28px;
}
.hero-fine {
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-4); letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-trust {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--ink-3); margin-top: 32px;
}
.avatars { display: flex; }
.avatars span {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--bg); margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: #fff;
}
.avatars span:first-child { margin-left: 0; background: var(--coral); }
.avatars span:nth-child(2) { background: var(--sage); }
.avatars span:nth-child(3) { background: #5B4A8B; }
.avatars span:nth-child(4) { background: var(--amber); }

/* HERO PANEL */
.hero-panel {
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 0 rgba(15,17,21,0.04), 0 32px 64px -20px rgba(15,17,21,0.14);
}
.panel-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.panel-dots { display: flex; gap: 6px; }
.panel-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--line-2);
}
.panel-dots span:nth-child(1) { background: #FF5F57; }
.panel-dots span:nth-child(2) { background: #FEBC2E; }
.panel-dots span:nth-child(3) { background: #28C840; }
.panel-bar-label {
  font-family: var(--mono); font-size: 10px;
  color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em;
}
.panel-bar-status {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--mono); font-size: 10px; color: var(--sage);
}
.panel-bar-status .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--sage); animation: pulse 2s ease-in-out infinite;
}

.panel-summary {
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
}
.panel-count {
  font-family: var(--serif); font-size: 30px;
  font-weight: 400; letter-spacing: -0.02em; line-height: 1;
}
.panel-count em { font-style: italic; font-weight: 300; color: var(--coral); }
.panel-count-sub {
  font-size: 12px; color: var(--ink-3); margin-top: 4px;
}
.panel-total {
  text-align: right;
}
.panel-total-label {
  font-family: var(--mono); font-size: 10px;
  color: var(--ink-4); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 4px;
}
.panel-total-num {
  font-family: var(--mono); font-size: 18px;
  font-weight: 500; color: var(--ink);
}

.issue-row {
  display: grid; grid-template-columns: 30px 1fr auto;
  gap: 12px; align-items: center;
  padding: 13px 20px;
  border-bottom: 1px solid var(--line);
  transition: background 0.12s;
}
.issue-row:last-child { border-bottom: none; }
.issue-row:hover { background: var(--bg); }

.issue-dot {
  width: 30px; height: 30px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  flex-shrink: 0;
}
.d-red  { background: var(--coral-soft); color: var(--coral); }
.d-amb  { background: var(--amber-soft); color: var(--amber); }
.d-grn  { background: var(--sage-soft);  color: var(--sage);  }

.issue-text {}
.issue-title { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 2px; line-height: 1.3; }
.issue-sub   { font-family: var(--mono); font-size: 10px; color: var(--ink-4); letter-spacing: 0.03em; }

.issue-amt {
  font-family: var(--mono); font-size: 13px;
  font-weight: 500; color: var(--coral);
  white-space: nowrap; text-align: right;
}
.issue-amt.pos { color: var(--sage); }
.issue-amt-label {
  font-family: var(--mono); font-size: 9px;
  color: var(--ink-4); text-transform: uppercase;
  letter-spacing: 0.08em; display: block;
  margin-top: 1px;
}

/* QMATE inside panel */
.panel-qmate {
  background: var(--bg-deep);
  padding: 18px 20px;
  border-top: 1px solid var(--line);
}
.pq-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.pq-brand {
  display: flex; align-items: center; gap: 8px;
}
.pq-icon {
  width: 26px; height: 26px; border-radius: 7px;
  background: var(--coral); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 13px; font-weight: 500;
}
.pq-name {
  font-family: var(--serif); font-size: 14px;
  color: #F0EEE8; font-weight: 500; letter-spacing: -0.01em;
}
.pq-wa {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--mono); font-size: 10px;
  color: #25D166; text-transform: uppercase; letter-spacing: 0.06em;
}
.pq-wa svg { width: 11px; height: 11px; fill: #25D166; }

.pq-msg-user {
  background: #1E2228; border-radius: 8px 8px 3px 8px;
  padding: 9px 12px; margin: 0 0 10px 32px;
  font-size: 12.5px; color: #C8C6C0; line-height: 1.5;
}
.pq-msg-ai { display: flex; gap: 8px; align-items: flex-start; }
.pq-msg-ai-icon {
  width: 22px; height: 22px; background: var(--coral);
  border-radius: 6px; flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 11px; color: #fff; font-weight: 500;
}
.pq-msg-ai-body {
  background: #1E2228; border: 1px solid rgba(255,255,255,0.06);
  border-radius: 3px 8px 8px 8px;
  padding: 9px 12px; font-size: 12.5px;
  color: #C8C6C0; line-height: 1.55; flex: 1;
}
.pq-msg-ai-body b { color: #F0EEE8; font-weight: 500; }
.pq-hl  { background: rgba(232,74,61,0.18); color: #FCA89E; padding: 0 5px; border-radius: 3px; font-family: var(--mono); font-size: 11px; }
.pq-hlg { background: rgba(46,110,90,0.3);  color: #7EC9A8; padding: 0 5px; border-radius: 3px; font-family: var(--mono); font-size: 11px; }

/* ── TRUST STRIP ── */
.trust {
  margin-top: 72px;
  padding: 44px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.trust-stat { text-align: center; flex: 1; min-width: 120px; }
.trust-num {
  font-family: var(--serif); font-size: 40px;
  font-weight: 400; letter-spacing: -0.03em;
  line-height: 1; margin-bottom: 5px;
  font-variation-settings: "opsz" 144;
}
.trust-num em { font-style: italic; font-weight: 300; color: var(--coral); }
.trust-lbl {
  font-family: var(--mono); font-size: 10px;
  color: var(--ink-3); text-transform: uppercase;
  letter-spacing: 0.10em; line-height: 1.5;
}
.trust-div { width: 1px; height: 36px; background: var(--line-2); flex-shrink: 0; }

/* ── SECTION BASE ── */
.section    { padding: 112px 0; }
.section-sm { padding: 80px 0; }

.s-tag {
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--coral); display: inline-block; margin-bottom: 14px;
}
.s-title {
  font-family: var(--serif);
  font-size: clamp(38px, 4.8vw, 58px);
  font-weight: 400; line-height: 1.02;
  letter-spacing: -0.03em; margin-bottom: 18px;
  font-variation-settings: "opsz" 144;
}
.s-title em { font-style: italic; font-weight: 300; color: var(--coral); }
.s-title .dim { color: var(--ink-3); }
.s-sub {
  font-size: 18px; color: var(--ink-2);
  line-height: 1.55; max-width: 580px; font-weight: 300;
}

/* ── HOW IT WORKS ── */
.how-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; margin-top: 56px;
}
.how-cell {
  background: var(--bg); padding: 40px 34px;
  transition: background 0.18s;
}
.how-cell:hover { background: var(--card); }
.how-n {
  font-family: var(--serif); font-size: 64px;
  color: var(--line-2); line-height: 1;
  margin-bottom: 22px; font-weight: 400;
  letter-spacing: -0.03em; font-variation-settings: "opsz" 144;
}
.how-title {
  font-family: var(--serif); font-size: 24px;
  font-weight: 400; letter-spacing: -0.02em;
  margin-bottom: 12px; font-variation-settings: "opsz" 72;
}
.how-desc { font-size: 15px; color: var(--ink-3); line-height: 1.6; font-weight: 300; }
.how-time {
  margin-top: 20px; padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 10px;
  color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.10em;
}

/* ── FEATURE ROWS ── */
.feat-row {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 72px; align-items: center;
  padding: 72px 0; border-top: 1px solid var(--line);
}
.feat-row:first-of-type { border-top: none; padding-top: 0; }
.feat-row.flip { grid-template-columns: 1.1fr 1fr; }
.feat-row.flip .feat-copy { order: 2; }

.feat-eyebrow {
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--coral); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.feat-eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--coral); }
.feat-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 400; line-height: 1.04;
  letter-spacing: -0.025em; margin-bottom: 18px;
  font-variation-settings: "opsz" 144;
}
.feat-title em { font-style: italic; font-weight: 300; color: var(--coral); }
.feat-desc {
  font-size: 16px; color: var(--ink-2);
  line-height: 1.6; margin-bottom: 22px; font-weight: 300;
}
.feat-list { list-style: none; margin-bottom: 26px; }
.feat-list li {
  padding: 10px 0 10px 22px; position: relative;
  font-size: 14px; color: var(--ink-2); line-height: 1.5;
  border-bottom: 1px solid var(--line);
}
.feat-list li:last-child { border-bottom: none; }
.feat-list li::before {
  content: '';
  position: absolute; left: 0; top: 17px;
  width: 8px; height: 1px; background: var(--coral);
}
.feat-cta {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--coral); text-decoration: none;
  font-size: 13px; font-weight: 500;
  font-family: var(--mono); text-transform: uppercase;
  letter-spacing: 0.08em; border-bottom: 1px solid rgba(232,74,61,0.3);
  padding-bottom: 3px; transition: border-color 0.15s;
}
.feat-cta:hover { border-color: var(--coral); }

/* Feature visual cards */
.feat-card {
  background: var(--card); border: 1px solid var(--line-2);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 1px 0 rgba(15,17,21,0.04), 0 24px 56px -20px rgba(15,17,21,0.12);
}
.feat-card-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 18px; background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.feat-card-label {
  font-family: var(--mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3);
}
.feat-card-body { padding: 20px 18px; }

/* Alert email visual */
.alert-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 13px 0; border-bottom: 1px solid var(--line);
}
.alert-item:last-child { border-bottom: none; }
.alert-icon {
  width: 34px; height: 34px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.ai-red  { background: var(--coral-soft); }
.ai-amb  { background: var(--amber-soft); }
.ai-blue { background: #E8F0FE; }
.alert-content { flex: 1; }
.alert-title { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
.alert-meta  { font-family: var(--mono); font-size: 10px; color: var(--ink-4); }
.alert-sev {
  font-family: var(--mono); font-size: 10px;
  padding: 2px 8px; border-radius: 4px;
  white-space: nowrap; align-self: center;
}
.sev-h { background: var(--coral-soft); color: var(--coral); }
.sev-m { background: var(--amber-soft); color: var(--amber); }
.sev-l { background: #E8F0FE; color: #4A6EAD; }

/* Reimbursement visual */
.reimb-total-block {
  text-align: center; padding: 20px 0 22px;
  border-bottom: 1px solid var(--line); margin-bottom: 16px;
}
.reimb-total-lbl {
  font-family: var(--mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--ink-4); margin-bottom: 8px;
}
.reimb-total-num {
  font-family: var(--serif); font-size: 48px;
  font-weight: 400; color: var(--sage);
  letter-spacing: -0.03em; line-height: 1;
  font-variation-settings: "opsz" 144;
}
.reimb-total-sub {
  font-family: var(--mono); font-size: 10px;
  color: var(--ink-4); margin-top: 5px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.reimb-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--line);
}
.reimb-row:last-child { border-bottom: none; }
.reimb-type { font-size: 13px; color: var(--ink-2); }
.reimb-count {
  font-family: var(--mono); font-size: 12px;
  padding: 2px 9px; border-radius: 5px;
  background: var(--sage-soft); color: var(--sage);
}

/* QMate feature card */
.qmate-feat-card {
  background: var(--bg-deep); border-radius: 14px;
  padding: 22px;
  box-shadow: 0 24px 56px -20px rgba(15,17,21,0.3);
}
.qf-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.qf-brand { display: flex; align-items: center; gap: 9px; }
.qf-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--coral); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 14px; font-weight: 500;
}
.qf-name {
  font-family: var(--serif); font-size: 16px;
  color: #F0EEE8; font-weight: 500; letter-spacing: -0.01em;
}
.qf-wa {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--mono); font-size: 10px;
  color: #25D166; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 5px;
  background: rgba(37,209,102,0.08);
  border: 1px solid rgba(37,209,102,0.15);
}
.qf-wa svg { width: 11px; height: 11px; fill: #25D166; }

.qf-user {
  background: #1C1F28; border-radius: 10px 10px 3px 10px;
  padding: 10px 13px; margin: 0 0 11px 36px;
  font-size: 13px; color: #C8C6C0; line-height: 1.5;
}
.qf-ai { display: flex; gap: 9px; align-items: flex-start; margin-bottom: 12px; }
.qf-ai-icon {
  width: 26px; height: 26px; background: var(--coral);
  border-radius: 7px; flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 12px; color: #fff; font-weight: 500;
}
.qf-ai-body {
  background: #1C1F28; border: 1px solid rgba(255,255,255,0.06);
  border-radius: 3px 10px 10px 10px;
  padding: 10px 13px; font-size: 13px;
  color: #C8C6C0; line-height: 1.6; flex: 1;
}
.qf-ai-body b { color: #F0EEE8; font-weight: 500; }
.qf-hl  { background: rgba(232,74,61,0.18); color: #FCA89E; padding: 1px 5px; border-radius: 3px; font-family: var(--mono); font-size: 11px; }
.qf-hlg { background: rgba(46,110,90,0.25);  color: #7EC9A8; padding: 1px 5px; border-radius: 3px; font-family: var(--mono); font-size: 11px; }
.qf-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 9px; }
.qf-chip {
  font-family: var(--mono); font-size: 10px;
  padding: 3px 9px; border-radius: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #7A7870;
}
.qf-input {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 8px;
}
.qf-input-field {
  flex: 1; background: #1C1F28;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 9px 13px;
  font-family: var(--sans); font-size: 12px;
  color: #7A7870; outline: none;
}
.qf-input-send {
  width: 28px; height: 28px; background: var(--coral);
  border-radius: 7px; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s; flex-shrink: 0;
}
.qf-input-send:hover { background: var(--coral-h); }
.qf-input-send svg { width: 12px; height: 12px; fill: #fff; }

/* ── COMPARISON ── */
.compare-wrap {
  background: var(--bg-alt); border-radius: 20px;
  padding: 72px 60px; margin-top: 72px;
}
.compare-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 36px; margin-top: 52px;
}
.compare-col h3 {
  font-family: var(--serif); font-size: 22px;
  font-weight: 400; margin-bottom: 22px;
  padding-bottom: 14px; border-bottom: 1px solid var(--line-2);
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap; letter-spacing: -0.02em;
  font-variation-settings: "opsz" 72;
}
.cc-badge {
  font-family: var(--mono); font-size: 9px;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 3px 9px; border-radius: 100px; font-weight: 500;
}
.before h3 { color: var(--ink-3); }
.before h3 .cc-badge { background: rgba(15,17,21,0.07); color: var(--ink-4); }
.after  h3 { color: var(--ink); }
.after  h3 .cc-badge { background: var(--coral-soft); color: var(--coral); }
.compare-col ul { list-style: none; }
.compare-col li {
  padding: 13px 0; font-size: 14px; line-height: 1.5;
  display: flex; align-items: flex-start; gap: 10px;
  border-bottom: 1px dashed var(--line-2);
}
.compare-col li:last-child { border-bottom: none; }
.before li { color: var(--ink-3); }
.before li::before { content: '×'; color: var(--ink-4); font-size: 16px; flex-shrink: 0; width: 16px; line-height: 1.4; }
.after  li { color: var(--ink-2); }
.after  li::before { content: '✓'; color: var(--sage); font-size: 14px; font-weight: 600; flex-shrink: 0; width: 16px; line-height: 1.5; }

/* ── FEATURES GRID ── */
.feats-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; margin-top: 56px;
}
.feats-cell {
  background: var(--bg); padding: 34px 28px;
  transition: background 0.18s;
}
.feats-cell:hover { background: var(--card); }
.feats-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-family: var(--serif); font-size: 18px;
  font-style: italic; color: var(--coral);
}
.feats-cell h4 {
  font-family: var(--sans); font-size: 15px; font-weight: 500;
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.feats-cell p { font-size: 13.5px; color: var(--ink-3); line-height: 1.55; font-weight: 300; }

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid; grid-template-columns: 1.25fr 1fr;
  gap: 20px; margin-top: 52px;
}
.testi {
  background: var(--card); border: 1px solid var(--line-2);
  border-radius: 16px; padding: 36px;
}
.testi.featured { background: var(--ink); border-color: var(--ink); }
.testi-q {
  font-family: var(--serif); font-size: 21px;
  font-weight: 400; line-height: 1.35;
  letter-spacing: -0.015em; margin-bottom: 26px;
  font-variation-settings: "opsz" 72;
}
.testi-q em { font-style: italic; font-weight: 300; color: var(--coral); }
.testi.featured .testi-q { color: #F0EEE8; }
.testi-author {
  display: flex; align-items: center; gap: 13px;
  padding-top: 22px; border-top: 1px solid var(--line-2);
}
.testi.featured .testi-author { border-top-color: rgba(255,255,255,0.12); }
.testi-ava {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--coral); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 500; color: var(--ink); }
.testi.featured .testi-name { color: #F0EEE8; }
.testi-role { font-family: var(--mono); font-size: 11px; color: var(--ink-4); }
.testi.featured .testi-role { color: rgba(255,255,255,0.4); }

/* ── FAQ ── */
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; margin-top: 52px;
}
.faq-item {
  background: var(--bg); padding: 26px 30px;
  transition: background 0.15s;
}
.faq-item:hover { background: var(--card); }
.faq-q {
  font-size: 15px; font-weight: 500; color: var(--ink);
  margin-bottom: 9px; line-height: 1.4; padding-right: 20px;
  position: relative;
}
.faq-q::after {
  content: '+'; position: absolute; right: 0; top: 0;
  color: var(--ink-3); font-size: 19px; font-weight: 300; line-height: 1;
}
.faq-a { font-size: 14px; color: var(--ink-3); line-height: 1.6; font-weight: 300; }

/* ── BACKED BY ── */
.backed {
  background: var(--card); border: 1px solid var(--line-2);
  border-radius: 18px; padding: 56px 60px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: center; margin: 72px 0;
}
.backed-eye {
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-4); margin-bottom: 12px;
}
.backed-title {
  font-family: var(--serif); font-size: 34px;
  font-weight: 400; letter-spacing: -0.025em;
  margin-bottom: 14px; line-height: 1.1;
  font-variation-settings: "opsz" 144;
}
.backed-desc {
  font-size: 16px; color: var(--ink-2);
  line-height: 1.6; font-weight: 300; max-width: 540px;
}
.backed-stats { display: flex; flex-direction: column; gap: 20px; min-width: 180px; }
.backed-stat { text-align: right; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.backed-stat:last-child { border-bottom: none; padding-bottom: 0; }
.backed-stat-n {
  font-family: var(--serif); font-size: 36px;
  color: var(--coral); font-weight: 400;
  letter-spacing: -0.03em; line-height: 1;
  font-variation-settings: "opsz" 144;
}
.backed-stat-l {
  font-family: var(--mono); font-size: 10px;
  color: var(--ink-4); text-transform: uppercase;
  letter-spacing: 0.10em; margin-top: 4px;
}

/* ── FINAL CTA ── */
.final-cta {
  background: var(--bg-deep); border-radius: 20px;
  padding: 96px 60px; text-align: center;
  margin-bottom: 80px; position: relative; overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(232,74,61,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 400; line-height: 1.0;
  letter-spacing: -0.035em; margin-bottom: 22px;
  color: #F0EEE8; font-variation-settings: "opsz" 144;
}
.final-cta h2 em { font-style: italic; font-weight: 300; color: var(--coral); }
.final-cta p {
  font-size: 18px; color: #7A7870;
  margin-bottom: 38px; max-width: 520px;
  margin-left: auto; margin-right: auto;
  line-height: 1.6; font-weight: 300;
}
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-cream { background: var(--bg); color: var(--ink); }
.btn-cream:hover { background: #fff; transform: translateY(-1px); }
.btn-ghost-light { background: transparent; color: #7A7870; border: 1px solid rgba(240,238,232,0.15); }
.btn-ghost-light:hover { border-color: rgba(240,238,232,0.35); color: #F0EEE8; }
.cta-fine {
  margin-top: 18px; font-family: var(--mono);
  font-size: 11px; color: #4A4844;
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--line);
  padding: 60px 0 36px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 44px; margin-bottom: 48px;
}
.footer-desc {
  font-size: 14px; color: var(--ink-3);
  line-height: 1.6; margin: 14px 0 18px;
  max-width: 300px; font-weight: 300;
}
.footer-esf {
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.10em;
}
.footer-esf a { color: var(--ink-3); text-decoration: underline; }
.footer h5 {
  font-family: var(--mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--ink-4); margin-bottom: 16px; font-weight: 500;
}
.footer ul { list-style: none; }
.footer li { padding: 5px 0; }
.footer a { color: var(--ink-3); text-decoration: none; font-size: 14px; transition: color 0.15s; }
.footer a:hover { color: var(--coral); }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 24px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-copy { font-family: var(--mono); font-size: 11px; color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.08em; }

/* ── RESPONSIVE ── */
@media (max-width: 1040px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-panel { max-width: 560px; }
  .testi-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  .container, .container-md { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .feat-row, .feat-row.flip { grid-template-columns: 1fr; gap: 36px; }
  .feat-row.flip .feat-copy { order: 0; }
  .how-grid, .feats-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .backed { grid-template-columns: 1fr; gap: 32px; }
  .backed-stats { flex-direction: row; }
  .compare-wrap { padding: 48px 28px; border-radius: 14px; }
  .trust-div { display: none; }
}
@media (max-width: 560px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .how-grid, .feats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .backed-stats { flex-direction: column; }
  .final-cta { padding: 64px 28px; border-radius: 14px; }
  .final-cta h2 { font-size: 40px; }
}

/* ════════════ SHARED UTILITIES (added for full site) ════════════ */
.page-hero { padding: 80px 0 56px; text-align: center; }
.page-hero.left { text-align: left; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(40px, 5vw, 68px); font-weight: 400; line-height: 1.0; letter-spacing: -0.035em; margin-bottom: 22px; font-variation-settings: "opsz" 144; text-wrap: balance; }
.page-hero h1 em { font-style: italic; font-weight: 300; color: var(--coral); }
.page-hero .ph-sub { font-size: 19px; color: var(--ink-2); line-height: 1.6; font-weight: 300; max-width: 620px; margin: 0 auto 32px; }
.page-hero.left .ph-sub { margin-left: 0; }
.ph-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; align-items: center; }
.page-hero.left .ph-ctas { justify-content: flex-start; }
.ph-fine { font-family: var(--mono); font-size: 11px; color: var(--ink-4); letter-spacing: 0.05em; text-transform: uppercase; margin-top: 20px; }
.crumb { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-4); padding: 26px 0 0; }
.crumb a { color: var(--ink-3); text-decoration: none; }
.crumb a:hover { color: var(--coral); }
.crumb span { margin: 0 7px; color: var(--line-s); }
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; padding: 64px 0 24px; }
.split.flip .split-copy { order: 2; }
.split-copy h1 { font-family: var(--serif); font-size: clamp(38px, 4.6vw, 60px); font-weight: 400; line-height: 1.0; letter-spacing: -0.035em; margin-bottom: 22px; font-variation-settings: "opsz" 144; text-wrap: balance; }
.split-copy h1 em { font-style: italic; font-weight: 300; color: var(--coral); }
.split-copy .ph-sub { font-size: 18px; color: var(--ink-2); line-height: 1.62; font-weight: 300; max-width: 540px; margin-bottom: 30px; }
.cards { display: grid; gap: 18px; margin-top: 52px; }
.cards.c2 { grid-template-columns: repeat(2,1fr); }
.cards.c3 { grid-template-columns: repeat(3,1fr); }
.cards.c4 { grid-template-columns: repeat(4,1fr); }
.lcard { background: var(--card); border: 1px solid var(--line-2); border-radius: 14px; padding: 30px 28px; text-decoration: none; color: inherit; display: block; transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s; }
a.lcard:hover { transform: translateY(-2px); box-shadow: 0 18px 44px -22px rgba(15,17,21,0.18); border-color: var(--line-s); }
.lcard-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-family: var(--serif); font-size: 19px; font-style: italic; color: var(--coral); }
.lcard h3 { font-family: var(--sans); font-size: 17px; font-weight: 500; letter-spacing: -0.01em; margin-bottom: 9px; }
.lcard p { font-size: 14px; color: var(--ink-3); line-height: 1.6; font-weight: 300; }
.lcard .lcard-go { margin-top: 16px; font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--coral); display: inline-flex; gap: 6px; }
.steps { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; margin-top: 52px; }
.steps.s3 { grid-template-columns: repeat(3,1fr); }
.steps.s4 { grid-template-columns: repeat(4,1fr); }
.step { background: var(--bg); padding: 36px 30px; transition: background 0.18s; }
.step:hover { background: var(--card); }
.step-n { font-family: var(--serif); font-size: 56px; color: var(--line-2); line-height: 1; margin-bottom: 18px; font-variation-settings: "opsz" 144; }
.step h3 { font-family: var(--serif); font-size: 22px; font-weight: 400; letter-spacing: -0.02em; margin-bottom: 11px; font-variation-settings: "opsz" 72; }
.step p { font-size: 14px; color: var(--ink-3); line-height: 1.6; font-weight: 300; }
.band-dark { background: var(--bg-deep); border-radius: 20px; padding: 72px 60px; text-align: center; margin: 16px 0; position: relative; overflow: hidden; }
.band-dark::before { content:''; position:absolute; top:-120px; left:50%; transform:translateX(-50%); width:700px; height:380px; background:radial-gradient(ellipse, rgba(232,74,61,0.08) 0%, transparent 70%); pointer-events:none; }
.band-dark .s-tag { color: #FCA89E; }
.band-dark h2 { font-family: var(--serif); font-size: clamp(34px,4.4vw,54px); font-weight: 400; line-height: 1.04; letter-spacing: -0.03em; color: #F0EEE8; margin-bottom: 18px; font-variation-settings:"opsz" 144; }
.band-dark h2 em { font-style: italic; font-weight: 300; color: var(--coral); }
.band-dark p { font-size: 17px; color: #9A988F; line-height: 1.6; font-weight: 300; max-width: 560px; margin: 0 auto; }
.statrow { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; margin-top: 44px; }
.statbox { flex: 1; min-width: 180px; background: var(--card); border: 1px solid var(--line-2); border-radius: 14px; padding: 30px 26px; text-align: center; }
.statbox-n { font-family: var(--serif); font-size: 46px; font-weight: 400; letter-spacing: -0.03em; line-height: 1; font-variation-settings:"opsz" 144; }
.statbox-n em { font-style: italic; font-weight: 300; color: var(--coral); }
.statbox-n.sage { color: var(--sage); }
.statbox-l { font-family: var(--mono); font-size: 10px; color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 9px; line-height: 1.5; }
.cmp-table { width: 100%; border-collapse: collapse; margin-top: 48px; background: var(--card); border: 1px solid var(--line-2); border-radius: 14px; overflow: hidden; }
.cmp-table th, .cmp-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14px; vertical-align: top; }
.cmp-table thead th { background: var(--bg-alt); font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); font-weight: 500; }
.cmp-table thead th.us { color: var(--coral); }
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table td.feat-name { font-weight: 500; color: var(--ink); width: 26%; }
.cmp-table td.col-them { color: var(--ink-3); font-weight: 300; }
.cmp-table td.col-us { color: var(--ink-2); }
.cmp-yes { color: var(--sage); font-weight: 600; }
.cmp-no { color: var(--ink-4); }
.cmp-partial { color: var(--amber); }
.prose { max-width: 760px; }
.prose h2 { font-family: var(--serif); font-size: clamp(26px,3vw,36px); font-weight: 400; letter-spacing: -0.025em; margin: 44px 0 16px; line-height: 1.1; font-variation-settings:"opsz" 144; }
.prose h2 em { font-style: italic; font-weight: 300; color: var(--coral); }
.prose h3 { font-family: var(--sans); font-size: 18px; font-weight: 600; margin: 32px 0 10px; letter-spacing: -0.01em; }
.prose p { font-size: 16px; color: var(--ink-2); line-height: 1.7; font-weight: 300; margin-bottom: 16px; }
.prose ul { list-style: none; margin: 0 0 20px; }
.prose li { position: relative; padding: 8px 0 8px 22px; font-size: 15.5px; color: var(--ink-2); line-height: 1.6; font-weight: 300; }
.prose li::before { content:''; position:absolute; left:0; top:17px; width:8px; height:1px; background: var(--coral); }
.prose strong { font-weight: 600; color: var(--ink); }
.prose a { color: var(--coral); text-decoration: underline; text-underline-offset: 2px; }
.prose .lead { font-size: 19px; color: var(--ink); line-height: 1.6; }
.legal-meta { font-family: var(--mono); font-size: 11px; color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 32px; }
.qa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.qa-card { background: var(--bg-deep); border-radius: 14px; padding: 22px; }
.qa-q { background: #1C1F28; border-radius: 10px 10px 3px 10px; padding: 11px 14px; margin: 0 0 12px 28px; font-size: 13.5px; color: #C8C6C0; line-height: 1.5; }
.qa-a { display: flex; gap: 9px; align-items: flex-start; }
.qa-a-icon { width: 24px; height: 24px; background: var(--coral); border-radius: 7px; flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 12px; color: #fff; }
.qa-a-body { background: #1C1F28; border: 1px solid rgba(255,255,255,0.06); border-radius: 3px 10px 10px 10px; padding: 11px 14px; font-size: 13.5px; color: #C8C6C0; line-height: 1.6; flex: 1; }
.qa-a-body b { color: #F0EEE8; font-weight: 500; }
.qa-hl  { background: rgba(232,74,61,0.18); color: #FCA89E; padding: 1px 5px; border-radius: 3px; font-family: var(--mono); font-size: 11px; }
.qa-hlg { background: rgba(46,110,90,0.25); color: #7EC9A8; padding: 1px 5px; border-radius: 3px; font-family: var(--mono); font-size: 11px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; margin-top: 8px; }
.contact-opts { display: flex; flex-direction: column; gap: 14px; }
.cform { background: var(--card); border: 1px solid var(--line-2); border-radius: 16px; padding: 32px; }
.cform label { display: block; font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-4); margin-bottom: 7px; }
.cform .field { margin-bottom: 18px; }
.cform input, .cform select, .cform textarea { width: 100%; font-family: var(--sans); font-size: 14px; color: var(--ink); background: var(--bg); border: 1px solid var(--line-2); border-radius: 9px; padding: 11px 13px; outline: none; transition: border-color 0.15s; }
.cform input:focus, .cform select:focus, .cform textarea:focus { border-color: var(--coral); }
.cform textarea { resize: vertical; min-height: 120px; }
.spec-list { list-style: none; margin-top: 28px; border-top: 1px solid var(--line); }
.spec-list li { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.spec-list .spec-k { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--coral); min-width: 150px; flex-shrink: 0; padding-top: 2px; }
.spec-list .spec-v { font-size: 15px; color: var(--ink-2); line-height: 1.6; font-weight: 300; }
.spec-list .spec-v strong { font-weight: 600; color: var(--ink); }
.lp-wrap { min-height: 100vh; display: flex; flex-direction: column; }
.lp-logo { display: inline-block; width: 156px; height: 36px; background: url(sellerqi-logo.png) left center / contain no-repeat; font-size: 0; color: transparent; margin: 28px 0; }
.lp-logo .logo-mark { display: none; }
.lp-hero { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; flex: 1; padding: 24px 0 64px; }
.lp-badge { display: inline-flex; align-items: center; gap: 9px; padding: 5px 13px; border-radius: 100px; background: var(--card); border: 1px solid var(--line-2); font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 24px; }
.lp-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); animation: pulse 2.2s ease-in-out infinite; }
.lp-hero h1 { font-family: var(--serif); font-size: clamp(40px,5vw,64px); font-weight: 400; line-height: 1.0; letter-spacing: -0.035em; margin-bottom: 22px; font-variation-settings:"opsz" 144; text-wrap: balance; }
.lp-hero h1 em { font-style: italic; font-weight: 300; color: var(--coral); }
.lp-hero .ph-sub { font-size: 18px; color: var(--ink-2); line-height: 1.6; font-weight: 300; margin-bottom: 30px; max-width: 520px; }
.lp-trust { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--ink-3); margin-top: 28px; }
@media (max-width: 1040px) {
  .split, .split.flip { grid-template-columns: 1fr; gap: 40px; }
  .split.flip .split-copy { order: 0; }
  .qa-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .lp-hero { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 960px) {
  .cards.c3, .cards.c4 { grid-template-columns: 1fr 1fr; }
  .steps.s3, .steps.s4 { grid-template-columns: 1fr 1fr; }
  .cmp-table { font-size: 13px; }
  .cmp-table th, .cmp-table td { padding: 12px 12px; }
}
@media (max-width: 560px) {
  .cards.c2, .cards.c3, .cards.c4 { grid-template-columns: 1fr; }
  .steps.s3, .steps.s4 { grid-template-columns: 1fr; }
  .statrow { flex-direction: column; }
  .spec-list li { flex-direction: column; gap: 4px; }
}


/* Reduced-motion / no-animation safety: never leave content hidden */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-delay: 0ms !important; transition-duration: 0.001ms !important; }
  .hero-badge, .hero h1, .hero-sub, .hero-ctas, .hero-trust, .hero-panel { opacity: 1 !important; transform: none !important; }
}


/* ── Blog / case-study posts (Ghost-generated) ───────────────────────────── */
.post-meta { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-4); display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.post-meta .post-dot { color: var(--line-s); }
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.post-tag { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); background: var(--bg-alt); border: 1px solid var(--line-2); border-radius: 999px; padding: 5px 11px; }
.post-hero-img { margin: 36px 0 8px; }
.post-hero-img img { width: 100%; height: auto; border-radius: 16px; border: 1px solid var(--line-2); display: block; }

/* Ghost content body — extends .prose for elements Ghost emits */
.post-body { margin: 0 auto; }
.post-body img { max-width: 100%; height: auto; border-radius: 12px; margin: 24px 0; display: block; }
.post-body figure { margin: 28px 0; }
.post-body figure img { margin: 0; }
.post-body figcaption { font-family: var(--mono); font-size: 11px; color: var(--ink-4); text-align: center; margin-top: 10px; }
.post-body ol { margin: 0 0 20px; padding-left: 22px; }
.post-body ol li { font-size: 15.5px; color: var(--ink-2); line-height: 1.6; font-weight: 300; padding: 6px 0; }
.post-body blockquote { border-left: 3px solid var(--coral); margin: 28px 0; padding: 4px 0 4px 22px; font-family: var(--serif); font-size: 21px; font-style: italic; font-weight: 300; color: var(--ink); line-height: 1.5; }
.post-body blockquote p { font-size: inherit; color: inherit; }
.post-body hr { border: 0; border-top: 1px solid var(--line-2); margin: 40px 0; }
.post-body pre { background: var(--ink); color: #f5f3ee; border-radius: 12px; padding: 20px 22px; overflow-x: auto; font-family: var(--mono); font-size: 13.5px; line-height: 1.6; margin: 24px 0; }
.post-body code { font-family: var(--mono); font-size: 0.88em; background: var(--bg-alt); border: 1px solid var(--line-2); border-radius: 5px; padding: 2px 6px; }
.post-body pre code { background: none; border: 0; padding: 0; font-size: inherit; }
.post-body .kg-card, .post-body iframe { max-width: 100%; margin: 28px 0; }
.post-body table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.post-body th, .post-body td { border: 1px solid var(--line-2); padding: 10px 12px; text-align: left; }

/* Listing-card extras for posts with thumbnails / meta */
.lcard-thumb { border-radius: 10px; overflow: hidden; margin-bottom: 18px; aspect-ratio: 16 / 9; background: var(--bg-alt); }
.lcard-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lcard-meta { margin-top: 12px; font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-4); }
