/* ============================================================
   Pallet, marketing site
   Ink #101820 · Blue #246BFE · Fog #F4F6F8 · White #FFFFFF
   ============================================================ */

:root {
  --ink: #101820;
  --blue: #246BFE;
  --blue-dark: #1A56D6;
  --blue-tint: #EBF1FF;
  --fog: #F4F6F8;
  --white: #FFFFFF;
  --gray-700: #3D4754;
  --gray-600: #5B6572;
  --gray-500: #7A8494;
  --gray-300: #D8DEE5;
  --gray-200: #E6EAEF;
  --gray-100: #EEF1F4;
  --green: #1B9E62;
  --green-tint: #E7F6EE;
  --amber: #B07A10;
  --amber-tint: #FCF3DF;
  --radius: 14px;
  --radius-lg: 18px;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Plus Jakarta Sans", -apple-system, sans-serif;
  --shadow-sm: 0 1px 2px rgba(16, 24, 32, 0.05);
  --shadow-md: 0 2px 6px rgba(16, 24, 32, 0.05), 0 12px 32px rgba(16, 24, 32, 0.07);
  --shadow-lg: 0 4px 12px rgba(16, 24, 32, 0.06), 0 32px 80px rgba(16, 24, 32, 0.14);
  --container: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3 { font-family: var(--font-display); }

h1, h2, h3 { text-wrap: balance; }

h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

/* numeric discipline: stats, prices, and feed amounts align like a real product */
.hero-proof strong,
.app-lot-price,
.app-count,
.feed-item strong {
  font-variant-numeric: tabular-nums;
}

::selection { background: rgba(36, 107, 254, 0.18); }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 13px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease,
    transform 0.18s ease, box-shadow 0.18s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(16, 24, 32, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(36, 107, 254, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.14); }

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--gray-300);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: var(--gray-500); }

.btn-ink {
  background: var(--ink);
  color: var(--white);
}
.btn-ink:hover { background: #1E2935; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(16, 24, 32, 0.22); }

.btn-ghost {
  background: transparent;
  color: var(--gray-700);
  padding: 13px 14px;
}
.btn-ghost:hover { color: var(--ink); }

.btn-lg { font-size: 16px; padding: 16px 28px; border-radius: 12px; }
.btn-sm { font-size: 13px; padding: 10px 16px; border-radius: 8px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 15px;
  color: var(--blue);
}
.text-link svg { width: 17px; height: 17px; transition: transform 0.18s ease; }
.text-link:hover svg { transform: translateX(3px); }

/* ---------- Eyebrows & badges ---------- */

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow-blue { color: var(--blue); }
.eyebrow-light { color: #7FA6FF; }

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-700);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 8px 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 26px;
}
.eyebrow-pill svg { width: 16px; height: 16px; color: var(--blue); }

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 22px;
  font-size: 10.5px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: .055em;
  text-transform: uppercase;
  padding: 4px 7px;
  border-radius: 5px;
  border: 1px solid var(--gray-200);
  background: #fff;
  color: var(--gray-700);
  white-space: nowrap;
}
.badge-blue { border-color: rgba(36, 107, 254, .24); background: #F8FAFF; color: var(--blue-dark); }
.badge-green { border-color: rgba(27, 158, 98, .24); background: #F8FCFA; color: #14784B; }
.badge-amber { border-color: rgba(176, 122, 16, .24); background: #FFFCF5; color: #94640A; }
.badge-gray { border-color: var(--gray-200); background: #F9FAFB; color: var(--gray-600); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: 0 4px 24px rgba(16, 24, 32, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 72px;
}

#marketplace, #how-it-works, #trust, #sellers, #buyers, #get-started {
  scroll-margin-top: 100px;
}

body:has(.video-market-hero) .site-header {
  position: fixed;
  top: 12px;
  left: 50%;
  width: min(1224px, calc(100% - 48px));
  transform: translateX(-50%);
  border: 1px solid rgba(255,255,255,.30);
  border-radius: 12px;
  background: rgba(255,255,255,.21);
  box-shadow: 0 16px 48px rgba(0,0,0,.15);
  color: var(--white);
  backdrop-filter: blur(24px) saturate(130%);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
}

body:has(.video-market-hero) .site-header.scrolled {
  border-color: rgba(16,24,32,.08);
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 60px rgba(16,24,32,.12);
}

body:has(.video-market-hero) .site-header.scrolled .brand-mark {
  filter: none;
}

body:has(.video-market-hero) .site-header.scrolled .brand-word,
body:has(.video-market-hero) .site-header.scrolled .main-nav a,
body:has(.video-market-hero) .site-header.scrolled .btn-ghost {
  color: var(--gray-700);
}

body:has(.video-market-hero) .site-header.scrolled .main-nav a:hover,
body:has(.video-market-hero) .site-header.scrolled .btn-ghost:hover {
  color: var(--ink);
}

body:has(.video-market-hero) .site-header.scrolled .main-nav a::after {
  background: var(--ink);
}

body:has(.video-market-hero) .header-inner {
  height: 72px;
  padding: 0 18px;
}

body:has(.video-market-hero) .site-header .brand-mark {
  filter: brightness(0) invert(1);
}

body:has(.video-market-hero) .site-header .brand-word,
body:has(.video-market-hero) .main-nav a,
body:has(.video-market-hero) .btn-ghost {
  color: rgba(255,255,255,.88);
}

body:has(.video-market-hero) .main-nav a:hover,
body:has(.video-market-hero) .btn-ghost:hover {
  color: var(--white);
}

body:has(.video-market-hero) .main-nav a::after {
  background: rgba(255,255,255,.84);
}

body:has(.video-market-hero) .btn-ink {
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(36,107,254,.42);
}

.btn-nav-action { gap: 9px; padding-left: 18px; padding-right: 17px; }
.btn-nav-action span { font-size: 18px; line-height: 1; transition: transform .18s ease; }
.btn-nav-action:hover span { transform: translateX(3px); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-mark { width: 27px; height: auto; }
.brand-word {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.brand-light .brand-word { color: var(--white); }

.main-nav {
  display: flex;
  gap: 30px;
  margin-left: 8px;
}
.main-nav a {
  position: relative;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 4px 0;
  transition: color 0.15s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: right 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { right: 0; }

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gray-200);
  border-radius: 9px;
  background: var(--white);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 10px 28px 24px;
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
}
.mobile-nav a:not(.btn) {
  padding: 13px 0;
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-nav-actions {
  display: flex;
  gap: 10px;
  padding-top: 18px;
}
.mobile-nav-actions .btn { flex: 1; }

/* ---------- Hero ---------- */

.hero {
  background:
    radial-gradient(1000px 420px at 50% -150px, rgba(36, 107, 254, 0.08), transparent 64%),
    linear-gradient(180deg, #F9FBFE 0%, var(--fog) 100%),
    var(--fog);
  padding: 64px 0 0;
  overflow: hidden;
}

.hero-copy {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.04;
}

.hero-sub {
  max-width: 640px;
  margin: 20px auto 0;
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.6;
  color: var(--gray-600);
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-500);
}

.hero-proof {
  width: min(680px, 100%);
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  background: rgba(255,255,255,.74);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-proof div {
  padding: 15px 18px;
  border-left: 1px solid var(--gray-200);
}
.hero-proof div:first-child { border-left: 0; }
.hero-proof strong {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.hero-proof span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
}

/* ---------- Hero app mockup ---------- */

.hero-visual {
  position: relative;
  margin-top: 38px;
  padding-bottom: 0;
}

.app-window {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-bottom: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  font-size: 13px;
}

.app-topbar {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 13px 20px;
  border-bottom: 1px solid var(--gray-100);
}
.app-topbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.app-topbar-brand img { width: 18px; }

.app-tabs { display: flex; gap: 20px; }
.app-tabs span {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
  padding: 4px 0;
}
.app-tabs span.active {
  color: var(--ink);
  font-weight: 600;
  box-shadow: inset 0 -2px 0 var(--blue);
}

.app-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--gray-500);
  background: var(--fog);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 7px 12px;
  min-width: 230px;
}
.app-search svg { width: 14px; height: 14px; }

.app-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-body {
  display: grid;
  grid-template-columns: 208px 1fr 264px;
}

/* Sidebar */
.app-sidebar {
  border-right: 1px solid var(--gray-100);
  padding: 18px 18px 24px;
}
.app-side-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 16px;
}
.app-side-head span { font-size: 12px; font-weight: 500; color: var(--blue); }

.app-filter-group { margin-bottom: 18px; }
.app-filter-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gray-500);
  margin-bottom: 9px;
}

.app-check {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: var(--gray-700);
  padding: 4.5px 0;
}
.app-check em {
  margin-left: auto;
  font-style: normal;
  font-size: 11px;
  color: var(--gray-500);
}
.app-check .box {
  width: 15px;
  height: 15px;
  border: 1.5px solid var(--gray-300);
  border-radius: 4.5px;
  flex-shrink: 0;
  position: relative;
}
.app-check.checked .box {
  background: var(--blue);
  border-color: var(--blue);
}
.app-check.checked .box::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1.2px;
  width: 4px;
  height: 8px;
  border: solid var(--white);
  border-width: 0 1.8px 1.8px 0;
  transform: rotate(45deg);
}
.app-check.checked { color: var(--ink); font-weight: 500; }

.app-chip-row { display: flex; gap: 6px; }
.app-chip {
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid var(--gray-300);
  color: var(--gray-600);
}
.app-chip.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

/* Main list */
.app-main { padding: 18px 20px 24px; min-width: 0; }

.app-main-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}
.app-main-head strong { font-size: 14.5px; font-weight: 700; }
.app-count { margin-left: 9px; font-size: 12px; color: var(--gray-500); }
.app-sort {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
  border-radius: 7px;
  padding: 5px 10px;
}
.app-sort svg { width: 12px; height: 12px; }

.app-applied {
  display: flex;
  gap: 7px;
  margin-bottom: 14px;
}
.app-applied span {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue-dark);
  background: var(--blue-tint);
  padding: 3.5px 10px;
  border-radius: 999px;
}

.app-lot {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  padding: 12px 12px;
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  margin-bottom: 9px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.app-lot.muted { opacity: 0.82; }

.app-lot-tile {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-lot-tile svg { width: 19px; height: 19px; }

.tile-beauty   { background: #FBEEF0; color: #B04A5E; }
.tile-apparel  { background: #ECEFFB; color: #4A5AB0; }
.tile-home     { background: #FBF3E6; color: #A87A2C; }
.tile-cpg      { background: #EAF5F0; color: #2E7D5B; }
.tile-footwear { background: #EAF2F6; color: #3A7189; }

.app-lot-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v-check { width: 14px; height: 14px; color: var(--blue); flex-shrink: 0; }

.app-lot-meta {
  font-size: 11.5px;
  color: var(--gray-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-lot-price { text-align: right; }
.app-lot-price .ask { font-size: 14px; font-weight: 700; letter-spacing: -0.01em; }
.app-lot-price .msrp { font-size: 11px; color: var(--gray-500); }

.app-lot-status {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  min-width: 104px;
}
.app-lot-status em {
  font-style: normal;
  font-size: 11px;
  color: var(--gray-500);
}

/* Activity panel */
.app-activity {
  border-left: 1px solid var(--gray-100);
  padding: 18px 18px 24px;
  background: #FBFCFD;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(27, 158, 98, 0.18);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(27, 158, 98, 0.18); }
  50% { box-shadow: 0 0 0 6px rgba(27, 158, 98, 0.07); }
}

.feed { display: flex; flex-direction: column; gap: 4px; }
.feed-item {
  display: flex;
  gap: 11px;
  padding: 9px 10px;
  border-radius: 10px;
  transition: background 0.3s ease;
}
.feed-item.flash { background: var(--blue-tint); }
.feed-item strong {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
}
.feed-item div { min-width: 0; font-size: 11.5px; color: var(--gray-600); line-height: 1.45; }
.feed-item em {
  display: block;
  font-style: normal;
  font-size: 10.5px;
  color: var(--gray-500);
  margin-top: 1px;
}

.feed-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.feed-icon svg { width: 13px; height: 13px; }
.fi-blue  { background: var(--blue-tint); color: var(--blue); }
.fi-green { background: var(--green-tint); color: var(--green); }
.fi-ink   { background: var(--gray-100); color: var(--gray-700); }

.verif-card {
  margin-top: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 14px;
  box-shadow: var(--shadow-sm);
}
.verif-head {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gray-500);
  margin-bottom: 7px;
}
.verif-name { font-size: 13.5px; font-weight: 700; margin-bottom: 9px; }
.verif-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--gray-600);
  padding: 2.5px 0;
}
.verif-row svg { width: 13px; height: 13px; color: var(--green); }
.verif-card .badge { margin-top: 10px; }

/* Floating card */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 13px 18px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
}
.float-card strong { display: block; font-size: 13.5px; font-weight: 700; }
.float-card span:not(.float-icon) { font-size: 12px; color: var(--gray-500); }

.float-deal {
  left: 2px;
  bottom: 46px;
  animation: floaty 5s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.float-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--green-tint);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-icon svg { width: 16px; height: 16px; }

/* ---------- Trust strip ---------- */

.category-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  background: var(--fog);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 10px 20px;
  transition: border-color 0.18s ease, color 0.18s ease;
}
.cat-chip:hover { border-color: var(--gray-300); color: var(--ink); }
.cat-chip svg { width: 17px; height: 17px; color: var(--gray-500); }

/* ---------- Split sections (sellers / buyers) ---------- */

.split-section { padding: 112px 0; background: var(--white); }
.split-section.split-alt { background: var(--fog); }

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  align-items: center;
}

.split-copy h2 { margin-bottom: 18px; }

.section-sub {
  font-size: 17px;
  color: var(--gray-600);
  margin-bottom: 34px;
  max-width: 480px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 38px;
}
.feature-list li { display: flex; gap: 16px; }
.feature-list strong {
  display: block;
  font-size: 15.5px;
  font-weight: 650;
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}
.feature-list span:not(.feature-icon) {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.55;
}

.feature-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 11px;
  background: var(--blue-tint);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 20px; height: 20px; }

/* Split visuals */
.split-visual { position: relative; }

.panel-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 26px;
  max-width: 470px;
  margin: 0 auto;
}
.split-alt .panel-card { box-shadow: var(--shadow-lg); }

.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.panel-head strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.015em;
}
.panel-sub {
  display: block;
  font-size: 12.5px;
  color: var(--gray-500);
  margin-top: 3px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid var(--gray-100);
}
.toggle-row strong { display: block; font-size: 14px; font-weight: 600; }
.toggle-row span:not(.toggle) { font-size: 12px; color: var(--gray-500); }

.toggle {
  width: 38px;
  height: 22px;
  border-radius: 999px;
  background: var(--gray-300);
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.toggle::after {
  content: "";
  position: absolute;
  top: 2.5px;
  left: 3px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(16, 24, 32, 0.25);
  transition: left 0.2s ease;
}
.toggle.on { background: var(--blue); }
.toggle.on::after { left: 18px; }

.panel-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--gray-100);
  font-size: 12.5px;
  color: var(--gray-500);
}
.panel-save {
  font-weight: 600;
  color: var(--white);
  background: var(--ink);
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 12.5px;
}

.mini-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 16px 18px;
  width: 250px;
}

.offer-mini { margin: -20px 0 0 auto; animation: floaty 6s ease-in-out infinite; }
.mini-head {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gray-500);
  margin-bottom: 7px;
}
.mini-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.mini-line strong { font-size: 19px; font-weight: 800; letter-spacing: -0.02em; }
.mini-sub { font-size: 11.5px; color: var(--gray-500); margin-top: 4px; }
.mini-actions { display: flex; gap: 8px; margin-top: 12px; }
.mini-accept, .mini-counter {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 0;
  border-radius: 8px;
}
.mini-accept { background: var(--blue); color: var(--white); }
.mini-counter { border: 1px solid var(--gray-300); color: var(--gray-700); }

/* Buyer lot-detail visual */
.lot-detail { max-width: 490px; }

.lot-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.lot-stats div {
  background: var(--fog);
  border-radius: 10px;
  padding: 11px 12px;
}
.lot-stats em {
  display: block;
  font-style: normal;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  margin-bottom: 3px;
}
.lot-stats strong { font-size: 13.5px; font-weight: 700; letter-spacing: -0.01em; white-space: nowrap; }

.manifest-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  border: 1px dashed var(--gray-300);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 18px;
}
.manifest-row svg { width: 17px; height: 17px; color: var(--gray-500); flex-shrink: 0; }
.manifest-row span {
  margin-left: auto;
  font-weight: 600;
  color: var(--blue);
  font-size: 12.5px;
}

.lot-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.reserve-link { font-size: 13px; font-weight: 600; color: var(--gray-600); }

.private-mini {
  margin: -20px auto 0 0;
  display: flex;
  gap: 12px;
  align-items: center;
  width: 300px;
  animation: floaty 6s ease-in-out infinite;
}
.private-mini strong { display: block; font-size: 13px; font-weight: 700; }
.private-mini span:not(.mini-lock) { font-size: 11.5px; color: var(--gray-500); }
.mini-lock {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--blue-tint);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mini-lock svg { width: 16px; height: 16px; }

/* ---------- How it works ---------- */

.how-section { background: var(--white); padding: 112px 0; }

.section-head { max-width: 620px; margin-bottom: 58px; }
.section-head p { margin-top: 16px; font-size: 17px; color: var(--gray-600); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step-card {
  position: relative;
  background: var(--fog);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px 28px 32px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.04em;
  margin-bottom: 44px;
}
.step-num::after {
  content: "";
  display: block;
  width: 34px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--blue);
  margin-top: 10px;
  opacity: 0.35;
}
.step-card h3 {
  font-size: 19px;
  font-weight: 750;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin-bottom: 10px;
}
.step-card p { font-size: 14.5px; color: var(--gray-600); }

/* ---------- Trust & control (dark) ---------- */






















/* ---------- Marketplace-led landing ---------- */

.market-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 68px;
  background:
    radial-gradient(980px 520px at 82% 20%, rgba(36, 107, 254, .12), transparent 62%),
    linear-gradient(180deg, #FFFFFF 0%, #F7F9FC 56%, #EEF3F8 100%);
}

.video-market-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 136px 0 78px;
  color: var(--white);
  background: var(--ink);
}

.hero-video-stage,
.hero-bg-video,
.hero-video-scrim {
  position: absolute;
  inset: 0;
}

.hero-video-stage {
  z-index: 0;
  overflow: hidden;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 1.4s ease, transform 9s ease;
}

.hero-bg-video.active {
  opacity: 1;
  transform: scale(1);
}

.hero-video-scrim {
  z-index: 1;
  background:
    radial-gradient(900px 520px at 50% 42%, rgba(36, 107, 254, .10), transparent 60%),
    linear-gradient(180deg, rgba(16,24,32,.52) 0%, rgba(16,24,32,.44) 48%, rgba(16,24,32,.78) 100%),
    rgba(16,24,32,.36);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

.video-market-hero .market-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.video-market-hero .market-hero-copy {
  max-width: 840px;
}

.video-market-hero .market-hero-copy h1 {
  max-width: 840px;
  margin: 0 auto;
  color: var(--white);
  font-size: 98px;
  line-height: .95;
  letter-spacing: 0;
  text-shadow: 0 20px 70px rgba(0,0,0,.28);
}

.video-market-hero .market-hero-copy p {
  max-width: 610px;
  margin: 26px auto 0;
  color: rgba(255,255,255,.82);
  font-size: 20px;
  line-height: 1.48;
}

.video-market-hero .market-hero-actions {
  justify-content: center;
  margin-top: 30px;
}

.video-market-hero .btn-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.12);
  box-shadow: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.video-market-hero .btn-secondary:hover {
  border-color: rgba(255,255,255,.68);
}

.inventory-target {
  width: min(1040px, 100%);
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  margin-top: 40px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 16px;
  background: rgba(16,24,32,.22);
  color: rgba(255,255,255,.92);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 22px 80px rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  text-align: left;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.inventory-target:hover {
  border-color: rgba(255,255,255,.62);
  background: rgba(16,24,32,.34);
  transform: translateY(-1px);
}

.inventory-target-query {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.inventory-target-query > span,
.inventory-target strong {
  font-size: 17px;
  line-height: 1.2;
}

.inventory-target-query > span {
  color: rgba(255,255,255,.78);
}

.inventory-target strong {
  color: var(--white);
  font-weight: 650;
  transition: opacity .18s ease, transform .18s ease;
}

.inventory-target strong.is-changing {
  opacity: 0;
  transform: translateY(4px);
}

.inventory-target-go {
  margin-left: auto;
  flex: 0 0 auto;
  color: rgba(255,255,255,.88);
  font-size: 12px;
  font-weight: 700;
}

.inventory-target-go span {
  display: inline-block;
  margin-left: 6px;
  font-size: 17px;
  transition: transform .18s ease;
}

.inventory-target:hover .inventory-target-go span {
  transform: translateX(3px);
}

.video-market-hero .hero-market-rail {
  width: min(1040px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
  align-items: stretch;
}

.video-market-hero .market-opportunity,
.video-market-hero .market-opportunity.card-large {
  height: 388px;
  min-height: 0;
  border-color: rgba(255,255,255,.34);
  border-radius: 14px;
  background: rgba(16,24,32,.18);
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: heroCardRise .82s cubic-bezier(.2,.8,.2,1) both;
}

.video-market-hero .market-opportunity:nth-child(2) { animation-delay: .08s; }
.video-market-hero .market-opportunity:nth-child(3) { animation-delay: .16s; }

@keyframes heroCardRise {
  from { opacity: 0; transform: translateY(18px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.video-market-hero .market-card-image,
.video-market-hero .card-large .market-card-image {
  height: 128px;
  min-height: 128px;
  flex: 0 0 128px;
  position: relative;
  overflow: hidden;
  border-bottom-color: rgba(255,255,255,.22);
  background-image: none;
}

.video-market-hero .market-card-image.tile-beauty {
  background-image: url("assets/lot-beauty.jpg");
  background-size: cover;
  background-position: center;
}

.video-market-hero .market-card-image video,
.video-market-hero .market-card-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(.98) contrast(1.04);
}

.video-market-hero .market-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(16,24,32,.28));
}

.video-market-hero .market-card-body {
  padding: 16px 16px 15px;
  color: var(--white);
  text-align: left;
}

.video-market-hero .market-card-top {
  color: rgba(255,255,255,.68);
  font-size: 11px;
  margin-bottom: 8px;
}

.video-market-hero .market-card-top strong {
  color: var(--white);
}

.video-market-hero .market-card-body h2 {
  color: var(--white);
  font-size: 25px;
  letter-spacing: 0;
}

.video-market-hero .market-card-body p {
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.4;
}

.video-market-hero .market-card-foot {
  margin-top: auto;
  gap: 6px;
  padding-top: 12px;
}

.video-market-hero .market-card-foot span {
  color: rgba(255,255,255,.9);
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 11px;
}

.video-market-hero .market-card-foot span + span::before {
  content: "·";
  margin-right: 6px;
  color: rgba(255,255,255,.48);
}

.video-market-hero .market-opportunity {
  color: inherit;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.video-market-hero .market-opportunity:hover {
  border-color: rgba(255,255,255,.60);
  background: rgba(16,24,32,.30);
  box-shadow: 0 28px 90px rgba(0,0,0,.30);
  transform: translateY(-3px);
}

.market-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--gray-200);
}

.market-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 392px;
  gap: 46px;
  align-items: end;
}

.market-hero-copy h1 {
  max-width: 720px;
  font-size: clamp(52px, 6.9vw, 88px);
  line-height: .92;
  letter-spacing: -0.062em;
  font-weight: 800;
}

.market-hero-copy p {
  max-width: 560px;
  margin-top: 28px;
  color: var(--gray-600);
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.55;
}

.market-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.market-finder {
  border: 1px solid rgba(16, 24, 32, .12);
  background: rgba(255,255,255,.78);
  box-shadow: 0 24px 70px rgba(16, 24, 32, .10);
  border-radius: 18px;
  padding: 24px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.finder-line {
  display: grid;
  gap: 4px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}

.finder-line span {
  color: var(--gray-500);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.finder-line strong {
  font-family: var(--font-display);
  font-size: 31px;
  line-height: 1.05;
  letter-spacing: -.045em;
}

.finder-cats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.finder-cats a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-700);
  transition: border-color .18s ease, color .18s ease, transform .18s ease;
}

.finder-cats a:hover {
  border-color: rgba(36,107,254,.42);
  color: var(--blue);
  transform: translateY(-1px);
}

.finder-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin-top: 20px;
  color: var(--gray-500);
  font-size: 12.5px;
  font-weight: 600;
}

.hero-market-rail {
  display: grid;
  grid-template-columns: 1.24fr .88fr .88fr;
  gap: 18px;
  margin-top: 46px;
}

.market-opportunity {
  min-height: 364px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(16, 24, 32, .10);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(16, 24, 32, .08);
}

.market-opportunity.card-large {
  min-height: 398px;
}

.market-card-image {
  min-height: 160px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--gray-100);
}

.card-large .market-card-image {
  min-height: 204px;
}

.market-card-image.tile-beauty { background-image: url("assets/lot-beauty.jpg"); }
.market-card-image.tile-apparel { background-image: url("assets/lot-apparel.jpg"); }
.market-card-image.tile-footwear { background-image: url("assets/lot-footwear.jpg"); }

.market-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.market-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.market-card-top strong {
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
}

.market-card-body h2 {
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.04;
  letter-spacing: -.048em;
}

.market-card-body p {
  margin-top: 12px;
  color: var(--gray-600);
  font-size: 14.5px;
  line-height: 1.5;
}

.market-card-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
}

.market-card-foot span {
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 6px 9px;
  color: var(--gray-700);
  background: #fff;
  font-size: 11.5px;
  font-weight: 750;
}

.market-proof {
  padding: 0;
  background: #fff;
}

.market-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
}

.market-proof-grid div {
  min-height: 128px;
  padding: 30px 28px;
  border-right: 1px solid var(--gray-200);
}

.market-proof-grid div:last-child { border-right: 0; }

.market-proof-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.05em;
}

.market-proof-grid span {
  display: block;
  margin-top: 9px;
  color: var(--gray-500);
  font-size: 13px;
  font-weight: 700;
}

.market-intro {
  padding: 96px 0;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 76px;
  align-items: start;
}

.intro-title h2,
.access-copy h2,
.ops-head h2 {
  font-size: 68px;
  line-height: .96;
  letter-spacing: 0;
}

.intro-copy p,
.access-copy p,
.ops-head p {
  color: var(--gray-600);
  font-size: 18px;
  line-height: 1.72;
}

.operator-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-200);
}

@media (min-width: 1121px) {
  .operator-row { margin-top: 54px; }
}

.operator-row span {
  position: relative;
  padding: 0 14px;
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 750;
}

.operator-row span:first-child { padding-left: 0; }
.operator-row span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 1px;
  height: 14px;
  background: var(--gray-300);
}

.access-section {
  padding: 96px 0;
  background: #F5F5F5;
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(320px, .58fr) minmax(0, 1fr);
  gap: 92px;
  align-items: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  min-height: 35px;
  margin-bottom: 20px;
  padding: 0 15px;
  border: 1px solid rgba(16,24,32,.10);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 8px 22px rgba(16,24,32,.09);
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 650;
}

.access-copy p {
  margin: 24px 0 30px;
  max-width: 460px;
}

.category-board {
  position: relative;
}

.category-board::before {
  content: "";
  position: absolute;
  inset: 22px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.74);
  box-shadow: 0 30px 80px rgba(16,24,32,.08);
}

.category-board-frame {
  position: relative;
  height: 492px;
  padding: 30px 22px 30px;
  border-radius: 28px;
  background: rgba(255,255,255,.62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
  overflow: hidden;
}

.category-scroll-track {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  will-change: transform;
  animation: category-market-scroll 22s linear infinite;
}

.category-row-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.category-board:hover .category-scroll-track,
.category-board:focus-within .category-scroll-track {
  animation-play-state: paused;
}

@keyframes category-market-scroll {
  from { transform: translateY(0); }
  to { transform: translateY(calc(-50% - 8px)); }
}

.category-row-card {
  position: relative;
  z-index: 1;
  min-height: 74px;
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  padding: 14px 18px;
  border: 1px solid rgba(16,24,32,.055);
  border-radius: 10px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 12px 24px rgba(16,24,32,.10);
}

.category-row-card img {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px #fff, 0 6px 14px rgba(16,24,32,.18);
}

.category-row-card h3 {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: clamp(20px, 2.1vw, 27px);
  font-weight: 650;
  letter-spacing: -.055em;
}

.category-row-card.muted {
  opacity: .62;
}

.demand-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.demand-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  animation: demand-blink-blue 2s ease-out infinite;
}

.demand-pill.hot::before {
  background: var(--green);
  animation-name: demand-blink-green;
}

@keyframes demand-blink-blue {
  0%   { box-shadow: 0 0 0 0 rgba(36,107,254,.55); }
  70%  { box-shadow: 0 0 0 6px rgba(36,107,254,0); }
  100% { box-shadow: 0 0 0 0 rgba(36,107,254,0); }
}

@keyframes demand-blink-green {
  0%   { box-shadow: 0 0 0 0 rgba(27,158,98,.55); }
  70%  { box-shadow: 0 0 0 6px rgba(27,158,98,0); }
  100% { box-shadow: 0 0 0 0 rgba(27,158,98,0); }
}

@media (prefers-reduced-motion: reduce) {
  .demand-pill::before { animation: none; }
}

.ops-section {
  padding: 96px 0;
  background: var(--white);
}

.ops-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 56px;
}

.ops-head p {
  padding-bottom: 8px;
}

.ops-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--gray-200);
  border-left: 1px solid var(--gray-200);
}

.ops-step {
  min-height: 280px;
  padding: 28px 24px;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: linear-gradient(180deg, #fff 0%, #FBFCFD 100%);
}

.ops-step span {
  display: block;
  margin-bottom: 80px;
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.ops-step h3 {
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.045em;
}

.ops-step p {
  margin-top: 12px;
  color: var(--gray-600);
  font-size: 14.5px;
  line-height: 1.55;
}

.audience-section { padding: 28px 0 112px; overflow: hidden; background: var(--white); }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.audience-card {
  position: relative;
  isolation: isolate;
  min-height: 660px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  overflow: clip;
  border: 1px solid #DCE3EB;
  border-radius: 20px;
  padding: 54px 42px 42px;
  background: #fff;
  text-align: center;
  transition: border-color .24s ease, box-shadow .24s ease;
}

.audience-copy { position: relative; z-index: 3; }
.audience-card .section-tag {
  min-height: 46px;
  margin: 0;
  padding: 0 19px;
  border-color: rgba(16,24,32,.12);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(16,24,32,.11);
  color: var(--gray-600);
  font-size: 15px;
  font-weight: 700;
}
.audience-card h2 {
  max-width: 470px;
  margin: 34px auto 0;
  font-size: clamp(48px, 4.2vw, 62px);
  line-height: .9;
  letter-spacing: -.068em;
}
.audience-card p {
  max-width: 455px;
  margin: 26px auto 0;
  color: var(--gray-600);
  font-size: 17px;
  line-height: 1.58;
}

.audience-products {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: visible;
  pointer-events: none;
}

.audience-product {
  position: absolute;
  display: block;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(16,24,32,.16));
  transform: translate3d(var(--product-x, 0), var(--product-y, 0), 0) rotate(var(--product-rotate, 0deg));
  transform-origin: 50% 80%;
}

.audience-sellers .product-left {
  z-index: 2;
  left: -38px;
  bottom: -42px;
  width: 178px;
  --product-rotate: -7deg;
}
.audience-sellers .product-right {
  z-index: 1;
  right: -112px;
  bottom: 72px;
  width: 366px;
  --product-rotate: 7deg;
}

.audience-buyers .product-left {
  z-index: 1;
  left: -18px;
  bottom: -28px;
  width: 360px;
  --product-rotate: 0deg;
}
.audience-buyers .product-right {
  z-index: 2;
  right: -8px;
  bottom: -8px;
  width: 170px;
  --product-rotate: 0deg;
}

.audience-action {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 214px;
  min-height: 54px;
  margin: 0;
  padding: 15px 24px;
  border-radius: 10px;
  box-shadow: 0 16px 28px rgba(36,107,254,.22);
  font-size: 16px;
}
.audience-action span { font-size: 18px; line-height: 1; transition: transform .18s ease; }
.audience-action:hover { transform: translate(-50%, -1px); }
.audience-action:active { transform: translate(-50%, 1px); }
.audience-action:hover span { transform: translateX(3px); }

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .audience-product { transition: transform .38s cubic-bezier(.2,.8,.2,1), filter .38s ease; }
  .audience-card:hover {
    border-color: rgba(36,107,254,.25);
    box-shadow: 0 24px 54px rgba(16,24,32,.10);
  }
  .audience-card:hover .product-left { --product-x: -5px; --product-y: -5px; }
  .audience-card:hover .product-right { --product-x: 5px; --product-y: -6px; }
}

/* ---------- Marketplace preview ---------- */

.market-section { background: var(--fog); padding: 112px 0 96px; }

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 46px;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.lot-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.lot-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.lot-card-tile {
  position: relative;
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lot-card-tile svg { width: 38px; height: 38px; opacity: 0.85; }
.lot-card-tile .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}
.lot-card-tile .badge.badge-blue  { color: var(--blue-dark); }
.lot-card-tile .badge.badge-green { color: var(--green); }
.lot-card-tile .badge.badge-amber { color: var(--amber); }
.lot-card-tile .badge.badge-gray  { color: var(--gray-600); }

.lot-card-body { padding: 18px 18px 16px; }
.lot-card-cat {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  margin-bottom: 5px;
}
.lot-card-body h3 {
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin-bottom: 14px;
  min-height: 42px;
}

.lot-card-stats {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 0;
  border-top: 1px solid var(--gray-100);
  margin-bottom: 12px;
}
.lot-card-stats div { display: flex; justify-content: space-between; }
.lot-card-stats dt { font-size: 12.5px; color: var(--gray-500); }
.lot-card-stats dd { font-size: 12.5px; font-weight: 650; }
.lot-card-stats dd.hl { color: var(--blue-dark); }

.lot-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}
.verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-700);
}
.verified-tag svg { width: 14px; height: 14px; color: var(--blue); }
.lot-offers { font-size: 12px; color: var(--gray-500); }

.market-note {
  margin-top: 30px;
  font-size: 12.5px;
  color: var(--gray-500);
  text-align: center;
}

/* ---------- Closing CTA ---------- */

.cta-dark { padding: 16px 0 100px; background: var(--white); }
.cta-blue-panel {
  position: relative;
  min-height: 440px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(480px, 1.05fr);
  overflow: hidden;
  border-radius: 20px;
  background: #3157F6;
  color: var(--white);
}
.cta-blue-panel::before {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  left: -260px;
  top: -400px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
}
.cta-blue-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 68px 0 68px 92px;
}
.cta-blue-kicker {
  display: block;
  margin-bottom: 24px;
  color: rgba(255,255,255,.70);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.cta-blue-copy h2 {
  font-size: clamp(44px, 4.4vw, 68px);
  line-height: .94;
  letter-spacing: -.058em;
}
.cta-blue-copy p {
  max-width: 420px;
  margin-top: 20px;
  color: rgba(255,255,255,.86);
  font-size: 16px;
  line-height: 1.55;
}
.cta-blue-actions { display: flex; gap: 10px; margin-top: 28px; }
.btn-light-action, .btn-black-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn-light-action { background: #fff; color: var(--blue); box-shadow: 0 8px 16px rgba(18,37,128,.20); }
.btn-black-action { background: #101820; color: #fff; box-shadow: 0 8px 16px rgba(18,37,128,.18); }
.btn-light-action span, .btn-black-action span { font-size: 18px; line-height: 1; }
.btn-light-action:hover, .btn-black-action:hover { transform: translateY(-2px); }

.cta-inventory-stack {
  position: relative;
  min-height: 440px;
  margin-right: -28px;
}
.cta-lot-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 214px;
  height: 238px;
  border: 2px solid rgba(255,255,255,.24);
  border-radius: 14px;
  background: #111923;
  box-shadow: 0 18px 34px rgba(8,26,110,.28);
  color: #fff;
}
.cta-lot-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 32%, rgba(8,13,22,.82) 100%); pointer-events: none; }
.cta-lot-card img { width: 100%; height: 100%; object-fit: cover; }
.cta-lot-card div { position: absolute; z-index: 1; left: 16px; right: 16px; bottom: 15px; display: grid; gap: 3px; }
.cta-lot-card span { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.74); }
.cta-lot-card strong { font-size: 18px; line-height: 1.05; letter-spacing: -.03em; }
.cta-lot-card small { font-size: 11px; color: rgba(255,255,255,.78); }
.cta-lot-one { left: 3%; top: -70px; transform: rotate(-2deg); }
.cta-lot-two { left: 42%; top: 18px; height: 266px; transform: rotate(1.5deg); }
.cta-lot-three { left: 4%; top: 208px; height: 238px; transform: rotate(2deg); }
.cta-lot-four { left: 42%; top: 310px; transform: rotate(-2deg); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: #9AA6B5;
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}

.footer-brand p {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.65;
  max-width: 280px;
}
.footer-brand .brand-mark { width: 24px; }

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  padding: 5.5px 0;
  color: #9AA6B5;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 26px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #9AA6B5;
}
.footer-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(27, 158, 98, 0.18);
}

/* ---------- Reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-deal, .offer-mini, .private-mini { animation: none; }
  .live-dot { animation: none; }
  .category-scroll-track { animation: none; }
  .audience-product { transition: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1120px) {
  body:has(.video-market-hero) .site-header {
    width: min(920px, calc(100% - 32px));
  }
  .video-market-hero {
    min-height: min(860px, 94svh);
    padding: 108px 0 46px;
  }
  .video-market-hero .market-hero-copy h1 {
    font-size: 68px;
  }
  .video-market-hero .hero-market-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .video-market-hero .hero-market-rail .market-opportunity:first-child {
    grid-column: auto;
  }
  .market-hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .market-hero-copy h1 {
    max-width: 820px;
  }
  .market-finder {
    max-width: 720px;
  }
  .hero-market-rail {
    grid-template-columns: 1fr 1fr;
  }
  .hero-market-rail .market-opportunity:first-child {
    grid-column: 1 / -1;
  }
  .market-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .market-proof-grid div:nth-child(2) {
    border-right: 0;
  }
  .market-proof-grid div:nth-child(-n+2) {
    border-bottom: 1px solid var(--gray-200);
  }
  .intro-grid,
  .access-grid,
  .ops-head {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .access-copy p,
  .ops-head p {
    max-width: 680px;
  }
  .ops-flow {
    grid-template-columns: repeat(2, 1fr);
  }
  .app-body { grid-template-columns: 190px 1fr; }
  .app-activity { display: none; }
  .market-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-col:nth-child(5) { display: none; }
}

@media (min-width: 701px) and (max-height: 820px) {
  .video-market-hero {
    min-height: 94svh;
    padding: 96px 0 42px;
  }
  .video-market-hero .market-hero-copy h1 { font-size: 70px; }
  .video-market-hero .market-hero-copy p { margin-top: 14px; }
  .video-market-hero .market-hero-actions { margin-top: 18px; }
  .inventory-target { min-height: 50px; margin-top: 20px; }
  .video-market-hero .market-opportunity,
  .video-market-hero .market-opportunity.card-large { height: 270px; }
  .video-market-hero .market-card-image,
  .video-market-hero .card-large .market-card-image {
    height: 96px;
    min-height: 96px;
    flex-basis: 96px;
  }
}

@media (min-width: 701px) and (max-width: 1120px) {
  .video-market-hero .market-card-body p { display: none; }
}

@media (max-width: 960px) {
  .main-nav, .header-actions { display: none; }
  .nav-toggle { width: 44px; height: 44px; display: inline-flex; }
  .mobile-nav.open { display: flex; }

  .split-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .split-reverse .split-visual { order: 2; }
  .split-reverse .split-copy { order: 1; }
  .section-sub { max-width: none; }

  .steps-grid { grid-template-columns: 1fr; }
  .cta-blue-panel { grid-template-columns: 1fr 1fr; }
  .cta-blue-copy { padding-left: 48px; }
  .cta-inventory-stack { margin-right: -80px; }
  .app-search { display: none; }
}

@media (max-width: 860px) {
  .audience-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
  }
  .audience-card {
    min-height: 700px;
  }
}

@media (max-width: 700px) {
  body:has(.video-market-hero) .site-header {
    top: 12px;
    width: calc(100% - 24px);
    border-radius: 12px;
  }
  body:has(.video-market-hero) .header-inner {
    height: 56px;
    padding: 0 10px;
  }
  body:has(.video-market-hero) .site-header .brand-word {
    font-size: 18px;
  }
  body:has(.video-market-hero) .site-header .brand-mark {
    width: 22px;
  }
  body:has(.video-market-hero) .nav-toggle {
    width: 44px;
    height: 44px;
    border-color: rgba(255,255,255,.28);
    background: rgba(255,255,255,.16);
  }
  body:has(.video-market-hero) .nav-toggle span {
    background: var(--white);
  }
  body:has(.video-market-hero) .site-header.scrolled .nav-toggle {
    border-color: rgba(16,24,32,.14);
    background: rgba(255,255,255,.9);
    box-shadow: 0 4px 12px rgba(16,24,32,.08);
  }
  body:has(.video-market-hero) .site-header.scrolled .nav-toggle span {
    background: var(--ink);
  }
  body:has(.video-market-hero) .mobile-nav {
    border: 1px solid rgba(255,255,255,.22);
    border-top: 0;
    border-radius: 0 0 12px 12px;
    background: rgba(16,24,32,.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  body:has(.video-market-hero) .mobile-nav a:not(.btn) {
    color: rgba(255,255,255,.88);
    border-bottom-color: rgba(255,255,255,.1);
  }
  .market-hero.video-market-hero {
    min-height: min(800px, 94svh);
    padding: 90px 0 28px;
  }
  .video-market-hero .market-hero-copy h1 {
    max-width: 100%;
    font-size: 48px;
    line-height: .98;
    letter-spacing: 0;
  }
  .video-market-hero .market-hero-copy p {
    margin-top: 14px;
    font-size: 16px;
  }
  .video-market-hero .market-hero-actions {
    flex-wrap: nowrap;
    margin-top: 18px;
  }
  .video-market-hero .market-hero-actions .btn {
    flex: 1 1 0;
    padding-left: 12px;
    padding-right: 12px;
  }
  .inventory-target {
    min-height: 56px;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 11px 14px;
    border-radius: 10px;
  }
  .inventory-target-query {
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
  }
  .inventory-target-query > span,
  .inventory-target strong {
    font-size: 14px;
  }
  .inventory-target-go {
    font-size: 0;
  }
  .inventory-target-go span {
    margin-left: 0;
    font-size: 18px;
  }
  .video-market-hero .hero-market-rail {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .video-market-hero .hero-market-rail .market-opportunity:first-child {
    grid-column: auto;
  }
  .video-market-hero .market-opportunity:nth-child(n+2) {
    display: none;
  }
  .video-market-hero .market-opportunity,
  .video-market-hero .market-opportunity.card-large {
    height: 295px;
  }
  .video-market-hero .market-card-image,
  .video-market-hero .card-large .market-card-image,
  .video-market-hero .market-card-image video,
  .video-market-hero .market-card-image img {
    min-height: 108px;
    height: 108px;
    flex-basis: 108px;
  }
  .market-hero {
    padding: 48px 0 44px;
  }
  .market-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(42px, 14.2vw, 58px);
    line-height: .94;
    letter-spacing: -.055em;
  }
  .market-hero-copy p {
    margin-top: 20px;
    font-size: 17px;
  }
  .market-hero-actions {
    margin-top: 26px;
  }
  .market-hero-actions .btn {
    flex: 1 1 100%;
  }
  .market-finder {
    display: none;
  }
  .hero-market-rail {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 34px;
  }
  .hero-market-rail .market-opportunity:first-child {
    grid-column: auto;
  }
  .market-opportunity,
  .market-opportunity.card-large {
    min-height: 0;
  }
  .market-card-image,
  .card-large .market-card-image {
    min-height: 168px;
  }
  .market-card-body {
    padding: 18px;
  }
  .market-card-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .market-card-body h2 {
    font-size: 25px;
  }
  .video-market-hero .market-card-top {
    align-items: center;
    flex-direction: row;
    gap: 8px;
  }
  .video-market-hero .market-card-body p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .video-market-hero .market-card-foot { padding-top: 10px; }
  .market-proof-grid {
    grid-template-columns: 1fr;
    border-left: 0;
    border-right: 0;
  }
  .market-proof-grid div,
  .market-proof-grid div:nth-child(2),
  .market-proof-grid div:nth-child(-n+2) {
    min-height: 0;
    padding: 24px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--gray-200);
  }
  .market-proof-grid strong {
    font-size: 34px;
  }
  .market-intro,
  .access-section,
  .ops-section {
    padding: 76px 0;
  }
  .intro-title h2,
  .access-copy h2,
  .ops-head h2 {
    font-size: 44px;
    line-height: 1;
    letter-spacing: 0;
  }
  .intro-copy p,
  .access-copy p,
  .ops-head p {
    font-size: 16px;
  }
  .operator-row span {
    flex: 0 1 auto;
    padding: 0;
    text-align: left;
  }
  .operator-row { gap: 10px 18px; }
  .operator-row span + span::before { display: none; }
  .section-tag {
    margin-bottom: 16px;
  }
  .category-board::before {
    inset: 18px 14px;
    border-radius: 20px;
  }
  .category-board-frame {
    height: 462px;
    padding: 42px 12px 18px;
    border-radius: 20px;
  }
  .category-scroll-track,
  .category-row-group {
    gap: 12px;
  }
  .category-board-frame::before,
  .category-board-frame::after {
    left: 32px;
    right: 32px;
  }
  .category-row-card {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    min-height: 76px;
    padding: 13px 14px;
  }
  .category-row-card img {
    width: 36px;
    height: 36px;
  }
  .category-row-card h3 {
    font-size: 20px;
  }
  .demand-pill {
    grid-column: 2;
    justify-self: start;
    min-height: 24px;
    padding: 0 9px;
    font-size: 10.5px;
  }
  .ops-flow {
    grid-template-columns: 1fr;
  }
  .ops-step {
    min-height: 0;
  }
  .ops-step span {
    margin-bottom: 42px;
  }
  .audience-section {
    padding: 12px 0 74px;
  }
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .audience-card {
    min-height: 620px;
    padding: 38px 24px;
    border-radius: 16px;
  }
  .audience-card .section-tag {
    min-height: 42px;
    padding-inline: 17px;
    font-size: 14px;
  }
  .audience-card h2 {
    max-width: 520px;
    margin-top: 27px;
    font-size: clamp(43px, 9.4vw, 56px);
  }
  .audience-card p {
    max-width: 500px;
    margin-top: 20px;
    font-size: 15.5px;
  }
  .audience-action {
    bottom: 34px;
  }
  .audience-sellers .product-left { left: -34px; bottom: -40px; width: 154px; }
  .audience-sellers .product-right { right: -88px; bottom: 68px; width: 318px; }
  .audience-buyers .product-left { left: -14px; bottom: -10px; width: 320px; }
  .audience-buyers .product-right { right: -6px; bottom: -6px; width: 160px; }
  .hero { padding-top: 56px; }
  .hero-ctas .btn { flex: 1 1 200px; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof div { border-left: 0; border-top: 1px solid var(--gray-200); }
  .hero-proof div:first-child { border-top: 0; }

  .app-body { grid-template-columns: 1fr; }
  .app-sidebar { display: none; }
  .app-tabs { display: none; }
  .app-lot {
    grid-template-columns: 40px minmax(0, 1fr) auto;
  }
  .app-lot-price { display: none; }
  .app-lot-title { white-space: normal; line-height: 1.3; }

  .float-deal { display: none; }
  .offer-mini, .private-mini {
    width: auto;
    max-width: 470px;
    margin: 14px auto 0;
    animation: none;
  }

  .market-grid { grid-template-columns: 1fr; }
  .lot-card-body h3 { min-height: 0; }
  .lot-stats { grid-template-columns: repeat(2, 1fr); }

  .section-head-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .cta-dark { padding: 8px 0 74px; }
  .cta-blue-panel { grid-template-columns: 1fr; min-height: 680px; border-radius: 14px; }
  .cta-blue-copy { padding: 54px 26px 0; }
  .cta-blue-copy h2 { font-size: clamp(43px, 13vw, 58px); }
  .cta-blue-copy p { font-size: 15px; }
  .cta-blue-actions { flex-wrap: wrap; }
  .cta-inventory-stack { min-height: 350px; margin: 18px -80px 0 0; }
  .cta-lot-card { width: 176px; height: 208px; }
  .cta-lot-two { left: 39%; height: 234px; }
  .cta-lot-three { top: 170px; }
  .cta-lot-four { left: 39%; top: 270px; }
  .container { padding: 0 20px; }
}

@media (max-width: 430px) {
  .audience-section { padding-bottom: 58px; }
  .audience-grid { gap: 16px; }
  .audience-card {
    min-height: 560px;
    padding: 30px 18px;
  }
  .audience-card h2 {
    margin-top: 23px;
    font-size: clamp(38px, 11.5vw, 46px);
  }
  .audience-card p {
    margin-top: 17px;
    font-size: 14.5px;
    line-height: 1.55;
  }
  .audience-action {
    width: calc(100% - 44px);
    min-width: 0;
    bottom: 24px;
  }
  .audience-sellers .product-left { left: -24px; bottom: -34px; width: 112px; }
  .audience-sellers .product-right { right: -66px; bottom: 76px; width: 220px; }
  .audience-buyers .product-left { left: -20px; bottom: -24px; width: 300px; }
  .audience-buyers .product-right { right: -8px; bottom: -2px; width: 136px; }

  .cta-dark { padding-bottom: 56px; }
  .cta-blue-panel { min-height: 0; }
  .cta-blue-copy { padding: 40px 20px 0; }
  .cta-blue-kicker { margin-bottom: 18px; }
  .cta-blue-copy h2 { font-size: clamp(38px, 12vw, 48px); }
  .cta-blue-copy p { margin-top: 15px; }
  .cta-blue-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 20px;
  }
  .btn-light-action,
  .btn-black-action { justify-content: center; min-height: 44px; }
  .cta-inventory-stack {
    min-height: 280px;
    margin: 10px -46px -12px 0;
  }
  .cta-lot-card { width: 140px; height: 170px; }
  .cta-lot-one { left: 2%; top: -8px; }
  .cta-lot-two { left: 47%; top: 18px; height: 188px; }
  .cta-lot-three { left: 8%; top: 148px; }
  .cta-lot-four { display: none; }
}

/* ---------- Testimonials ---------- */

.testi-section {
  background: var(--fog);
  padding: 112px 0;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testi-card {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  border-radius: 22px;
  padding: 34px 32px;
  border: 1px solid transparent;
}

.testi-blue  { background: var(--blue); color: var(--white); }
.testi-ink   { background: var(--ink); color: var(--white); }
.testi-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.testi-pill {
  align-self: flex-start;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: auto;
}
.testi-blue .testi-pill,
.testi-ink .testi-pill {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}
.testi-light .testi-pill {
  background: var(--fog);
  color: var(--gray-700);
}

.testi-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.7vw, 21px);
  font-weight: 700;
  letter-spacing: -0.017em;
  line-height: 1.36;
  margin: 30px 0 26px;
}

.testi-card figcaption {
  display: flex;
  align-items: center;
  gap: 13px;
}
.testi-card figcaption strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
}
.testi-card figcaption span:not(.testi-avatar) {
  font-size: 12.5px;
}
.testi-blue figcaption span:not(.testi-avatar),
.testi-ink figcaption span:not(.testi-avatar) { color: rgba(255, 255, 255, 0.72); }
.testi-light figcaption span:not(.testi-avatar) { color: var(--gray-500); }

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.testi-blue .testi-avatar,
.testi-ink .testi-avatar {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}
.testi-light .testi-avatar {
  background: var(--blue-tint);
  color: var(--blue-dark);
}

.testi-section .market-note { margin-top: 30px; }

@media (max-width: 960px) {
  .testi-section { padding: 84px 0; }
  .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .testi-card { min-height: 0; }
}

/* ============================================================
   FOOTER v2 (f2): mono columns · mega brand moment · pill bar
   ============================================================ */
.site-footer.f2 {
  background:
    radial-gradient(900px 460px at 82% 96%, rgba(36, 107, 254, 0.16), transparent 62%),
    #0B1117;
  padding: 84px 0 26px;
  overflow: hidden;
}

.f2-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 30px;
}

.f2-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #7A8494;
  margin-bottom: 18px;
}
.f2-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }

.f2-tag {
  font-size: 15px;
  line-height: 1.6;
  color: #9AA6B5;
  max-width: 320px;
  margin-bottom: 22px;
}

.f2-sub { display: flex; gap: 8px; max-width: 360px; }
.f2-sub input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.f2-sub input::placeholder { color: #5B6572; }
.f2-sub input:focus { border-color: var(--blue); background: rgba(255, 255, 255, 0.08); }
.f2-sub .btn { flex-shrink: 0; }
.f2-sub-note {
  margin-top: 10px;
  font-size: 12px;
  color: #5B6572;
}

.f2-col { display: flex; flex-direction: column; align-items: flex-start; }
.f2-col a {
  display: inline-block;
  font-size: 14.5px;
  padding: 6px 0;
  color: #9AA6B5;
  transition: color 0.15s ease, transform 0.15s ease;
}
.f2-col a:hover { color: #fff; transform: translateX(2px); }
.f2-ext { color: #5B6572; font-size: 12px; }
.f2-col a:hover .f2-ext { color: var(--blue); }

/* mega brand moment */
.f2-mega {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
  justify-content: flex-start;
  padding: 26px 28px 34px;
  position: relative;
  user-select: none;
}
.f2-mega img {
  width: clamp(64px, 10.5vw, 148px);
  height: auto;
  filter: drop-shadow(0 24px 60px rgba(36, 107, 254, 0.35));
}
.f2-word {
  font-family: var(--font-display);
  font-size: clamp(84px, 15vw, 216px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.86;
  color: #fff;
}
.f2-word i { font-style: normal; color: var(--blue); }

/* pill bottom bar */
.f2-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 14px 22px;
  font-size: 13px;
  color: #9AA6B5;
}
.f2-copy { color: #7A8494; }
.f2-legal { display: inline-flex; gap: 22px; }
.f2-legal a { color: #9AA6B5; transition: color 0.15s ease; }
.f2-legal a:hover { color: #fff; }

@media (max-width: 960px) {
  .f2-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .f2-intro { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .site-footer.f2 { padding-top: 60px; }
  .f2-grid { grid-template-columns: 1fr; gap: 30px; }
  .f2-mega { padding: 12px 4px 22px; }
  .f2-bar { justify-content: center; text-align: center; }
}

/* ============================================================
   Trust rows: click-to-expand accordion
   ============================================================ */


/* 2026-07 landing polish: real inventory, restrained controls, defensible proof */
.btn { border-radius: 8px; }
.btn-primary:hover {
  box-shadow: 0 3px 9px rgba(16, 24, 32, .18), inset 0 1px 0 rgba(255, 255, 255, .12);
}
.section-tag { box-shadow: 0 2px 6px rgba(16,24,32,.07); }

.access-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 470px;
  margin-top: 32px;
  border-top: 1px solid var(--gray-200);
  border-left: 1px solid var(--gray-200);
}
.access-proof span {
  min-height: 46px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 13px;
  color: var(--gray-600);
  font-size: 11.5px;
  font-weight: 700;
}
.access-proof span::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.demand-pill { border-radius: 6px; }
.demand-pill::before { animation: none; }

.btn-light-action,
.btn-black-action { border-radius: 7px; box-shadow: 0 2px 5px rgba(18,37,128,.18); }
.btn-light-action:hover,
.btn-black-action:hover { transform: translateY(-1px); }

@media (max-width: 430px) {
  .access-proof { margin-top: 26px; }
  .access-proof span { min-height: 44px; padding-inline: 10px; font-size: 10.5px; }
  .cta-inventory-stack { min-height: 326px; margin-bottom: 0; }
}
