#seller-public-landing {
  --sl-orange: #f5a623;
  --sl-orange-dark: #df8610;
  --sl-orange-soft: #fff7e8;
  --sl-green: #5bad3e;
  --sl-ink: #18212f;
  --sl-muted: #667085;
  --sl-line: #e7eaf0;
  display: none;
  width: 100%;
  min-height: 100vh;
  background: #fff;
  color: var(--sl-ink);
  font-family: 'Nunito', sans-serif;
  overflow-x: hidden;
}

#seller-public-landing *,
#seller-public-landing *::before,
#seller-public-landing *::after {
  box-sizing: border-box;
}

.sl-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.sl-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--sl-line);
  backdrop-filter: blur(12px);
}

.sl-nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sl-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--sl-ink);
  text-decoration: none;
  font-size: 20px;
  font-weight: 900;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.sl-brand img {
  width: 132px;
  max-height: 48px;
  display: block;
  object-fit: contain;
  background: transparent;
  border: 0;
  box-shadow: none;
  outline: 0;
  mix-blend-mode: multiply;
}

.sl-links {
  display: none;
}

.sl-links a {
  display: block;
  color: #344054;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.sl-menu-item {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #344054;
  text-align: left;
  text-decoration: none;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.sl-links a:hover,
.sl-menu-item:hover { color: var(--sl-orange-dark); }

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

.sl-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 9px;
  text-decoration: none;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.sl-btn:hover { transform: translateY(-1px); }
.sl-btn-primary {
  background: var(--sl-orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(245, 166, 35, .24);
}
.sl-btn-primary:hover { background: var(--sl-orange-dark); }
.sl-btn-outline {
  background: #fff;
  color: var(--sl-orange-dark);
  border-color: var(--sl-orange);
}

.sl-menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--sl-line);
  border-radius: 9px;
  background: #fff;
  color: var(--sl-ink);
  font-size: 20px;
  cursor: pointer;
}

.sl-nav.open .sl-links {
  position: absolute;
  top: calc(100% + 8px);
  right: max(20px, calc((100vw - 1180px) / 2));
  width: min(310px, calc(100vw - 32px));
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 0;
  padding: 10px;
  border: 1px solid var(--sl-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(16, 24, 40, .14);
}

.sl-nav.open .sl-links a,
.sl-nav.open .sl-menu-item {
  padding: 13px 12px;
  border-radius: 10px;
}

.sl-nav.open .sl-links a:hover,
.sl-nav.open .sl-menu-item:hover {
  background: var(--sl-orange-soft);
}

.sl-hero {
  position: relative;
  background:
    radial-gradient(circle at 78% 25%, rgba(91, 173, 62, .14), transparent 24%),
    linear-gradient(120deg, #fffaf1 0%, #fff 56%, #f4faef 100%);
  border-bottom: 1px solid #f3eadc;
}

.sl-hero-grid {
  min-height: 570px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 54px;
  padding: 72px 0;
}

.sl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #8a570b;
  background: #fff0cf;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.sl-hero h1 {
  max-width: 690px;
  margin: 18px 0 18px;
  font-size: clamp(38px, 5.1vw, 66px);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.sl-accent { color: var(--sl-orange-dark); }

.sl-hero-copy {
  max-width: 620px;
  color: var(--sl-muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.sl-hero-actions .sl-btn { min-height: 50px; padding: 0 26px; }

.sl-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: #475467;
  font-size: 13px;
  font-weight: 800;
}

.sl-trust-row span::before {
  content: '✓';
  color: var(--sl-green);
  margin-right: 7px;
  font-weight: 900;
}

.sl-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: visible;
}

.sl-dashboard-card {
  width: min(470px, 100%);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 28px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 28px 70px rgba(28, 38, 54, .14);
  transform: none;
}

.sl-dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.sl-dashboard-title { font-size: 17px; font-weight: 900; }
.sl-live-pill {
  padding: 6px 10px;
  color: #2f7d24;
  background: #edf8e9;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.sl-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.sl-metric {
  padding: 16px 12px;
  border-radius: 14px;
  background: #f8fafc;
}
.sl-metric b { display: block; font-size: 20px; }
.sl-metric span { color: var(--sl-muted); font-size: 10px; font-weight: 800; }

.sl-chart {
  height: 130px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 20px 8px 0;
}
.sl-chart i {
  flex: 1;
  min-height: 22px;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, var(--sl-orange), #ffd88e);
}

.sl-floating-box {
  position: absolute;
  padding: 13px 16px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(25, 35, 50, .14);
  font-size: 13px;
  font-weight: 900;
}
.sl-floating-box.one { top: 28px; right: 0; color: #2f7d24; }
.sl-floating-box.two { bottom: 34px; left: 0; color: #9a5b00; }

.sl-section { padding: 86px 0; }
.sl-section-soft { background: #f8fafc; }
.sl-section-warm { background: var(--sl-orange-soft); }

.sl-section-head {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}
.sl-section-head h2 {
  margin-bottom: 12px;
  font-size: clamp(29px, 4vw, 42px);
  line-height: 1.15;
}
.sl-section-head p {
  color: var(--sl-muted);
  font-size: 16px;
  line-height: 1.65;
}

.sl-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.sl-card {
  min-height: 188px;
  padding: 24px;
  border: 1px solid var(--sl-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 24, 40, .04);
}
.sl-card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 13px;
  background: var(--sl-orange-soft);
  font-size: 22px;
}
.sl-card h3 { margin-bottom: 8px; font-size: 17px; }
.sl-card p { color: var(--sl-muted); font-size: 13px; line-height: 1.6; }

.sl-why {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.sl-why-copy h2 { margin: 14px 0; font-size: clamp(30px, 4vw, 44px); }
.sl-why-copy p { color: var(--sl-muted); font-size: 16px; line-height: 1.7; }
.sl-why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sl-why-item {
  padding: 22px;
  border: 1px solid #f0dfbf;
  border-radius: 16px;
  background: #fff;
}
.sl-why-item b { display: block; margin-bottom: 5px; }
.sl-why-item span { color: var(--sl-muted); font-size: 13px; line-height: 1.55; }

.sl-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.sl-step { position: relative; padding: 0 14px; text-align: center; }
.sl-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 2px;
  background: #f5c876;
}
.sl-step-num {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--sl-orange);
  color: #fff;
  font-weight: 900;
}
.sl-step h3 { margin-bottom: 6px; font-size: 15px; }
.sl-step p { color: var(--sl-muted); font-size: 12px; line-height: 1.5; }

.sl-upload-steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.sl-upload-step { position: relative; min-height: 126px; padding: 20px 12px; border: 1px solid var(--sl-line); border-radius: 16px; background: #fff; text-align: center; box-shadow: 0 8px 24px rgba(16, 24, 40, .04); }
.sl-upload-step:not(:last-child)::after { content: '↓'; position: absolute; right: -11px; top: 48px; z-index: 2; color: var(--sl-orange-dark); font-size: 16px; transform: rotate(-90deg); }
.sl-upload-step span { width: 30px; height: 30px; display: grid; place-items: center; margin: 0 auto 12px; border-radius: 50%; background: var(--sl-orange); color: #fff; font-size: 13px; font-weight: 900; }
.sl-upload-step h3 { margin: 0; font-size: 14px; line-height: 1.4; }

.sl-benefit-panels { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.sl-benefit-panel { padding: 24px; border: 1px solid var(--sl-line); border-radius: 18px; background: #fff; box-shadow: 0 8px 24px rgba(16, 24, 40, .04); }
.sl-benefit-panel-wide { grid-column: 1 / -1; }
.sl-benefit-panel h3 { margin: 0 0 15px; font-size: 18px; }
.sl-title-icon { display: inline-block; font-size: .78em; line-height: 1; vertical-align: .08em; }
.sl-tick-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 18px; margin: 0; padding: 0; list-style: none; }
.sl-tick-list li { position: relative; padding-left: 21px; color: #475467; font-size: 13px; line-height: 1.5; }
.sl-tick-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--sl-green); font-size: 12px; font-weight: 900; }
.sl-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sl-stat-grid article { min-height: 104px; display: grid; place-items: center; padding: 20px; border: 1px solid var(--sl-line); border-radius: 16px; background: #fff; text-align: center; }
.sl-stat-grid strong { font-size: 15px; }
.sl-comparison-scroll { width: 100%; overflow-x: auto; border: 1px solid var(--sl-line); border-radius: 16px; }
.sl-comparison-table { width: 100%; min-width: 620px; border-collapse: collapse; background: #fff; }
.sl-comparison-table th, .sl-comparison-table td { padding: 16px 20px; border-bottom: 1px solid var(--sl-line); text-align: center; font-size: 14px; white-space: normal; }
.sl-comparison-table th:first-child, .sl-comparison-table td:first-child { width: 42%; text-align: left; }
.sl-comparison-table th { background: var(--sl-orange-soft); color: var(--sl-ink); font-weight: 900; }
.sl-comparison-table tbody tr:last-child td { border-bottom: 0; }
.sl-yes, .sl-no { font-size: 15px; font-weight: 900; }
.sl-yes { color: #16a34a; } .sl-no { color: #dc2626; }
.sl-policy-note { margin: 10px 2px 0; color: var(--sl-muted); font-size: 11px; line-height: 1.5; }
.sl-testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sl-testimonial-grid blockquote { margin: 0; padding: 24px; border: 1px solid var(--sl-line); border-radius: 18px; background: #fff; color: #475467; font-size: 14px; line-height: 1.7; box-shadow: 0 8px 24px rgba(16, 24, 40, .04); }

.sl-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.sl-category {
  width: 100%;
  text-align: left;
  font: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
  padding: 14px 18px;
  border: 1px solid var(--sl-line);
  border-radius: 14px;
  background: #fff;
  color: var(--sl-ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}
.sl-category::after { content: '›'; color: var(--sl-orange-dark); font-size: 22px; }
.sl-category-loading {
  grid-column: 1 / -1;
  padding: 28px;
  color: var(--sl-muted);
  text-align: center;
}

.sl-faq { max-width: 860px; margin: 0 auto; }
.sl-faq details {
  border-bottom: 1px solid var(--sl-line);
  background: #fff;
}
.sl-faq summary {
  padding: 20px 6px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
}
.sl-faq p {
  padding: 0 6px 20px;
  color: var(--sl-muted);
  line-height: 1.65;
}

.sl-contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  border-radius: 24px;
  background: var(--sl-ink);
  color: #fff;
}
.sl-contact-card h2 { margin-bottom: 8px; font-size: 31px; }
.sl-contact-card p { max-width: 660px; color: #cbd5e1; }

.sl-footer {
  padding: 46px 0 28px;
  background: #111827;
  color: #e5e7eb;
}
.sl-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 38px;
}
.sl-footer h4 { margin-bottom: 12px; color: #fff; }
.sl-footer p, .sl-footer a {
  color: #aab4c3;
  font-size: 14px;
  line-height: 1.8;
  text-decoration: none;
}
.sl-footer a {
  display: block;
  width: fit-content;
  margin-left: -8px;
  padding: 4px 8px;
  border-radius: 7px;
  transition: color .18s ease, background-color .18s ease, transform .18s ease;
}
.sl-footer a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .09);
  transform: translateX(3px);
}
.sl-footer a:active {
  background: rgba(255, 255, 255, .15);
  transform: translateX(3px) scale(.98);
}
.sl-footer a:focus-visible {
  color: #fff;
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}

.sl-footer .sl-instagram-link,
.sl-footer .sl-support-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sl-footer .sl-instagram-link i,
.sl-footer .sl-support-link i {
  width: 18px;
  font-size: 18px;
  text-align: center;
}

.sl-footer .sl-instagram-link i { color: #e1306c; }
.sl-footer .sl-support-link i { color: #f59e0b; font-size: 14px; }
.sl-footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid #2f3948;
  color: #8994a4;
  font-size: 12px;
}

@media (max-width: 980px) {
  .sl-nav-inner { flex-wrap: nowrap; }
  .sl-hero-grid { grid-template-columns: 1fr; padding: 58px 0; }
  .sl-visual { min-height: 370px; }
  .sl-card-grid { grid-template-columns: repeat(2, 1fr); }
  .sl-why { grid-template-columns: 1fr; }
  .sl-steps { grid-template-columns: repeat(3, 1fr); gap: 28px 0; }
  .sl-step:nth-child(3)::after { display: none; }
  .sl-category-grid { grid-template-columns: repeat(2, 1fr); }
  .sl-footer-grid { grid-template-columns: 1fr 1fr; }
  .sl-upload-steps { grid-template-columns: repeat(3, 1fr); }
  .sl-upload-step:nth-child(3)::after { display: none; }
  .sl-stat-grid { grid-template-columns: repeat(2, 1fr); }
  .sl-testimonial-grid { grid-template-columns: 1fr; }
}

@media (min-width: 641px) {
  .sl-hero-grid { padding-top: 26px; padding-bottom: 26px; }
  .sl-hero-grid > div:first-child { align-self: start; }
  .sl-section { padding: 28px 0; }
  .sl-section-head { margin-bottom: 32px; }
  #sl-support { padding-bottom: 20px; }
  .sl-contact-card {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    padding: 28px 22px;
    border: 1px solid var(--sl-line);
    border-radius: 24px;
    background: #fff;
    color: var(--sl-ink);
    box-shadow: 0 8px 24px rgba(16, 24, 40, .08);
  }
  .sl-contact-card p { color: var(--sl-muted); }
  .sl-contact-card .sl-btn { width: auto; }
}

@media (max-width: 640px) {
  .sl-shell { width: min(100% - 28px, 1180px); }
  .sl-nav-inner { min-height: 66px; gap: 10px; }
  .sl-brand img { width: 108px; }
  .sl-nav-actions { gap: 7px; }
  .sl-nav-actions .sl-btn {
    min-height: 38px;
    padding: 0 10px;
    font-size: 12px;
  }
  .sl-menu-toggle {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
  .sl-nav.open .sl-links {
    right: 14px;
    width: calc(100vw - 28px);
  }
  .sl-hero-grid { min-height: auto; gap: 26px; padding: 20px 0 54px; }
  .sl-hero h1 { font-size: 39px; }
  .sl-hero-copy { font-size: 16px; }
  .sl-hero-actions { flex-direction: column; }
  .sl-hero-actions .sl-btn { width: 100%; }
  .sl-visual { min-height: 310px; }
  .sl-dashboard-card { padding: 18px; border-radius: 20px; transform: none; }
  .sl-floating-box { font-size: 11px; padding: 10px 12px; }
  .sl-floating-box.one { top: 0; }
  .sl-floating-box.two { bottom: 0; }
  .sl-section { padding: 16px 0; }
  .sl-section-head { margin-bottom: 16px; }
  .sl-section-head h2:last-child { margin-bottom: 0; }
  .sl-card-grid, .sl-why-list, .sl-category-grid { grid-template-columns: 1fr; }
  .sl-steps { grid-template-columns: 1fr; gap: 20px; }
  .sl-step { display: grid; grid-template-columns: 50px 1fr; column-gap: 14px; text-align: left; }
  .sl-step-num { grid-row: 1 / 3; margin: 0; }
  .sl-step:not(:last-child)::after {
    top: 52px;
    bottom: -20px;
    left: 24px;
    width: 2px;
    height: auto;
  }
  #sl-support { padding-bottom: 20px; }
  .sl-contact-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 22px;
    border: 1px solid var(--sl-line);
    background: #fff;
    color: var(--sl-ink);
    box-shadow: 0 8px 24px rgba(16, 24, 40, .08);
  }
  .sl-contact-card p { color: var(--sl-muted); }
  .sl-contact-card .sl-btn { width: 100%; }
  .sl-footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .sl-upload-steps, .sl-benefit-panels, .sl-stat-grid { grid-template-columns: 1fr; }
  .sl-upload-step { min-height: 92px; }
  .sl-upload-step:not(:last-child)::after, .sl-upload-step:nth-child(3)::after { display: block; right: 50%; top: auto; bottom: -18px; transform: none; }
  .sl-benefit-panel-wide { grid-column: auto; }
  .sl-tick-list { grid-template-columns: 1fr; }
  .sl-comparison-scroll { overflow: hidden; }
  .sl-comparison-table { width: 100%; min-width: 0; table-layout: fixed; }
  .sl-comparison-table th, .sl-comparison-table td {
    padding: 10px 5px;
    font-size: 10.5px;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .sl-comparison-table th:first-child, .sl-comparison-table td:first-child { width: 42%; }
  .sl-comparison-table th:nth-child(2), .sl-comparison-table td:nth-child(2),
  .sl-comparison-table th:nth-child(3), .sl-comparison-table td:nth-child(3) { width: 29%; }
  .sl-comparison-table .sl-yes, .sl-comparison-table .sl-no { font-size: 13px; }
}
