/* ===== Homepage ===== */
/* Depends on style.css for :root tokens, nav, body */

/* ===== Hero ===== */
.hero {
  text-align: center;
  padding: var(--s8) var(--s4) var(--s5);
}
.hero-brand {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700;
  color: var(--ink); letter-spacing: 2px;
}
.hero-tagline {
  font-family: var(--font-body);
  font-size: var(--fs-md); font-weight: 500;
  color: var(--ink-2); margin-top: var(--s2);
  line-height: 1.6;
}

/* ===== Home Search ===== */
.home-search {
  padding: 0 var(--s4) var(--s5);
}
.home-search .search-wrap {
  max-width: 420px; margin: 0 auto;
}
.home-search .search-value-prop {
  text-align: center; font-size: var(--fs-sm);
  color: var(--ink-2); margin-bottom: var(--s4);
  font-weight: 500;
  max-width: 420px; margin-left: auto; margin-right: auto;
}
.home-search .search-hint {
  text-align: center; font-size: var(--fs-xs);
  color: var(--ink-3); margin-top: var(--s2);
  font-family: var(--font-mono); letter-spacing: .2px;
}

/* ===== Example Cards ===== */
.examples {
  padding: 0 var(--s4) var(--s6);
  text-align: center;
}
.examples-label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs); color: var(--ink-3);
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: var(--s3);
}
.example-row {
  display: flex; gap: var(--s3);
  max-width: 420px; margin: 0 auto;
}
.example-card {
  flex: 1; text-decoration: none;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
  display: block;
}
.example-card:hover {
  border-color: var(--brand);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.example-img {
  width: 100%; aspect-ratio: 1/1;
  object-fit: cover; background: #FAFAFA;
  display: block;
}
.example-info {
  padding: var(--s2) var(--s2) var(--s3);
  text-align: left;
}
.example-name {
  font-family: var(--font-body);
  font-size: var(--fs-xs); font-weight: 600;
  color: var(--ink);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.example-tier {
  font-size: 11px; font-weight: 600;
  padding: 1px 6px; border-radius: 3px;
  display: inline-block; margin-top: 4px;
}
.tier-factory  { color: #1E3A5F; background: #D4E4F7; }
.tier-trader   { color: #9CA3AF; background: #F3F4F6; }
.example-price {
  font-family: var(--font-mono);
  font-size: var(--fs-md); font-weight: 700;
  color: var(--seal); margin-top: 2px;
}

/* ===== Seller Reviews (horizontal scroll + snap) ===== */
.reviews {
  padding: 0 0 var(--s6);
}
.reviews-label {
  font-family: var(--font-body);
  font-size: var(--fs-sm); font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--s3);
  width: 400px;
  margin-left: auto; margin-right: auto;
  padding: 0;
}
.review-list {
  width: 400px;
  margin: 0 auto;
  overflow: hidden;
}
.review-track {
  display: flex; flex-wrap: nowrap; gap: var(--s3);
  transition: transform 0.5s ease;
}
.review-card {
  flex: 0 0 400px;
  min-width: 400px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: var(--s3) var(--s4);
}
.review-header {
  display: flex; align-items: flex-start; gap: var(--s3);
  margin-bottom: var(--s2);
}
.review-avatar {
  width: 35px; height: 35px; border-radius: 2px;
  object-fit: cover; border: 1px solid var(--line);
  flex-shrink: 0;
}
.reviewer-meta {
  display: flex; flex-direction: column; gap: 2px;
  padding-top: 3px;
}
.review-body {
  font-family: var(--font-body);
  font-size: var(--fs-sm); font-weight: 400;
  color: var(--ink-3);
  line-height: 1.7;
}
/* Examples help link */
.examples-help-link {
  color: var(--brand); text-decoration: none;
  font-family: var(--font-body); font-weight: 600;
  letter-spacing: 0; text-transform: none;
  margin-left: 4px;
}
.examples-help-link:hover { text-decoration: underline; }

/* ===== Help Page ===== */
.help-section {
  max-width: 420px; margin: 0 auto;
}
.help-hero {
  text-align: center; padding: var(--s6) var(--s4) var(--s5);
}
.help-hero h1 {
  font-family: var(--font-display); font-size: var(--fs-xl); font-weight: 700;
  color: var(--ink); letter-spacing: .5px;
}
.help-step {
  display: flex; gap: var(--s3); padding: var(--s5) var(--s4);
  border-bottom: 1px solid var(--line-soft);
  align-items: flex-start;
}
.help-step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--brand-deep); color: #FFF;
  font-family: var(--font-mono); font-size: var(--fs-md); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.help-step-body { flex: 1; min-width: 0; }
.help-step-body h3 {
  font-size: var(--fs-md); font-weight: 700; color: var(--ink);
  margin-bottom: var(--s1);
}
.help-step-body p {
  font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.7;
}
.help-step-body img {
  width: 100%; max-width: 320px; border-radius: var(--r);
  border: 1px solid var(--line); margin-top: var(--s2);
  background: var(--line-soft);
}
.help-cta {
  text-align: center; padding: var(--s6) var(--s4);
}
.help-cta .btn {
  display: inline-block; padding: 14px 36px; text-decoration: none;
}

/* ===== Responsive ===== */
@media (min-width: 500px) {
  .hero-brand { font-size: 32px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
