/* ============================================================
   INERTIA — marketing page
   Deep indigo-violet (#2E1EA8 → #6C4CF0) + chartreuse (#C7FF4D)
   ============================================================ */

:root {
  --violet-900: #201250;
  --violet-800: #2e1ea8;
  --violet-600: #6c4cf0;
  --violet-500: #8b74ff;
  --violet-100: #eae7ff;
  --accent: #c7ff4d;
  --accent-soft: rgba(199, 255, 77, 0.14);
  --paper: #f6f5fa;
  --paper-2: #edeaf6;
  --ink: #241a52;
  --ink-soft: #4c4473;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(36, 26, 82, 0.12);
  --surface: #fff;
  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
  --radius: 16px;
  --notch: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  --header-h: 44px;
}

/* ---------- dark mode (toggle) ---------- */
[data-theme="dark"] {
  --paper: #15102f;
  --paper-2: #1c1642;
  --ink: #f1eefc;
  --ink-soft: #b6aede;
  --line-light: rgba(255, 255, 255, 0.12);
  --surface: #201a48;
  --violet-100: #2c2260;
}
[data-theme="dark"] body { background: var(--violet-900); }
[data-theme="dark"] .section-light { background: var(--paper); }
[data-theme="dark"] .p-thumb,
[data-theme="dark"] .pd-media-main,
[data-theme="dark"] .sl-thumb,
[data-theme="dark"] .t-thumb,
[data-theme="dark"] .sf-thumb,
[data-theme="dark"] .img-tile,
[data-theme="dark"] .pd-thumb { background: var(--paper-2); }
[data-theme="dark"] .wa-input,
[data-theme="dark"] textarea.wa-input,
[data-theme="dark"] .auth-panel input { color: var(--ink); }
[data-theme="dark"] .msg-list,
[data-theme="dark"] .wa-sbar,
[data-theme="dark"] .wa-chat { background: var(--paper-2); }

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); }

body {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink);
  background: var(--violet-900);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

::selection { background: var(--accent); color: var(--violet-900); }

/* marquees are built by JS — hide until then so there's no empty box */
html:not(.js) .hero-stage,
html:not(.js) .ticker,
html:not(.js) .city-ticker { display: none; }

.wrap {
  width: min(1160px, 100% - 48px);
  margin-inline: auto;
}

/* ---------- accessibility ---------- */
.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 200;
  background: var(--accent);
  color: var(--violet-900);
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.section-light :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--violet-800);
}

/* ---------- typography ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
}
h1 { font-size: clamp(1.5rem, 4vw, 2.35rem); }
h2 { font-size: clamp(1.15rem, 2.6vw, 1.6rem); }
h3 { font-size: 0.9rem; letter-spacing: -0.01em; }

.hl {
  background: linear-gradient(100deg, var(--violet-500), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hl-dark {
  color: var(--violet-800);
  position: relative;
  white-space: nowrap;
}
.hl-dark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.04em;
  height: 0.22em;
  background: var(--accent);
  border-radius: 3px;
  z-index: -1;
  transform: rotate(-1deg);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-100);
  border: 1px solid var(--line-dark);
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}
.kicker-dark {
  color: var(--violet-800);
  border-color: var(--line-light);
  background: rgba(108, 76, 240, 0.06);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(199, 255, 77, 0.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(199, 255, 77, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(199, 255, 77, 0); }
  100% { box-shadow: 0 0 0 0 rgba(199, 255, 77, 0); }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 7px 14px;
  border-radius: 9px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-accent {
  background: var(--accent);
  color: var(--violet-900);
  box-shadow: 0 8px 24px rgba(199, 255, 77, 0.28);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(199, 255, 77, 0.38); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: var(--line-dark);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); transform: translateY(-2px); }
.btn-sm { padding: 5px 11px; font-size: 0.7rem; border-radius: 7px; }
.btn-lg { padding: 9px 19px; font-size: 0.86rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--violet-900);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03);
}
.site-header::after {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 18%, var(--violet-500) 52%, var(--accent) 86%, transparent);
  opacity: 0.75;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.92rem;
  color: #fff;
}
.brand-mark {
  display: inline-flex;
  padding: 3px;
  border-radius: 8px;
  background: rgba(199, 255, 77, 0.1);
  border: 1px solid rgba(199, 255, 77, 0.32);
}
.brand-word { white-space: nowrap; }

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-nav a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 6px 1px;
  border-radius: 0;
  transition: color 0.2s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.site-nav a:hover { color: #fff; background: none; }
.site-nav a:hover::after,
.site-nav a.is-active::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 14px;
  margin-left: 4px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  flex: 0 0 auto;
}
.theme-toggle:hover { background: rgba(255, 255, 255, 0.14); transform: rotate(-12deg); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(108, 76, 240, 0.55), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(46, 30, 168, 0.8), transparent 55%),
    linear-gradient(160deg, var(--violet-800) 0%, var(--violet-900) 60%);
  color: #fff;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
}
.hero-blob-a {
  width: 480px;
  height: 480px;
  top: -180px;
  right: -120px;
  background: var(--violet-600);
}
.hero-blob-b {
  width: 360px;
  height: 360px;
  bottom: 60px;
  left: -140px;
  background: rgba(108, 76, 240, 0.7);
  animation: drift 16s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(60px, -40px) scale(1.15); }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 40px;
  align-items: center;
  padding-top: clamp(32px, 5.5vh, 64px);
  padding-bottom: clamp(32px, 5vh, 56px);
}
.hero-copy { position: relative; z-index: 2; }

.hero h1 { margin-top: 12px; }
.hero .lede {
  margin-top: 13px;
  max-width: 46ch;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.86);
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}
.badge {
  transition: transform 0.15s ease, filter 0.2s ease;
  border-radius: 7px;
}
.badge:hover { transform: translateY(-3px); filter: brightness(1.15); }
.hero-note {
  margin-top: 10px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ---- hero stage: the transit lanes ---- */
.hero-stage {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.stage-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
}
.stage-count {
  color: var(--accent);
  letter-spacing: 0.05em;
}

.transit-lane {
  display: flex;
  gap: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.lane-track {
  display: flex;
  gap: 16px;
  padding-right: 16px;
  will-change: transform;
  animation: lane-scroll 44s linear infinite;
}
.transit-lane-rev .lane-track { animation-direction: reverse; }
@keyframes lane-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.t-card {
  position: relative;
  flex: 0 0 auto;
  width: 118px;
  background: #fff;
  color: #241a52;
  border-radius: 11px;
  clip-path: var(--notch);
  padding: 8px;
  box-shadow: 0 14px 34px rgba(20, 8, 60, 0.35);
  transform: rotate(-1.5deg);
}
.t-card:nth-child(3n) { transform: rotate(1.5deg); }
.t-thumb {
  display: block;
  height: 56px;
  border-radius: 6px;
  background:
    radial-gradient(120px 90px at 80% 10%, rgba(255, 255, 255, 0.55), transparent 60%),
    var(--tt);
}
.t-card h4 {
  font-family: var(--font-display);
  font-size: 0.74rem;
  margin-top: 7px;
  letter-spacing: -0.01em;
}
.t-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
  font-size: 0.66rem;
  color: var(--ink-soft);
}
.t-price {
  font-weight: 700;
  color: var(--violet-800);
  font-size: 0.7rem;
}
.t-seller {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.t-seller::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tt);
}
.t-sold {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--accent);
  color: var(--violet-900);
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: 6px;
  transform: rotate(8deg);
  opacity: 0;
  animation: sold-pop 13s infinite;
  box-shadow: 0 4px 12px rgba(20, 8, 60, 0.3);
}
.t-card:nth-child(2n) .t-sold { animation-delay: 3.5s; }
.t-card:nth-child(3n) .t-sold { animation-delay: 8s; }
@keyframes sold-pop {
  0%, 68% { opacity: 0; transform: rotate(8deg) scale(0.6); }
  72%, 80% { opacity: 1; transform: rotate(8deg) scale(1); }
  86%, 100% { opacity: 0; transform: rotate(8deg) scale(1.15); }
}

/* ---- live ticker ---- */
.ticker {
  position: relative;
  border-top: 1px solid var(--line-dark);
  background: rgba(20, 8, 60, 0.5);
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
}
.ticker-track {
  display: inline-flex;
  gap: 42px;
  padding-right: 42px;
  will-change: transform;
  animation: lane-scroll 38s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.78);
}
.ticker-item b { color: var(--accent); font-weight: 600; }
.ticker-item::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
}

/* ---------- sections ---------- */
.section { padding: clamp(26px, 4.2vw, 46px) 0; }
.section-light { background: var(--paper); }
.section-dark {
  background:
    radial-gradient(1000px 500px at 90% 0%, rgba(108, 76, 240, 0.28), transparent 55%),
    linear-gradient(170deg, var(--violet-900) 0%, var(--violet-800) 100%);
  color: #fff;
}
.section-head { max-width: 640px; }

/* small illustrative "search in action" mockup, used in place of instructional copy */
.search-preview {
  margin-top: 16px;
  background: var(--surface);
  border: 1px solid var(--line-light);
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 10px 28px rgba(36, 26, 82, 0.06);
  max-width: 380px;
}
.search-preview-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: 9px;
  padding: 7px 10px;
  font-size: 0.76rem;
  color: var(--ink-soft);
}
.search-preview-bar span { color: var(--ink); font-weight: 600; }
.search-preview-results { margin-top: 6px; display: flex; flex-direction: column; gap: 2px; }
.search-preview-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 3px;
  border-radius: 7px;
  transition: background 0.15s ease;
}
.search-preview-row:hover { background: var(--paper); }
.spr-ico {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 0.76rem;
  background: var(--tt);
  flex: 0 0 auto;
}
.spr-title { font-size: 0.72rem; font-weight: 600; color: var(--ink); flex: 1; }
.spr-price { font-size: 0.7rem; font-weight: 700; color: var(--violet-800); }

/* two-up preview cards (homepage "see it in action" teaser) */
.preview-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 380px));
  justify-content: center;
  gap: 20px;
}
.preview-duo .search-preview { max-width: none; margin-top: 0; }
@media (max-width: 720px) {
  .preview-duo { grid-template-columns: minmax(0, 380px); }
}

.section-head h2 { margin-top: 12px; }
.section-lede {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  max-width: 56ch;
}
.section-dark .section-lede { color: rgba(255, 255, 255, 0.78); }

/* ---------- how it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 56px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 6%;
  right: 6%;
  height: 2px;
  background:
    repeating-linear-gradient(90deg, var(--violet-500) 0 8px, transparent 8px 16px);
  opacity: 0.4;
  animation: flow-dash 1.6s linear infinite;
  pointer-events: none;
}
@keyframes flow-dash {
  from { background-position: 0 0; }
  to { background-position: 32px 0; }
}
.step {
  background: var(--surface);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  clip-path: var(--notch);
  padding: 26px 24px;
  position: relative;
  box-shadow: 0 10px 30px rgba(36, 26, 82, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(36, 26, 82, 0.12); }
.step-num {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--violet-800);
  background: var(--violet-100);
  border-radius: 11px;
  margin-bottom: 15px;
}
.step h3 { margin-bottom: 7px; }
.step p { font-size: 0.84rem; color: var(--ink-soft); }

/* ---------- sellers ---------- */
.sellers-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 64px;
  align-items: center;
}
.sell-points { margin-top: 30px; }
.sell-points li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-dark);
}
.sell-points svg { flex: 0 0 auto; margin-top: 2px; }
.sell-points strong { font-family: var(--font-display); font-weight: 600; }
.sell-points div { color: rgba(255, 255, 255, 0.8); }

/* storefront mock */
.storefront {
  background: var(--surface);
  color: var(--ink);
  border-radius: 22px;
  clip-path: var(--notch);
  padding: 22px;
  box-shadow: 0 30px 70px rgba(20, 8, 60, 0.45);
  transform: rotate(1.5deg);
  animation: hover-float 7s ease-in-out infinite alternate;
}
@keyframes hover-float {
  from { transform: rotate(1.5deg) translateY(0); }
  to { transform: rotate(1.5deg) translateY(-10px); }
}
.storefront-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-light);
}
.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #201250;
  background: var(--av);
  flex: 0 0 auto;
}
.storefront-id { line-height: 1.3; }
.storefront-id strong { font-family: var(--font-display); font-size: 1.02rem; }
.rating { display: block; font-size: 0.85rem; color: var(--ink-soft); }
.rating em { font-style: normal; color: var(--line-light); }
.live-chip {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--violet-800);
  background: var(--violet-100);
  padding: 6px 10px;
  border-radius: 999px;
}
.storefront-items { margin-top: 16px; display: grid; gap: 10px; }
.sf-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--paper);
  border-radius: 12px;
  padding: 10px 12px;
}
.sf-thumb {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--t);
  flex: 0 0 auto;
  box-shadow: inset 0 0 0 1px rgba(36, 26, 82, 0.08);
}
.sf-item div { line-height: 1.35; }
.sf-item strong { font-family: var(--font-display); font-size: 0.92rem; display: block; }
.sf-item span { font-size: 0.82rem; color: var(--ink-soft); }
.sf-item em { font-style: normal; }
.sf-item-sold .sf-thumb { filter: saturate(0.6) brightness(0.9); }
.sf-item-sold span { color: #1a7a3d; font-weight: 600; }

.storefront-actions { margin-top: 14px; }
.boost-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--violet-900);
  background: var(--accent-soft);
  border: 1px solid rgba(199, 255, 77, 0.55);
  padding: 9px 14px;
  border-radius: 999px;
}
.earnings {
  margin-top: 18px;
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(120deg, var(--violet-900), var(--violet-800));
  color: #fff;
}
.earnings-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.88rem;
}
.earnings-top strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
}
.earnings-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  margin-top: 10px;
  overflow: hidden;
}
.earnings-bar span {
  display: block;
  width: 74%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--violet-600), var(--accent));
}

/* ---------- trust ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.trust-card {
  background: var(--surface);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  clip-path: var(--notch);
  padding: 22px 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.trust-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(36, 26, 82, 0.1); }
.trust-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--violet-100);
  margin-bottom: 16px;
}
.trust-card h3 { margin-bottom: 8px; }
.trust-card p { font-size: 0.86rem; color: var(--ink-soft); }

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.quote {
  border-left: 3px solid var(--accent);
  background: var(--paper-2);
  border-radius: 0 12px 12px 0;
  padding: 20px 20px 16px;
}
.quote blockquote {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink);
}
.quote figcaption {
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--violet-800);
}
.quote figcaption span {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.74rem;
  color: var(--ink-soft);
}

/* ---------- reach ---------- */
.section-reach .wrap { position: relative; z-index: 1; }
.city-ticker {
  margin-top: 48px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
}
.city-track {
  display: inline-flex;
  gap: 34px;
  padding-right: 34px;
  will-change: transform;
  animation: lane-scroll 60s linear infinite;
}
.city-track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 34px;
}
.city-track span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}
.reach-note {
  margin-top: 34px;
  font-size: 0.95rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  max-width: none;
}

/* ---------- final CTA ---------- */
.final {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 50% 120%, rgba(199, 255, 77, 0.14), transparent 60%),
    linear-gradient(165deg, var(--violet-800), var(--violet-900));
  color: #fff;
  padding: clamp(88px, 12vw, 140px) 0;
  text-align: center;
}
.final-blob {
  position: absolute;
  width: 520px;
  height: 520px;
  left: 50%;
  top: -260px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(108, 76, 240, 0.5);
  filter: blur(100px);
  pointer-events: none;
}
.final-inner { position: relative; z-index: 1; }
.final h2 { font-size: clamp(2.4rem, 6vw, 4rem); }
.final-lede {
  margin: 20px auto 0;
  max-width: 48ch;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.82);
}
.final .cta-row { justify-content: center; }
.final .store-badges { justify-content: center; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--violet-900);
  color: rgba(255, 255, 255, 0.65);
  border-top: 1px solid var(--line-dark);
  padding: 26px 0;
  font-size: 0.8rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
  flex-wrap: wrap;
}
.footer-nav a { color: rgba(255, 255, 255, 0.75); }
.footer-nav a:hover { color: var(--accent); }
.footer-legal { width: 100%; }

/* ---------- live activity split (requests vs listings) ---------- */
.activity-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
}
.activity-split::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--line-light) 15%, var(--line-light) 85%, transparent);
}
.activity-col { padding: 0 24px; min-width: 0; }
.activity-col:first-child { padding-left: 0; }
.activity-col:last-child { padding-right: 0; }
.activity-head h3 { font-size: 0.96rem; display: flex; align-items: center; gap: 7px; }
.activity-stat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-top: 5px;
}
.activity-stat .pulse-dot { background: var(--violet-600); box-shadow: 0 0 0 0 rgba(108, 76, 240, 0.5); }
.activity-stat b { color: var(--violet-800); font-family: var(--font-display); font-size: 0.82rem; }

.feed-viewport {
  height: 400px;
  overflow: hidden;
  position: relative;
  margin-top: 12px;
  mask-image: linear-gradient(180deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 8%, #000 92%, transparent);
}
.feed-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
  will-change: transform;
  animation: feed-scroll 32s linear infinite;
}
.feed-col-rev .feed-track { animation-direction: reverse; }
@keyframes feed-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, -50%, 0); }
}
.feed-card {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--surface);
  border: 1px solid var(--line-light);
  border-radius: 10px;
  padding: 7px 9px;
}
.feed-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  background: var(--tt);
  overflow: hidden;
}
.feed-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feed-body { min-width: 0; flex: 1; }
.feed-body h4 {
  font-family: var(--font-display);
  font-size: 0.76rem;
  margin: 0 0 2px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.feed-meta { font-size: 0.66rem; color: var(--ink-soft); display: flex; gap: 5px; align-items: center; flex-wrap: wrap; }
.feed-tag { flex: 0 0 auto; font-size: 0.58rem; font-weight: 700; padding: 2px 7px; border-radius: 999px; }
.feed-tag-want { background: rgba(108, 76, 240, 0.1); color: var(--violet-800); }
.feed-tag-sell { background: var(--accent-soft); color: #4d7a00; }

.activity-cta { margin-top: 16px; }

/* ---------- trust strip ---------- */
.how-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 820px) { .how-columns { grid-template-columns: 1fr; } }
.how-col { background: var(--surface); border: 1px solid var(--line-light); border-radius: 18px; padding: 26px; }
.how-col h3 { font-size: 1.25rem; margin: 0 0 18px; }
.how-step { display: flex; align-items: flex-start; gap: 12px; margin-top: 16px; }
.how-step:first-of-type { margin-top: 0; }
.how-num {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--violet-900);
  font-weight: 800;
  font-size: 0.78rem;
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.how-ic { font-size: 1.5rem; flex: 0 0 auto; line-height: 1; }
.how-step strong { display: block; font-size: 0.95rem; color: var(--ink); }
.how-step span:last-child { display: block; font-size: 0.82rem; color: var(--ink-soft); margin-top: 2px; }
.example-card {
  background: var(--surface);
  border: 1px solid var(--line-light);
  border-radius: 18px;
  overflow: hidden;
}
.example-img { display: block; width: 100%; height: 200px; object-fit: cover; }
.example-body { padding: 20px 24px 24px; }
.example-body h4 { font-size: 1.1rem; margin: 8px 0 2px; }
.example-caption { margin-top: 12px; font-size: 0.85rem; color: var(--ink-soft); line-height: 1.5; }
.example-offers {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--line-light);
}
.example-offers-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.example-offer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--ink);
  border-top: 1px solid var(--line-light);
}
.example-offer-row:first-of-type { border-top: none; }
.example-offer-row strong { font-family: var(--font-display); font-weight: 700; }
.example-offer-row.is-accepted { color: var(--ink); }
.example-accepted-chip {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--violet-900);
  font-size: 0.66rem;
  font-weight: 800;
  vertical-align: middle;
}
.example-flow {
  margin-top: 10px;
  font-size: 0.76rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.example-flow strong { color: var(--ink); }

.hero-app-corner {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 7px 14px 7px 12px;
  cursor: not-allowed;
}
.hero-app-corner-label { font-size: 0.68rem; font-weight: 700; color: #fff; white-space: nowrap; opacity: 0.9; }
.hero-app-corner-icons { display: flex; gap: 6px; }
.hero-app-corner-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 0.85rem;
  line-height: 1;
  opacity: 0.85;
}
@media (max-width: 640px) {
  .hero-app-corner { top: 12px; right: 12px; padding: 5px 9px 5px 8px; gap: 6px; }
  .hero-app-corner-label { display: none; }
  .hero-app-corner-icon { width: 22px; height: 22px; font-size: 0.72rem; }
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line-light);
  border-radius: 12px;
  padding: 12px 14px;
}
.trust-badge .ic { font-size: 1.1rem; flex: 0 0 auto; }
.trust-badge strong { display: block; font-size: 0.78rem; }
.trust-badge span { display: block; font-size: 0.7rem; color: var(--ink-soft); margin-top: 2px; }

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: calc(var(--d, 0) * 90ms);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .lane-track, .ticker-track, .city-track, .feed-track { animation: none !important; }
  .hero-blob-b { animation: none; }
  .storefront { animation: none; }
  .step-num { animation: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .activity-split { grid-template-columns: 1fr; }
  .activity-split::before { display: none; }
  .activity-col { padding: 0; }
  .activity-col + .activity-col { margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--line-light); }
  .feed-viewport { height: 320px; }
}

@media (max-width: 960px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 12px 24px 20px;
    background: rgba(32, 18, 80, 0.96);
    border-bottom: 1px solid var(--line-dark);
  }
  .nav-menu:not([hidden]) { display: flex; }
  .nav-menu a {
    color: #fff;
    padding: 12px 0;
    border-bottom: 1px solid var(--line-dark);
    font-weight: 500;
  }
  .nav-menu a:last-child { border-bottom: 0; margin-top: 8px; }

  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .sellers-grid { grid-template-columns: 1fr; gap: 48px; }
  .trust-grid, .quotes { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-nav { margin-left: 0; }
}

@media (max-width: 620px) {
  body { font-size: 14px; }
  .wrap { width: min(1160px, 100% - 32px); }
  .steps { grid-template-columns: 1fr; }
  .header-actions .btn { display: none; }
  .store-badges .badge { width: 100%; }
  .store-badges .badge svg { width: 100%; height: auto; }
  .t-card { width: 118px; }
}
