:root {
  --bg: #fffafc;
  --soft: #fff1f7;
  --paper: #ffffff;
  --ink: #1f2937;
  --muted: #64748b;
  --line: #f1e4eb;
  --pink: #ff80b5;
  --pink-dark: #f05c9e;
  --purple: #b097ff;
  --green: #16a34a;
  --green-soft: #f0fdf4;
  --shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

main {
  overflow: hidden;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.container {
  width: min(100% - 32px, 1050px);
  margin: 0 auto;
}

.narrow {
  max-width: 448px;
}

section {
  padding: 64px 0;
}

.hero {
  padding: 32px 0 48px;
  text-align: center;
  background: linear-gradient(180deg, #fff1f7 0%, #ffffff 100%);
}

.hero-stack {
  display: grid;
  gap: 16px;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 144px;
  height: 144px;
  margin: 0 auto 8px;
  border: 4px solid #111827;
  color: #111827;
  background: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0;
}

.intro {
  width: min(384px, 100%);
  margin: 0 auto;
  color: #374151;
  font-size: 1.125rem;
  line-height: 1.55;
  font-weight: 500;
}

.earnings-card,
.step-card,
.review-card,
.category-grid article {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.earnings-card {
  padding: 16px;
}

.card-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.badge-icon,
.step-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--pink-dark);
  background: #ffe3ef;
  font-weight: 800;
}

.earnings-card h2,
.section-title {
  margin: 0;
  font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.25rem;
  line-height: 1.35;
}

.earnings-card p {
  margin: 8px 0 0;
  color: #374151;
  font-size: 0.875rem;
  line-height: 1.45;
}

.meter {
  width: 100%;
  height: 8px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5e7eb;
}

.meter span {
  display: block;
  width: 85%;
  height: 100%;
  border-radius: inherit;
  background: var(--pink);
}

.earnings-card .meter-note {
  margin-top: 8px;
  color: #6b7280;
  font-size: 0.75rem;
  text-align: right;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 64px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: var(--pink);
  box-shadow: 0 10px 20px rgba(255, 128, 181, 0.22);
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.cta:hover,
.cta:focus-visible {
  background: var(--pink-dark);
  transform: translateY(-1px);
  outline: none;
}

.fine-print {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
  font-style: italic;
}

.how {
  padding-top: 32px;
  background: #fff;
}

.section-title {
  margin-bottom: 24px;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 800;
}

.steps {
  display: grid;
  gap: 16px;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  text-decoration: none;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.step-card:hover,
.step-card:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
  outline: none;
}

.step-card strong,
.benefits strong {
  display: block;
  margin-bottom: 6px;
}

.step-card small,
.benefits small,
.category-grid small,
.signin {
  color: var(--muted);
  line-height: 1.45;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 32px;
}

.mini-stats article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  text-align: center;
  box-shadow: 0 5px 16px rgba(15, 23, 42, 0.05);
}

.mini-stats small {
  display: block;
  color: #4b5563;
  font-size: 0.75rem;
}

.mini-stats strong {
  display: block;
  margin-top: 3px;
  font-size: 0.875rem;
}

.center-block {
  text-align: center;
}

.center-block .fine-print {
  margin-top: 12px;
  font-size: 0.75rem;
  font-style: normal;
}

.stories {
  background: linear-gradient(135deg, #fff1f7 0%, #ffffff 100%);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.875rem, 4vw, 2.7rem);
  line-height: 1.15;
}

.section-heading p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.125rem;
}

.success-strip {
  margin-top: 16px;
  padding: 12px 16px;
  border: 1px solid #dcfce7;
  border-radius: 12px;
  color: #15803d;
  background: var(--green-soft);
  font-weight: 600;
}

.story-grid {
  display: grid;
  gap: 24px;
}

.review-card {
  padding: 24px;
}

.review-card header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--pink-dark);
  background: #ffe3ef;
  font-weight: 800;
}

.review-card header strong,
.review-card header small {
  display: block;
}

.review-card header small {
  color: var(--muted);
  font-size: 0.875rem;
}

.stars {
  margin-left: auto;
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.45;
}

.review-card .earned {
  margin-top: 16px;
  color: var(--green);
  font-weight: 700;
}

.review-card .product {
  margin-top: 8px;
  color: var(--purple);
  font-weight: 700;
}

.review-card .product + p {
  margin-top: 8px;
}

.pager {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.pager span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #6b7280;
  background: #fff;
  box-shadow: var(--shadow);
  font-weight: 700;
}

.pager .active {
  color: #fff;
  background: var(--pink);
}

.categories {
  background: #fff;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--pink-dark);
  font-size: 0.875rem;
  font-weight: 800;
  text-align: center;
}

.compact {
  margin-bottom: 32px;
}

.category-grid {
  display: grid;
  gap: 16px;
}

.category-grid article {
  padding: 20px;
}

.category-grid h3,
.category-grid p {
  margin: 0;
}

.category-grid p {
  margin-top: 8px;
  font-weight: 700;
}

.category-grid small {
  display: block;
  margin-top: 4px;
}

.category-grid a,
.ghost-link,
.signin a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--pink-dark);
  font-weight: 700;
  text-decoration: none;
}

.ghost-link {
  justify-content: center;
  width: 100%;
  margin-top: 28px;
}

.community {
  background: linear-gradient(180deg, #fff1f7 0%, #ffffff 100%);
  text-align: center;
}

.lead {
  margin: -12px 0 28px;
  color: var(--muted);
  line-height: 1.55;
}

.benefits {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
  text-align: left;
}

.benefits article {
  padding: 16px;
  border-left: 4px solid var(--pink);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.signup {
  display: grid;
  gap: 12px;
}

.secondary {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--pink-dark);
  background: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.signin {
  margin: 14px 0 0;
  font-size: 0.875rem;
}

.signin a {
  display: inline;
  margin: 0;
}

footer {
  padding: 20px 16px 28px;
  color: #6b7280;
  background: #fff;
  text-align: center;
  font-size: 0.8rem;
}

footer p {
  margin: 0;
}

footer .disclaimer {
  max-width: 760px;
  margin: 8px auto 0;
}

@media (min-width: 720px) {
  .hero {
    padding-top: 48px;
  }

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

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

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

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, 1050px);
  }

  .stars {
    display: none;
  }
}
