@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@500;700;800&family=Sora:wght@400;600;700;800&display=swap");

:root {
  --seller-sunset-1: #ffe1b0;
  --seller-sunset-2: #ffb673;
  --seller-sunset-3: #ff8a5a;
  --seller-sunset-4: #ef6a4d;
  --seller-lime: #c8ff24;
  --seller-lime-strong: #a7f70f;
  --seller-ink: #27180f;
  --seller-muted: #654f43;
  --seller-card: #fff8ef;
  --seller-line: rgba(98, 55, 33, 0.18);
  --seller-soft: #fff2df;
  --seller-soft-lime: #eefcc3;
}

.seller-shell {
  position: relative;
  overflow: hidden;
  padding: 20px 14px 48px;
  color: var(--seller-ink);
  font-family: "Sora", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 246, 210, 0.8) 0%, rgba(255, 246, 210, 0) 42%),
    radial-gradient(circle at 86% 18%, rgba(200, 255, 36, 0.42) 0%, rgba(200, 255, 36, 0) 40%),
    linear-gradient(155deg, var(--seller-sunset-1) 0%, var(--seller-sunset-2) 42%, var(--seller-sunset-3) 74%, var(--seller-sunset-4) 100%);
}

.seller-shell::before,
.seller-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.seller-shell::before {
  width: 340px;
  height: 340px;
  top: -140px;
  right: -88px;
  background: radial-gradient(circle, rgba(200, 255, 36, 0.46) 0%, rgba(200, 255, 36, 0) 72%);
}

.seller-shell::after {
  width: 300px;
  height: 300px;
  left: -120px;
  bottom: -130px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0) 70%);
}

.seller-wrap {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.seller-wrap > * {
  animation: seller-rise 0.58s ease both;
}

.seller-wrap > *:nth-child(2) {
  animation-delay: 0.05s;
}

.seller-wrap > *:nth-child(3) {
  animation-delay: 0.09s;
}

.seller-wrap > *:nth-child(4) {
  animation-delay: 0.13s;
}

.seller-wrap > *:nth-child(5) {
  animation-delay: 0.17s;
}

.seller-wrap > *:nth-child(6) {
  animation-delay: 0.21s;
}

.seller-wrap > *:nth-child(7) {
  animation-delay: 0.25s;
}

.seller-wrap > *:nth-child(8) {
  animation-delay: 0.29s;
}

@keyframes seller-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.seller-hero,
.seller-card,
.seller-panel,
.seller-connect,
.seller-faq,
.seller-related,
.seller-steps,
.seller-checklist,
.seller-proof,
.seller-roadmap,
.seller-intake,
.seller-tools,
.seller-section-head,
.seller-final-cta,
.seller-boost,
.seller-state-cards {
  border: 1px solid var(--seller-line);
  border-radius: 18px;
  background: var(--seller-card);
  box-shadow: 0 18px 38px rgba(56, 28, 12, 0.15);
}

.seller-hero {
  padding: 24px 20px;
  display: grid;
  gap: 13px;
  background:
    linear-gradient(140deg, rgba(255, 248, 233, 0.98), rgba(255, 225, 171, 0.96) 58%, rgba(200, 255, 36, 0.26)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
}

.seller-kicker {
  margin: 0;
  width: max-content;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: #4b2f1f;
  border-radius: 999px;
  padding: 5px 10px;
  border: 1px solid rgba(77, 45, 23, 0.16);
  background: rgba(255, 247, 214, 0.88);
}

.seller-hero h1 {
  margin: 0;
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #2d190f;
}

.seller-hero p {
  margin: 0;
  color: var(--seller-muted);
  line-height: 1.57;
  max-width: 900px;
}

.seller-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.seller-points span {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #203112;
  background: var(--seller-soft-lime);
  border: 1px solid rgba(68, 108, 13, 0.28);
}

.seller-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 3px;
}

.seller-btn {
  border: 0;
  border-radius: 12px;
  padding: 11px 15px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(130deg, #ff7f4d, #e74f3a 78%);
  box-shadow: 0 10px 24px rgba(208, 73, 41, 0.25);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.seller-btn:hover {
  transform: translateY(-1px);
  filter: saturate(1.05);
}

.seller-btn--lime {
  color: #21320f;
  background: linear-gradient(130deg, var(--seller-lime), var(--seller-lime-strong));
  box-shadow: 0 10px 24px rgba(135, 196, 13, 0.3);
}

.seller-btn--ghost {
  color: #4a2f1f;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(80, 45, 22, 0.2);
  box-shadow: none;
}

.seller-proof,
.seller-roadmap,
.seller-intake,
.seller-tools,
.seller-section-head,
.seller-panel,
.seller-steps,
.seller-checklist,
.seller-related,
.seller-faq,
.seller-connect,
.seller-final-cta,
.seller-boost {
  padding: 18px 16px;
}

.seller-proof {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  background: linear-gradient(145deg, #fff7ec 0%, #fff2e0 100%);
}

.seller-proof-card {
  border-radius: 14px;
  border: 1px solid rgba(104, 56, 31, 0.16);
  background: rgba(255, 255, 255, 0.72);
  padding: 12px;
}

.seller-proof-card h3 {
  margin: 0 0 6px;
  font-size: 1.03rem;
  font-family: "Outfit", "Segoe UI", sans-serif;
}

.seller-proof-card p {
  margin: 0;
  color: var(--seller-muted);
  font-size: 14px;
  line-height: 1.48;
}

.seller-roadmap h2,
.seller-intake h2,
.seller-tools h2,
.seller-section-head h2,
.seller-final-cta h2,
.seller-boost h2,
.seller-panel h2,
.seller-steps h2,
.seller-checklist h2,
.seller-related h2,
.seller-faq h2,
.seller-connect h2 {
  margin: 0 0 10px;
  font-size: 1.26rem;
  font-family: "Outfit", "Segoe UI", sans-serif;
  line-height: 1.2;
}

.seller-roadmap p,
.seller-intake p,
.seller-tools p,
.seller-section-head p,
.seller-panel p,
.seller-connect p,
.seller-final-cta p,
.seller-boost p {
  margin: 0;
  color: var(--seller-muted);
  line-height: 1.53;
}

.seller-roadmap-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.seller-roadmap-list li {
  border: 1px solid rgba(90, 49, 27, 0.16);
  border-radius: 12px;
  background: rgba(255, 245, 224, 0.78);
  padding: 10px 11px;
}

.seller-roadmap-list strong {
  display: block;
  margin: 0 0 4px;
  color: #3f2314;
  font-size: 14px;
}

.seller-roadmap-list p {
  margin: 0;
  color: var(--seller-muted);
  font-size: 14px;
}

.seller-intake-grid,
.seller-boost-grid {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.seller-intake-card,
.seller-boost-card {
  border-radius: 14px;
  padding: 13px;
  border: 1px solid rgba(93, 51, 27, 0.18);
  background: linear-gradient(150deg, #fff9f1 0%, #fff1dd 100%);
  display: grid;
  gap: 8px;
}

.seller-intake-card h3,
.seller-boost-card h3 {
  margin: 0;
  font-size: 1rem;
  font-family: "Outfit", "Segoe UI", sans-serif;
}

.seller-intake-card p,
.seller-boost-card p {
  margin: 0;
  font-size: 14px;
  color: var(--seller-muted);
}

.seller-tools {
  background: linear-gradient(145deg, #fff5e4 0%, #fff8ef 54%, rgba(200, 255, 36, 0.15) 100%);
}

.seller-margin-form {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.seller-margin-form label {
  display: grid;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #4f311f;
}

.seller-margin-form input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(94, 49, 26, 0.26);
  padding: 9px 10px;
  background: #fffdf8;
  color: #2a1b13;
  font: inherit;
}

.seller-margin-output {
  margin-top: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(87, 51, 30, 0.17);
  padding: 10px 11px;
  font-weight: 700;
  color: #342015;
}

.seller-margin-tip {
  margin-top: 8px;
  font-size: 13px;
  color: #5d473a;
}

.seller-section-head {
  background: linear-gradient(140deg, #fff8ef 0%, rgba(200, 255, 36, 0.2) 100%);
}

.seller-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.seller-card {
  padding: 15px;
  display: grid;
  gap: 9px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.9), rgba(255, 246, 225, 0.9));
}

.seller-card h2 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.24;
  font-family: "Outfit", "Segoe UI", sans-serif;
}

.seller-card h2 a {
  color: #3b2418;
  text-decoration: none;
}

.seller-card h2 a:hover {
  text-decoration: underline;
}

.seller-card p {
  margin: 0;
  color: var(--seller-muted);
  font-size: 14px;
  line-height: 1.5;
}

.seller-tag {
  margin: 0;
  width: max-content;
  border-radius: 999px;
  border: 1px solid rgba(75, 110, 19, 0.33);
  background: var(--seller-soft-lime);
  color: #2d4313;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 8px;
}

.seller-list {
  margin: 0;
  padding-left: 19px;
  display: grid;
  gap: 7px;
}

.seller-list li {
  line-height: 1.5;
}

.seller-faq details {
  border: 1px solid rgba(97, 56, 30, 0.17);
  border-radius: 11px;
  padding: 10px 12px;
  background: rgba(255, 252, 246, 0.84);
}

.seller-faq details + details {
  margin-top: 8px;
}

.seller-faq summary {
  cursor: pointer;
  font-weight: 700;
}

.seller-faq p {
  margin: 8px 0 0;
  color: var(--seller-muted);
}

.seller-links {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.seller-links a {
  color: #4b2f1d;
  text-decoration: none;
  font-weight: 700;
}

.seller-links a:hover {
  text-decoration: underline;
}

.seller-connect {
  background: linear-gradient(145deg, #fff6e7 0%, #fffde6 100%);
}

.seller-connect-form {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.seller-connect-form input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(92, 52, 28, 0.24);
  background: #fffef9;
  padding: 10px 11px;
  font: inherit;
}

.seller-helper {
  margin: 10px 0 0;
  color: #5c4739;
  font-size: 13px;
}

.seller-helper a {
  color: #3a6423;
  font-weight: 700;
}

.seller-final-cta {
  text-align: left;
  background: linear-gradient(140deg, rgba(200, 255, 36, 0.35), rgba(255, 250, 235, 0.92) 52%, rgba(255, 206, 146, 0.8));
}

.seller-state-cards {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.seller-state-card {
  border: 1px solid rgba(94, 54, 31, 0.17);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.78);
}

.seller-state-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-family: "Outfit", "Segoe UI", sans-serif;
}

.seller-state-card p {
  margin: 0;
  color: var(--seller-muted);
}

@media (min-width: 760px) {
  .seller-shell {
    padding: 24px 18px 56px;
  }

  .seller-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seller-intake-grid,
  .seller-boost-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .seller-margin-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seller-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seller-state-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .seller-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .seller-margin-form {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
