:root {
  --ink: #153b3e;
  --green: #217963;
  --deep: #123e36;
  --lime: #d9f39a;
  --muted: #687874;
  --line: #e0e8e2;
  --pale: #f2f6f2;
  --blue: #c5dded;
  --radius: 22px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}
body {
  margin: 0;
  background: #fcfdfb;
  color: var(--ink);
  font:
    16px/1.6 Inter,
    sans-serif;
}
button,
input,
select,
textarea {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #257ca8;
  outline-offset: 4px;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-family: Poppins, sans-serif;
  line-height: 1.16;
  font-weight: 600;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(3rem, 5.6vw, 5.2rem);
}
h2 {
  font-size: clamp(2rem, 3.3vw, 3rem);
}
h3 {
  font-size: 1.32rem;
  letter-spacing: -0.035em;
}
.wrap {
  max-width: 1320px;
  margin: auto;
  padding-left: 54px;
  padding-right: 54px;
}
.demo-bar {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #eaf2df;
  font-size: 12px;
  font-weight: 500;
}
.demo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.header {
  height: 98px;
  max-width: 1428px;
  margin: auto;
  padding: 0 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: Poppins, sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -1.2px;
}
.brandmark {
  height: 32px;
  width: 30px;
  border-radius: 9px 9px 11px 9px;
  background: var(--green);
  color: var(--lime);
  font-size: 32px;
  line-height: 34px;
  text-align: center;
  font-weight: 600;
}
.logo-dot {
  margin-left: -9px;
  color: var(--green);
}
nav {
  display: flex;
  gap: 29px;
  font-size: 14px;
  font-weight: 550;
}
.button {
  min-height: 52px;
  padding: 13px 25px;
  border: 1px solid transparent;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  filter: brightness(0.97);
}
.small {
  min-height: 43px;
  padding: 10px 20px;
}
.dark {
  background: var(--ink);
  color: white;
}
.green {
  background: var(--green);
  color: white;
}
.lime {
  background: var(--lime);
  color: var(--deep);
}
.outline {
  border-color: #bbcec6;
  background: transparent;
}
.button span {
  font-size: 20px;
}
.text-link {
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.menu-button {
  display: none;
  background: none;
  border: 0;
  font-size: 24px;
}
.hero {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 46px;
  padding-top: 42px;
  padding-bottom: 58px;
  min-height: 600px;
  align-items: center;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 650;
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 25px;
}
.eyebrow > span {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.accent {
  color: var(--green);
}
.hero-copy > p {
  font-size: 18px;
  line-height: 1.8;
  color: #60736d;
  margin-top: 25px;
}
.actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 32px;
}
.hero-checks {
  display: flex;
  gap: 21px;
  font-size: 12px;
  color: #5b7269;
  margin-top: 27px;
}
.hero-art {
  height: 460px;
  border-radius: 140px 28px 28px 28px;
  background: #dce9d5;
  position: relative;
  margin-left: 20px;
  overflow: visible;
}
.hero-photo {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  background: linear-gradient(120deg, #dce9d5, #abcbbd);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.art-label {
  position: absolute;
  z-index: 2;
  right: 23px;
  top: 23px;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--deep);
  background: #eff4dced;
  border-radius: 50px;
  padding: 7px 13px;
}
.reward-float {
  position: absolute;
  z-index: 3;
  top: 98px;
  left: -47px;
  background: white;
  border: 1px solid #eef2ec;
  padding: 15px 21px;
  border-radius: 15px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: 0 13px 38px #244d3621;
  transform: rotate(-4deg);
}
.reward-float span {
  font-size: 11px;
  color: #5d726b;
  display: block;
}
.reward-float strong {
  display: block;
  font-size: 25px;
  line-height: 1.4;
}
.reward-float small {
  font-size: 11px;
  color: #68796a;
  font-weight: 500;
}
.reward-float .check-circle {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background: #e7f5d8;
  color: var(--green);
  font-size: 19px;
}
.creator-sticker {
  position: absolute;
  z-index: 3;
  right: -13px;
  bottom: 38px;
  padding: 21px 56px 21px 25px;
  background: var(--lime);
  border-radius: 15px;
  transform: rotate(5deg);
  font-size: 15px;
  line-height: 1.5;
  box-shadow: 0 8px 20px #153b3e12;
}
.creator-sticker span {
  position: absolute;
  right: 19px;
  top: 25px;
  font-size: 28px;
}
.art-note {
  position: absolute;
  bottom: 8px;
  left: 20px;
  font-size: 10px;
  color: var(--deep);
  background: #ffffffe0;
  padding: 1px 7px;
  border-radius: 6px;
}
.promise-strip {
  background: #f0f4ee;
  border-top: 1px solid #e7ede4;
  border-bottom: 1px solid #e7ede4;
}
.promise-strip > .wrap {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr 1.1fr;
  gap: 25px;
  padding-top: 28px;
  padding-bottom: 28px;
}
.promise-strip .wrap > span {
  font-size: 16px;
  line-height: 1.5;
}
.promise-strip .wrap > div {
  position: relative;
  padding-left: 34px;
  border-left: 1px solid #d7e0d5;
}
.promise-strip b {
  font-size: 11px;
  color: #7e9184;
  position: absolute;
  left: 13px;
  top: 2px;
}
.promise-strip strong {
  font-size: 13px;
  font-weight: 650;
}
.promise-strip p {
  font-size: 12px;
  color: #768577;
  margin-top: 3px;
}
.section {
  padding-top: 68px;
  padding-bottom: 60px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 30px;
  gap: 24px;
}
.section-heading .eyebrow {
  margin-bottom: 12px;
}
.section-heading p {
  color: var(--muted);
  margin-top: 12px;
  font-size: 15px;
}
.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}
.campaign-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: white;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: block;
}
.campaign-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px #173d3310;
}
.campaign-image {
  height: 206px;
  position: relative;
  overflow: hidden;
  padding: 20px;
  display: flex;
  align-items: end;
  color: white;
  background: #94a98a;
}
.campaign-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.campaign-card:hover img {
  transform: scale(1.035);
}
.campaign-image:after {
  content: '';
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, #1235248c);
}
.campaign-image > span {
  position: relative;
  z-index: 1;
  font-size: 27px;
  font-weight: 650;
  letter-spacing: 2px;
}
.campaign-image .funded-tag {
  position: absolute;
  right: 13px;
  top: 13px;
  font-size: 11px;
  letter-spacing: 0;
  background: #ffffffed;
  color: var(--green);
  padding: 4px 10px;
  border-radius: 50px;
}
.color-green {
  background: #a1ba91;
}
.color-blue {
  background: #91b2c4;
}
.color-pink {
  background: #d5bba8;
}
.card-body {
  padding: 23px;
}
.category {
  color: #71846b;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 1px;
}
.card-body h3 {
  margin-top: 9px;
  font-size: 19px;
}
.card-body p {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}
.card-reward {
  border-top: 1px solid var(--line);
  margin-top: 23px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-reward strong {
  font-size: 23px;
  letter-spacing: -0.5px;
}
.card-reward small {
  font-size: 11px;
  font-weight: 450;
  letter-spacing: 0;
}
.card-reward > span {
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 29px;
  height: 29px;
  text-align: center;
}
.illustrative {
  font-size: 12px;
  color: #738178;
  margin-top: 18px;
}
.footer {
  border-top: 1px solid var(--line);
  padding-top: 35px;
  padding-bottom: 35px;
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
.footer .logo {
  font-size: 23px;
}
.footer p {
  font-size: 12px;
  color: var(--muted);
}
.footer > a:last-child {
  font-size: 12px;
}
.skip {
  position: fixed;
  top: -70px;
  z-index: 50;
  background: white;
  padding: 12px;
}
.skip:focus {
  top: 0;
}
#toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  background: var(--ink);
  color: white;
  border-radius: 14px;
  box-shadow: 0 10px 35px #102a3330;
  padding: 14px 25px;
  max-width: 90%;
  display: none;
}
#toast.visible {
  display: block;
}
@media (min-width: 1450px) {
  .hero {
    padding-top: 60px;
    padding-bottom: 75px;
  }
}
@media (max-width: 1050px) {
  .wrap,
  .header {
    padding-left: 30px;
    padding-right: 30px;
  }
  nav {
    gap: 17px;
  }
  .header > .button {
    display: none;
  }
  .hero {
    gap: 28px;
  }
  .hero-art {
    height: 405px;
    margin-left: 10px;
  }
  .reward-float {
    left: -20px;
    padding: 12px;
  }
  .promise-strip > .wrap {
    gap: 15px;
  }
  .promise-strip .wrap > div {
    padding-left: 25px;
  }
  .promise-strip b {
    left: 7px;
  }
  .campaign-image {
    height: 185px;
  }
  .card-body {
    padding: 18px;
  }
  .card-body h3 {
    font-size: 17px;
  }
  .card-reward small {
    font-size: 10px;
  }
}
@media (max-width: 720px) {
  .wrap,
  .header {
    padding-left: 22px;
    padding-right: 22px;
  }
  .demo-bar {
    font-size: 11px;
    height: 30px;
  }
  .demo-extra {
    display: none;
  }
  .header {
    height: 77px;
  }
  .logo {
    font-size: 26px;
  }
  .menu-button {
    display: block;
  }
  nav {
    display: none;
    position: absolute;
    z-index: 20;
    top: 107px;
    left: 0;
    right: 0;
    padding: 25px;
    background: #fcfdfb;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 18px #173a2710;
  }
  nav.open {
    display: flex;
    flex-direction: column;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 28px;
    padding-bottom: 35px;
    gap: 37px;
    min-height: 0;
  }
  .hero h1 {
    font-size: clamp(2.9rem, 11vw, 4rem);
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 1.1px;
    margin-bottom: 20px;
  }
  .hero-copy > p {
    font-size: 16px;
    margin-top: 20px;
  }
  .actions {
    gap: 20px;
    margin-top: 24px;
  }
  .button {
    font-size: 13px;
    padding: 13px 21px;
  }
  .text-link {
    font-size: 13px;
    gap: 8px;
  }
  .hero-checks {
    font-size: 11px;
    margin-top: 22px;
  }
  .hero-art {
    height: 365px;
    margin: 0 9px 0 16px;
    border-radius: 90px 20px 20px 20px;
  }
  .reward-float {
    top: 62px;
    left: -17px;
  }
  .creator-sticker {
    right: -9px;
    bottom: 30px;
    font-size: 13px;
  }
  .promise-strip > .wrap {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .promise-strip .wrap > span {
    display: none;
  }
  .promise-strip .wrap > div {
    padding-left: 32px;
    border: 0;
  }
  .promise-strip strong {
    font-size: 14px;
  }
  .promise-strip b {
    left: 0;
    top: 3px;
  }
  .promise-strip p {
    font-size: 12px;
  }
  .section {
    padding-top: 45px;
    padding-bottom: 40px;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 15px;
  }
  .section-heading h2 {
    font-size: 30px;
  }
  .campaign-grid {
    grid-template-columns: 1fr;
  }
  .campaign-image {
    height: 225px;
  }
  .card-body {
    padding: 23px;
  }
  .card-body h3 {
    font-size: 22px;
  }
  .card-reward small {
    font-size: 12px;
  }
  .footer {
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }
  .footer p {
    font-size: 13px;
  }
  .footer > a:last-child {
    font-size: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
.card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
  gap: 8px;
}
.campaign-card:nth-child(2) .campaign-image img {
  object-position: 50% 70%;
}
.how-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  padding-top: 45px;
  padding-bottom: 80px;
}
.how-section h2 {
  font-size: 35px;
  line-height: 1.3;
  margin-bottom: 25px;
}
.steps article {
  display: flex;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.steps article:first-child {
  padding-top: 0;
}
.steps article > span {
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
}
.steps h3 {
  font-size: 19px;
  letter-spacing: -0.02em;
}
.steps p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}
.brand-cta {
  padding-bottom: 70px;
}
.brand-panel {
  background: var(--deep);
  color: white;
  border-radius: 26px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
}
.brand-panel .eyebrow {
  color: #b7d3ba;
  font-size: 10px;
}
.brand-panel p {
  font-size: 14px;
  color: #bad0c5;
  max-width: 370px;
  margin: 18px 0 25px;
}
.brand-panel h2 {
  font-size: 38px;
}
.brand-equation {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.brand-equation > div {
  display: flex;
  flex-direction: column;
}
.brand-equation span {
  font-size: 13px;
  color: #bdd2bd;
}
.brand-equation strong {
  font-size: 42px;
  letter-spacing: -1.5px;
  font-weight: 550;
}
.brand-equation > b {
  color: #9abb9f;
  font-weight: 400;
}
.brand-equation .equation-total {
  width: 100%;
  border-top: 1px solid #507265;
  padding-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.equation-total strong {
  color: var(--lime);
  text-align: right;
}
.equation-total small {
  grid-column: span 2;
  font-size: 11px;
  color: #c3d7c8;
}
.page-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 35px;
}
.page-top h1 {
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  line-height: 1.18;
}
.page-top .eyebrow {
  margin-bottom: 17px;
}
.page-top p {
  font-size: 16px;
  color: var(--muted);
  margin-top: 19px;
  max-width: 670px;
}
.marketplace {
  padding-top: 45px;
  min-height: 75vh;
}
.market-toolbar {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: space-between;
  margin-top: 38px;
}
.search-field {
  display: flex;
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  width: 510px;
  max-width: 100%;
  padding-left: 18px;
  gap: 12px;
}
.search-field > span {
  font-size: 25px;
}
.search-field input {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 15px 15px 15px 0;
  font-size: 14px;
  outline-offset: 1px;
}
.sort-label {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sort-label select {
  background: white;
  border: 1px solid var(--line);
  padding: 12px;
  border-radius: 10px;
  font-size: 13px;
  color: var(--ink);
}
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}
.filter {
  border: 1px solid var(--line);
  border-radius: 50px;
  background: white;
  padding: 9px 20px;
  color: var(--muted);
  font-size: 13px;
}
.filter.selected {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.results-line {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  margin: 30px 0 20px;
}
.results-line > span:first-child {
  color: var(--ink);
  font-weight: 600;
}
.demo-note {
  padding: 14px 18px;
  border: 1px solid #d8e5d1;
  background: #f0f5e9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #53684d;
  margin-bottom: 26px;
}
.demo-note > .link-button {
  margin-left: auto;
  white-space: nowrap;
}
.demo-pill {
  font-size: 10px;
  letter-spacing: 1px;
  font-weight: 600;
  border-radius: 5px;
  background: #dcecc9;
  color: #395c2d;
  padding: 3px 6px;
  white-space: nowrap;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.stats.four {
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  border: 1px solid var(--line);
  padding: 22px;
  background: white;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
}
.stat > span {
  font-size: 13px;
  color: var(--muted);
}
.stat strong {
  font-size: 32px;
  letter-spacing: -1px;
  margin: 5px 0;
  font-weight: 550;
}
.stat small {
  font-size: 11px;
  color: var(--muted);
}
.workspace-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 24px;
}
.panel {
  padding: 27px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 17px;
  margin-bottom: 24px;
}
.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.panel h3 {
  font-size: 20px;
  letter-spacing: -0.025em;
}
.panel > p,
.panel-title p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 13px;
}
.panel > .text-link {
  margin-top: 20px;
}
.setup-row,
.ready-row {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.setup-row strong,
.ready-row strong {
  font-size: 14px;
}
.setup-row p,
.ready-row p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 5px;
}
.ready-row > span {
  background: #e9f2df;
  color: var(--green);
  border-radius: 50%;
  padding: 5px 11px;
}
.ready-row > div {
  margin-right: auto;
}
.link-button {
  border: 0;
  padding: 4px 0;
  background: none;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.field {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 550;
  color: var(--ink);
  gap: 7px;
  margin: 17px 0;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #ccd8ce;
  border-radius: 9px;
  background: white;
  color: var(--ink);
  font-size: 16px;
}
.field textarea {
  resize: vertical;
}
.full {
  width: 100%;
}
.fine-print {
  font-size: 12px !important;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 17px !important;
}
.funding-panel {
  background: #f0f5ec;
}
.funding-panel .eyebrow {
  font-size: 10px;
}
.empty-state {
  padding: 35px 20px;
  text-align: center;
  grid-column: 1/-1;
}
.empty-state h3 {
  font-size: 20px;
}
.empty-state p {
  font-size: 14px;
  color: var(--muted);
  max-width: 420px;
  margin: 12px auto 20px;
}
.empty-icon {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #edf4e6;
  color: var(--green);
  font-size: 22px;
  margin: 0 auto 18px;
}
.subtle {
  font-size: 12px;
  color: var(--muted);
  overflow-wrap: anywhere;
}
.space-top {
  margin-top: 18px;
}
.campaign-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.campaign-row h3 {
  margin-top: 10px;
  font-size: 17px;
}
.campaign-row p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 7px;
}
.badge {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 50px;
  font-size: 11px;
  background: #e8f2df;
  color: #406c34;
  text-transform: capitalize;
  white-space: nowrap;
}
.badge.pending {
  background: #fcf0d1;
  color: #83601c;
}
.badge.reversed,
.badge.recovery {
  background: #f8e7df;
  color: #8a4631;
}
.badge.paid {
  background: #e3edf6;
  color: #365f80;
}
.row-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.row-actions small {
  font-size: 10px;
  color: var(--muted);
}
.table-scroll {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
}
th {
  font-weight: 500;
  color: var(--muted);
  background: #f7f9f5;
  font-size: 12px;
}
td,
th {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
}
td small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}
.onboarding-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.onboarding-panel .row-actions {
  flex-direction: row;
}
.onboarding-panel p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}
.joined-row {
  display: flex;
  gap: 23px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.joined-thumb {
  width: 115px;
  height: 130px;
  object-fit: cover;
  border-radius: 12px;
}
.joined-info {
  flex: 1;
  min-width: 0;
}
.joined-info h3 {
  margin: 5px 0;
  font-size: 19px;
}
.joined-info > p {
  font-size: 12px;
  color: var(--muted);
}
.tracking-label {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 15px;
}
.tracking-label input {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 12px;
  color: var(--green);
  background: #f8faf6;
  margin-top: 5px;
}
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 17px;
  margin-top: 12px;
}
.inline-actions a {
  font-size: 12px;
}
.content-linked {
  margin-top: 12px;
}
.content-linked a {
  text-decoration: underline;
}
.verification-tools {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.verification-tools p {
  font-size: 12px;
  color: var(--muted);
  max-width: 420px;
  margin-top: 8px;
}
.verification-tools .inline-actions {
  flex-shrink: 0;
  gap: 10px;
}
.payment-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}
.payment-row strong {
  font-size: 24px;
}
.payment-row p {
  font-size: 12px;
  color: var(--muted);
}
summary {
  cursor: pointer;
  font-weight: 550;
  font-size: 14px;
}
.audit {
  margin-top: 22px;
}
.audit p {
  font-size: 12px;
  border-bottom: 1px solid var(--line);
  padding: 9px 0;
}
.modal {
  border: 1px solid var(--line);
  border-radius: 21px;
  padding: 30px;
  width: 540px;
  max-width: calc(100vw - 30px);
  max-height: 90vh;
  color: var(--ink);
  box-shadow: 0 20px 90px #112e3833;
}
.modal::backdrop {
  background: #18383177;
  backdrop-filter: blur(3px);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 14px;
}
.modal h2 {
  font-size: 26px;
}
.close-modal {
  border: 0;
  background: #f2f6ed;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 24px;
  color: var(--ink);
  flex-shrink: 0;
}
.modal form > p {
  font-size: 14px;
  color: var(--muted);
}
.form-error {
  color: #a23929 !important;
  margin-top: 15px;
}
.form-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}
.reserve-note {
  padding: 15px;
  background: #f0f5ea;
  border-radius: 10px;
  font-size: 12px;
  color: #52694c;
  line-height: 1.7;
  margin: 18px 0;
}
.back-link {
  display: inline-block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}
.detail-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 58px;
  align-items: start;
}
.detail-image {
  height: 330px;
  border-radius: 20px;
}
.detail-image > span {
  font-size: 35px;
}
.detail-title {
  font-size: 39px;
  line-height: 1.25;
}
.detail-description {
  color: var(--muted);
  font-size: 17px;
  margin-top: 15px;
}
.detail-section {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  margin-top: 30px;
}
.detail-section h3 {
  font-size: 22px;
}
.detail-section p {
  font-size: 15px;
  color: var(--muted);
  margin-top: 16px;
}
.detail-section .text-link {
  margin-top: 20px;
}
.check-list {
  padding-left: 20px;
  color: var(--muted);
  font-size: 15px;
}
.check-list li {
  margin: 10px 0;
  padding-left: 7px;
}
.reward-panel {
  position: sticky;
  top: 25px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}
.reward-panel .eyebrow {
  margin-bottom: 12px;
}
.big-rate {
  font-family: Poppins, sans-serif;
  font-size: 58px;
  letter-spacing: -2px;
  line-height: 1.2;
}
.reward-panel > p {
  color: var(--muted);
  font-size: 14px;
}
.rate-example {
  padding: 17px;
  background: #eff5e8;
  border-radius: 12px;
  margin-top: 24px;
  font-size: 15px;
}
.rate-example small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}
dl {
  font-size: 12px;
  margin: 25px 0;
}
dl > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
dt {
  color: var(--muted);
}
dd {
  margin: 0;
  text-align: right;
  font-weight: 550;
}
.center-note {
  text-align: center;
  font-size: 11px !important;
  margin-top: 12px;
}
.reward-panel .full {
  margin-top: 18px;
}
.shop-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.shop-image {
  height: 530px;
  border-radius: 25px;
}
.shop-layout h1 {
  font-size: 40px;
  line-height: 1.2;
}
.shop-layout > div > p {
  color: var(--muted);
  margin-top: 20px;
  font-size: 15px;
}
.shop-step {
  display: flex;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 23px;
  margin-top: 25px;
}
.shop-step > span {
  background: #edf4e5;
  color: var(--green);
  height: 32px;
  width: 32px;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  flex-shrink: 0;
}
.shop-step h3 {
  font-size: 19px;
}
.shop-step p {
  font-size: 13px;
  color: var(--muted);
  margin: 10px 0 15px;
}
.shop-layout .text-link {
  margin-top: 25px;
}
.audience-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 70px;
}
.audience-intro h1 {
  font-size: 50px;
}
.audience-intro p {
  font-size: 17px;
  color: var(--muted);
  margin: 25px 0 30px;
  max-width: 550px;
}
.audience-intro img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  border-radius: 90px 22px 22px 22px;
}
.three-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 70px;
}
.three-features article > span {
  display: block;
  font-size: 12px;
  color: var(--green);
  margin-bottom: 16px;
}
.three-features h3 {
  font-size: 23px;
}
.three-features p {
  font-size: 15px;
  color: var(--muted);
  margin-top: 15px;
}
.callout {
  background: #eef4e8;
  padding: 28px 32px;
  border-radius: 17px;
  margin: 38px 0;
}
.callout p {
  font-size: 15px;
  color: var(--muted);
  margin-top: 12px;
}
.callout .text-link {
  margin-top: 15px;
}
.journey-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.journey-columns h2 {
  font-size: 30px;
}
.numbered {
  padding-left: 22px;
  margin: 30px 0;
}
.numbered li {
  padding-left: 8px;
  margin-bottom: 23px;
}
.numbered strong {
  font-size: 16px;
}
.numbered p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 7px;
}
.narrow {
  max-width: 930px;
}
.rules-list > article {
  display: flex;
  gap: 25px;
  border-top: 1px solid var(--line);
  padding: 27px 0;
}
.rules-list > article > span {
  font-size: 13px;
  color: var(--green);
}
.rules-list h3 {
  font-size: 23px;
}
.rules-list p {
  font-size: 16px;
  color: var(--muted);
  margin-top: 13px;
}
nav a[aria-current='page'] {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 7px;
}
@media (max-width: 1050px) {
  .stats.four {
    grid-template-columns: repeat(2, 1fr);
  }
  .workspace-grid {
    grid-template-columns: 1.5fr 1fr;
  }
  .detail-layout {
    gap: 30px;
    grid-template-columns: 1.3fr 1fr;
  }
  .reward-panel {
    padding: 23px;
  }
  .verification-tools {
    align-items: start;
    flex-direction: column;
  }
  .how-section {
    gap: 40px;
  }
  .how-section h2 {
    font-size: 30px;
  }
  .brand-panel {
    padding: 35px;
    gap: 40px;
  }
  .onboarding-panel .row-actions {
    flex-direction: column;
  }
  .audience-intro {
    gap: 35px;
  }
  .audience-intro h1 {
    font-size: 40px;
  }
  .shop-layout {
    gap: 30px;
  }
  .row-actions {
    flex-shrink: 1;
  }
}
@media (max-width: 720px) {
  .how-section,
  .brand-panel,
  .workspace-grid,
  .detail-layout,
  .shop-layout,
  .audience-intro,
  .journey-columns {
    grid-template-columns: 1fr;
  }
  .how-section {
    padding-top: 25px;
    padding-bottom: 45px;
    gap: 35px;
  }
  .how-section h2 {
    font-size: 29px;
  }
  .brand-cta {
    padding-bottom: 40px;
  }
  .brand-panel {
    padding: 27px;
    gap: 35px;
  }
  .brand-panel h2 {
    font-size: 31px;
  }
  .brand-panel .eyebrow {
    line-height: 1.8;
  }
  .brand-equation strong {
    font-size: 36px;
  }
  .page-top {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }
  .page-top h1 {
    font-size: 36px;
  }
  .page-top p {
    font-size: 15px;
  }
  .market-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
  }
  .search-field {
    width: 100%;
  }
  .sort-label {
    justify-content: space-between;
  }
  .filter-row {
    gap: 7px;
  }
  .filter {
    padding: 8px 15px;
    font-size: 12px;
  }
  .results-line {
    font-size: 11px;
    gap: 12px;
  }
  .demo-note {
    flex-wrap: wrap;
    font-size: 11px;
    padding: 12px;
  }
  .demo-note > span:nth-child(2) {
    flex: 1;
    min-width: 180px;
  }
  .demo-note > .link-button {
    margin-left: 0;
  }
  .stats,
  .stats.four {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .stats:not(.four) > .stat:first-child {
    grid-column: span 2;
  }
  .stat {
    padding: 15px;
  }
  .stat strong {
    font-size: 26px;
  }
  .stat > span {
    font-size: 12px;
  }
  .stat small {
    font-size: 10px;
  }
  .panel {
    padding: 20px;
    border-radius: 14px;
  }
  .panel-title {
    gap: 15px;
    flex-wrap: wrap;
  }
  .panel h3 {
    font-size: 19px;
  }
  .setup-row {
    align-items: start;
    flex-direction: column;
    gap: 13px;
  }
  .ready-row {
    flex-wrap: wrap;
    gap: 12px;
  }
  .campaign-row {
    align-items: start;
    flex-direction: column;
    gap: 15px;
  }
  .campaign-row .row-actions {
    width: 100%;
    align-items: start;
  }
  .onboarding-panel {
    align-items: start;
    flex-direction: column;
  }
  .onboarding-panel .row-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .joined-row {
    gap: 14px;
    flex-direction: column;
  }
  .joined-thumb {
    width: 70px;
    height: 70px;
  }
  .joined-info {
    width: 100%;
  }
  .joined-info h3 {
    font-size: 18px;
  }
  .tracking-label input {
    font-size: 11px;
  }
  .inline-actions {
    gap: 13px;
  }
  .verification-tools .inline-actions {
    width: 100%;
    flex-wrap: wrap;
  }
  .verification-tools .button {
    font-size: 12px;
  }
  .payment-row {
    flex-wrap: wrap;
  }
  .modal {
    padding: 23px;
  }
  .modal h2 {
    font-size: 23px;
  }
  .form-columns {
    gap: 12px;
  }
  .form-columns label {
    font-size: 12px;
    min-width: 0;
  }
  .detail-image {
    height: 255px;
  }
  .detail-title {
    font-size: 32px;
  }
  .detail-layout {
    gap: 35px;
  }
  .reward-panel {
    position: static;
  }
  .detail-layout > aside {
    grid-row: 1;
  }
  .big-rate {
    font-size: 45px;
  }
  .reward-panel dl {
    margin: 15px 0;
  }
  .reward-panel .fine-print {
    margin-top: 10px !important;
  }
  .reward-panel .reserve-note {
    margin-bottom: 10px;
  }
  .detail-section p {
    font-size: 15px;
  }
  .shop-image {
    height: 280px;
  }
  .shop-layout h1 {
    font-size: 32px;
  }
  .shop-step {
    gap: 13px;
  }
  .shop-step > div {
    min-width: 0;
  }
  .audience-intro h1 {
    font-size: 37px;
  }
  .audience-intro img {
    height: 290px;
  }
  .three-features {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }
  .three-features h3 {
    font-size: 24px;
  }
  .journey-columns {
    margin-top: 30px;
    gap: 0;
  }
  .journey-columns h2 {
    font-size: 28px;
  }
  .callout {
    padding: 24px;
  }
  .rules-list > article {
    gap: 16px;
  }
  .rules-list h3 {
    font-size: 21px;
  }
  .rules-list p {
    font-size: 15px;
  }
  .card-meta {
    font-size: 11px;
  }
  .reading .page-top h1 {
    font-size: 39px;
  }
}
/* Readable controls and campaign identity at mobile entry. */
.card-body p,
.setup-row p,
.ready-row p,
.card-meta,
.tracking-label,
.tracking-label input,
.demo-note,
.card-reward small,
.hero-checks,
.promise-strip p,
.illustrative,
.fine-print {
  font-size: 12px;
}
.field,
.filter,
.link-button,
.sort-label,
.sort-label select,
.stat > span,
.subtle,
.campaign-row p,
.joined-info > p,
.inline-actions a,
.center-note,
.reserve-note,
dl,
table,
.text-link {
  font-size: 14px;
}
.card-body p {
  font-size: 14px;
}
.card-meta {
  flex-wrap: wrap;
}
.stat small,
.verification-tools p,
.row-actions small,
.payment-row p,
th,
td small {
  font-size: 12px;
}
.card-reward small {
  font-size: 12px;
}
.detail-page-heading {
  margin-bottom: 32px;
}
.detail-page-heading .eyebrow {
  margin-bottom: 12px;
}
.skip:not(:focus-visible) {
  clip-path: inset(100%);
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.hero-photo img {
  object-position: 58% center;
}
@media (max-width: 720px) {
  .hero .reward-float {
    top: 148px;
  }
  .detail-page-heading .detail-title {
    font-size: 31px;
  }
  .detail-page-heading .eyebrow {
    font-size: 12px;
  }
  .detail-layout > aside {
    grid-row: 1;
  }
  .detail-page-heading {
    margin-bottom: 25px;
  }
  .filter {
    font-size: 13px;
  }
  .verification-tools .button {
    font-size: 13px;
  }
  .hero-checks {
    font-size: 12px;
    gap: 16px;
  }
  .card-reward small {
    font-size: 12px;
  }
  .demo-note {
    font-size: 12px;
  }
}
/* Bountain: creator energy, with the receipts. */
:root {
  --ink: #261536;
  --green: #6b37df;
  --deep: #291744;
  --lime: #d5ff62;
  --muted: #6e6279;
  --line: #d8cce5;
  --pale: #f1eafa;
  --blue: #b7dcff;
  --radius: 16px;
}
body {
  background: #f7f1ff;
  color: var(--ink);
}
h1,
h2,
h3,
h4,
.logo,
.big-rate {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}
.demo-bar {
  background: var(--lime);
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
.header {
  height: 104px;
}
.logo {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1.8px;
}
.brandmark {
  background: var(--lime);
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  height: 35px;
  width: 34px;
  line-height: 32px;
  transform: rotate(-7deg);
}
.button {
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 14px;
  min-height: 51px;
  transition:
    transform 0.16s,
    box-shadow 0.16s;
}
.button:hover {
  filter: none;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}
.button:active {
  transform: translate(4px, 4px);
  box-shadow: none;
}
.button:disabled {
  box-shadow: none;
  transform: none;
}
.green {
  background: var(--lime);
  color: var(--ink);
}
.dark {
  background: var(--green);
  color: white;
}
.outline {
  background: white;
  border-color: var(--ink);
}
.small {
  min-height: 44px;
}
.text-link {
  font-weight: 650;
  color: var(--ink);
}
.hero {
  padding-top: 48px;
  padding-bottom: 68px;
  gap: 48px;
  min-height: 625px;
}
.hero h1 {
  font-size: clamp(3.2rem, 5.55vw, 5.15rem);
  line-height: 1.06;
  letter-spacing: -0.07em;
}
.hero .accent {
  color: var(--green);
  display: inline-block;
  position: relative;
}
.hero .accent:after {
  content: '';
  height: 7px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  background: var(--lime);
  transform: rotate(-3deg);
  z-index: -1;
}
.hero-copy .eyebrow {
  display: inline-flex;
  background: #e2d3ff;
  padding: 7px 12px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  transform: rotate(-2deg);
  letter-spacing: 0.7px;
  font-size: 12px;
}
.hero-copy .eyebrow > span {
  display: none;
}
.hero-copy > p {
  color: #645271;
  font-size: 18px;
  line-height: 1.7;
  max-width: 510px;
}
.hero-checks {
  color: #65536f;
  font-weight: 550;
}
.hero-art {
  border-radius: 23px;
  height: 455px;
  border: 2px solid var(--ink);
  box-shadow: 12px 12px 0 #b694f5;
  background: #bf9eeb;
  transform: rotate(2deg);
  margin-left: 12px;
}
.hero-photo {
  inset: 10px;
  background: #e4d6f7;
  border-radius: 13px;
}
.hero-photo img {
  object-position: 58% center;
}
.art-label {
  right: 20px;
  top: 24px;
  background: var(--lime);
  color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  transform: rotate(-4deg);
}
.reward-float {
  left: -42px;
  top: 105px;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  transform: rotate(-6deg);
  border-radius: 11px;
  padding: 16px 20px;
}
.reward-float span {
  color: #5f4f6e;
  font-size: 12px;
}
.reward-float .check-circle {
  background: #e5d9fb;
  color: var(--green);
  border: 1.5px solid var(--ink);
}
.reward-float strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 29px;
}
.creator-sticker {
  background: #ffad78;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  border-radius: 9px;
  right: -16px;
  bottom: 33px;
  font-size: 18px;
  line-height: 1.4;
  transform: rotate(6deg);
}
.art-note {
  background: white;
  color: var(--ink);
  left: 22px;
  bottom: 16px;
  font-size: 11px;
}
.promise-strip {
  background: var(--lime);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.promise-strip .wrap > div {
  border-color: #96b643;
}
.promise-strip strong {
  font-size: 14px;
}
.promise-strip p {
  color: #4c5b30;
  font-size: 12px;
}
.promise-strip b {
  color: #687e34;
}
.campaign-card {
  border: 2px solid var(--ink);
  border-radius: 16px;
  box-shadow: 5px 5px 0 #c4aedf;
}
.campaign-card:hover {
  transform: translateY(-4px) rotate(-0.6deg);
  box-shadow: 7px 9px 0 #bda2e0;
}
.campaign-image {
  border-bottom: 2px solid var(--ink);
}
.campaign-image .funded-tag {
  background: var(--lime);
  color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 5px;
  transform: rotate(3deg);
  font-weight: 650;
}
.category {
  color: var(--green);
}
.card-body h3 {
  font-size: 22px;
}
.card-reward > span {
  background: #e5d5ff;
  border: 1.5px solid var(--ink);
}
.card-reward strong {
  font-family: 'Space Grotesk', sans-serif;
}
.section-heading h2 {
  font-size: 46px;
  letter-spacing: -0.06em;
}
.section-heading .eyebrow {
  color: var(--green);
}
.brand-panel {
  background: var(--green);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  border-radius: 20px;
}
.brand-panel .eyebrow,
.brand-panel p,
.brand-equation span,
.equation-total small {
  color: #efe5ff;
}
.brand-panel h2 {
  font-size: 43px;
}
.brand-equation strong {
  font-family: 'Space Grotesk', sans-serif;
}
.brand-equation .equation-total {
  border-color: #af8ff0;
}
.brand-panel .button {
  color: var(--ink);
}
.steps article > span {
  background: var(--lime);
  border: 1.5px solid var(--ink);
  height: 31px;
  min-width: 35px;
  text-align: center;
  line-height: 28px;
  transform: rotate(-5deg);
  border-radius: 6px;
  color: var(--ink);
}
.how-section h2 {
  font-size: 37px;
  letter-spacing: -0.045em;
}
.footer {
  border-top: 2px solid var(--ink);
}
@media (max-width: 1050px) {
  .hero {
    gap: 30px;
  }
  .hero-art {
    height: 415px;
  }
  .reward-float {
    left: -25px;
  }
  .hero h1 {
    font-size: clamp(3rem, 5.7vw, 4.5rem);
  }
}
@media (max-width: 720px) {
  .header {
    height: 81px;
  }
  .logo {
    font-size: 29px;
  }
  nav {
    top: 111px;
    background: #f7f1ff;
  }
  .hero {
    min-height: 0;
    padding-top: 28px;
    padding-bottom: 47px;
    gap: 36px;
  }
  .hero h1 {
    font-size: clamp(3.25rem, 12.9vw, 4.7rem);
    line-height: 1.02;
  }
  .hero-copy > p {
    font-size: 16px;
    line-height: 1.75;
  }
  .hero-copy .eyebrow {
    font-size: 10px;
    margin-bottom: 24px;
  }
  .hero .actions {
    gap: 23px;
  }
  .hero .button {
    font-size: 13px;
    padding: 13px 17px;
  }
  .hero-art {
    margin: 0 15px 0 13px;
    height: 365px;
    box-shadow: 8px 8px 0 #b694f5;
  }
  .hero .reward-float {
    left: -20px;
    top: 142px;
    padding: 12px 15px;
  }
  .reward-float strong {
    font-size: 25px;
  }
  .creator-sticker {
    right: -16px;
    bottom: 31px;
    font-size: 16px;
    padding: 15px 45px 15px 18px;
  }
  .creator-sticker span {
    top: 15px;
    right: 12px;
  }
  .art-label {
    top: 22px;
    right: 17px;
    font-size: 10px;
  }
  .promise-strip > .wrap {
    gap: 23px;
  }
  .promise-strip strong {
    font-size: 15px;
  }
  .section-heading h2 {
    font-size: 34px;
  }
  .brand-panel {
    padding: 26px;
  }
  .brand-panel h2 {
    font-size: 33px;
  }
  .how-section h2 {
    font-size: 32px;
  }
  .hero-checks {
    font-size: 12px;
  }
  .card-body h3 {
    font-size: 24px;
  }
}
.marketplace .page-top h1,
.audience-intro h1 {
  letter-spacing: -0.065em;
  line-height: 1.08;
}
.page-top .eyebrow {
  color: var(--green);
}
.market-toolbar input::placeholder {
  color: #776985;
}
.search-field,
.sort-label select {
  border: 1.5px solid var(--ink);
  border-radius: 9px;
}
.filter {
  border: 1.5px solid var(--ink);
  color: var(--ink);
  background: white;
}
.filter.selected {
  background: var(--green);
  border-color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  color: white;
}
.panel,
.stat,
.reward-panel {
  border: 1.5px solid var(--ink);
  box-shadow: 3px 3px 0 #dccbed;
  border-radius: 13px;
}
.stats > .stat:first-child {
  background: #e4d6ff;
}
.stats.four > .stat:nth-child(3) {
  background: var(--lime);
}
.stats.four > .stat:last-child {
  background: #ffdec8;
}
.stat strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
}
.demo-note {
  background: #eee3ff;
  border-color: #ceb4f0;
  color: #624780;
}
.demo-pill {
  background: #dcc7ff;
  color: #5126a2;
}
.funding-panel,
.reserve-note,
.callout,
.rate-example {
  background: #eee3ff;
  color: #5b3e77;
}
.funding-panel {
  border-color: var(--ink);
}
.reserve-note strong {
  color: var(--ink);
}
.badge {
  background: #e5d5ff;
  color: #5626a8;
}
.badge.pending {
  background: #fff0c0;
  color: #7d5613;
}
.badge.available {
  background: #ddf8b3;
  color: #3c641f;
}
.badge.paid {
  background: #dce9ff;
  color: #32588a;
}
.field input,
.field select,
.field textarea {
  border-color: #b7a3c9;
}
.ready-row > span,
.empty-icon,
.steps article > span {
  background: var(--lime);
  color: var(--ink);
}
.tracking-label input {
  background: #f7f2fe;
  color: #5e28c1;
}
.joined-thumb {
  border: 1.5px solid var(--ink);
}
.modal {
  background: #fcf9ff;
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 #251432;
}
.close-modal {
  background: var(--lime);
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.detail-image,
.shop-image,
.audience-intro img {
  border: 2px solid var(--ink);
  border-radius: 15px;
  box-shadow: 6px 6px 0 #cdb6ef;
}
.audience-intro img {
  transform: rotate(2deg);
}
.three-features article > span {
  display: inline-block;
  background: var(--lime);
  border: 1.5px solid var(--ink);
  padding: 3px 9px;
  border-radius: 5px;
  transform: rotate(-5deg);
  color: var(--ink);
}
.callout {
  border: 1.5px solid var(--ink);
}
.brand-equation .equation-total strong {
  color: var(--lime);
}
#toast {
  background: var(--ink);
  border: 1.5px solid var(--lime);
  box-shadow: 4px 4px 0 #b394da;
}
.footer .logo {
  font-size: 27px;
}
th {
  background: #f4ecff;
}
.shop-step > span {
  background: var(--lime);
  color: var(--ink);
  border: 1px solid var(--ink);
}
.rules-list > article > span {
  color: var(--green);
}
@media (max-width: 720px) {
  .stats .stat strong {
    font-size: 29px;
  }
  .page-top h1 {
    letter-spacing: -0.055em;
  }
  .audience-intro h1 {
    font-size: 40px;
  }
  .panel,
  .stat,
  .reward-panel {
    box-shadow: 2px 2px 0 #dccbed;
  }
  .button.small {
    font-size: 13px;
  }
  .header .menu-button {
    border: 1.5px solid var(--ink);
    border-radius: 7px;
    background: var(--lime);
    width: 37px;
    line-height: 32px;
  }
  .hero .art-label {
    font-size: 9px;
  }
}
