:root {
  --purple: #7944e5;
  --purple-d: #5309a2;
  --purple-l: #ab8aee;
  --mlav: #b291c7;
  --pink: #ff00ba;
  --ink: #3b3d3f;
  --body: #777777;
  --white: #fff;
  --surface: #fbfbfb;
  --border: #eaeaea;
  --vlight: #f1f1f1;
  --lav: #eee7fc;
  --palepink: #ffe0e6;
  --mpink: #f2b6c0;
  --grad: linear-gradient(135deg, #7944e5, #ff00ba);
  --grad-90: linear-gradient(90deg, #7944e5, #ff00ba);
  --grad-d: linear-gradient(140deg, #5309a2 0%, #7944e5 60%, #9d3fd0 100%);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--body);
  line-height: 1.7;
  font-size: 17px;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.13;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(27px, 4.4vw, 40px);
  margin: 0 0 14px;
}
h3 {
  font-size: 19px;
  font-weight: 700;
}
p {
  margin: 0 0 16px;
}
a {
  color: var(--purple);
  text-decoration: none;
}
a:focus-visible {
  outline: none !important;
}
.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 22px;
}
section {
  padding: 66px 0;
}
.center {
  text-align: center;
}
.lead {
  font-size: 16px;
  max-width: 720px;
  color: var(--body);
}
.grad-txt {
  background: var(--grad-90);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--grad-90);
  border-radius: 2px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 14px;
  font-size: 16px;
  box-shadow: 0 12px 30px rgba(121, 68, 229, 0.3);
  border: none;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(255, 0, 186, 0.32);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #ff00ba;
  color: #fff;
  border: 1.6px solid var(--border);
  font-weight: 700;
  padding: 13.5px 28px;
  border-radius: 14px;
  font-size: 16px;
  transition: border-color 0.15s;
}
.btn-ghost:hover {
  border-color: var(--purple-l);
  transform: translateY(-2px);
}
.ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.ic svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}
.light {
  background: var(--white);
}
.lav {
  background: var(--lav);
}
.lav p {
  font-size: 16px;
}
.palepink {
  background: var(--palepink);
}
.light h2,
.lav h2,
.palepink h2 {
  color: var(--ink);
}
.band {
  background: var(--grad-d);
  color: #efe6ff;
  position: relative;
  overflow: hidden;
}
.band h2,
.band h3 {
  color: #fff;
}
.band .lead {
  color: #e2d4fa;
}
.band .eyebrow {
  color: #ffc6ef;
}
.band .eyebrow::before {
  background: #ff00ba;
}
.card {
  border-radius: 20px;
  padding: 26px;
}
.card-l {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 8px 26px rgba(59, 61, 63, 0.05);
}
.card-g {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
}
.card-g h3 {
  color: #fff;
}
.card h3 {
  margin: 0 0 8px;
}
.card p {
  font-size: 14px;
  margin: 0;
}
.grid {
  display: grid;
  gap: 20px;
}
.g2 {
  grid-template-columns: 1fr 1fr;
}
.g3 {
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
}
.g4 {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.icbox {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--grad);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(121, 68, 229, 0.28);
}
.icbox svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}
.icbox-soft {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--lav);
  border: 1px solid #e3d6fa;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.icbox-soft svg {
  width: 24px;
  height: 24px;
  stroke: var(--purple);
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fbfbfb;
  border: 1px solid #eaeaea;
  color: #3a3d3f;
  font-weight: 600;
  font-size: 13.5px;
  padding: 8px 15px;
  border-radius: 30px;
}
.chip .ic {
  color: #ff00ba;
}
.chip .ic svg {
  width: 15px;
  height: 15px;
}
.list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 13px;
  color: var(--body);
}
.list li .ic {
  position: absolute;
  left: 0;
  top: 2px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--grad);
}
.list li .ic svg {
  width: 12px;
  height: 12px;
  stroke-width: 3;
  stroke: #fff;
}
details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
}
summary {
  cursor: pointer;
  padding: 19px 24px;
  font-weight: 600;
  color: var(--ink);
  font-size: 16.5px;
  list-style: none;
  position: relative;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "";
  position: absolute;
  right: 24px;
  top: 24px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--pink);
  border-bottom: 2px solid var(--pink);
  transform: rotate(45deg);
  transition: transform 0.2s;
}
details[open] summary:after {
  transform: rotate(-135deg);
}
details p {
  padding: 0 24px 21px;
  margin: 0;
  font-size: 15.5px;
  color: var(--body);
}
.muted {
  font-size: 14px;
  color: var(--body);
}
.announce {
  background: var(--grad-90);
  color: #fff;
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  padding: 11px 16px;
}
.announce strong {
  font-weight: 700;
}
header.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.02em;
}
.logo .mk {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 auto;
}
.logo .mk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.logo .tag {
  font-size: 12px;
  font-weight: 500;
  color: #d9c6f5;
  letter-spacing: 0;
}
.nav-r {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-r a.si {
  color: #7945e5;
  font-weight: 700;
  font-size: 14px;
  background: #ffffff;
  border: 1.6px solid rgba(255, 255, 255, 0.9);
  padding: 9px 24px;
  border-radius: 11px;
  transition:
    background 0.15s,
    transform 0.15s;
}
.nav-r a.si:hover {
  transform: translateY(-1px);
}
.nav-r .si-up {
  background: #ff00ba;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 11px;
}
.nav-r .si-up:hover {
  transform: translateY(-1px);
}
/* sticky header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #7945e5;
  box-shadow: 0 3px 24px rgba(83, 9, 162, 0.22);
}
.topbar .bar {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 22px;
}
/* hero media image */
.hero-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #7944e5, #ff00ba);
  box-shadow: 0 30px 70px rgba(30, 4, 60, 0.4);
  aspect-ratio: 4/5;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: #5309a2;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
.mb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25e39a;
}
.hero {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: #efe6ff;
  padding: 42px 0 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 46px;
  align-items: center;
  margin-top: 22px;
}
.hero h1 {
  font-size: clamp(33px, 5.6vw, 54px);
  color: #7945e5;
  font-weight: 800;
  background: var(--grad-90);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .sub {
  font-size: 16px;
  color: var(--body);
  margin: 18px 0 0;
  max-width: 540px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero-cta .btn {
  box-shadow: 0 12px 34px rgba(255, 0, 186, 0.4);
}
.signin {
  margin-top: 16px;
  font-size: 14px;
  color: #777777;
  font-weight: 500;
}
.signin a {
  color: #ff00ba;
  font-weight: 600;
  text-decoration: underline;
}
.tx {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 70px rgba(30, 4, 60, 0.4);
}
.tx-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.tx-top .t {
  font-weight: 700;
  color: #fff;
  font-size: 17px;
}
.tx-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: #ffc6ef;
  border: 1px solid rgba(255, 198, 239, 0.35);
  padding: 5px 12px;
  border-radius: 20px;
}
.tx-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25e39a;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 227, 154, 0.5);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(37, 227, 154, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 227, 154, 0);
  }
}
.tx-row {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.tx-row:first-of-type {
  border-top: none;
}
.tx-av {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 15px;
  flex: 0 0 auto;
}
.tx-mid {
  flex: 1;
  min-width: 0;
}
.tx-user {
  color: #fff;
  font-weight: 600;
  font-size: 14.5px;
}
.tx-act {
  color: #c9b6ed;
  font-size: 12.5px;
}
.tx-amt {
  font-weight: 700;
  font-size: 15px;
  text-align: right;
}
.tx-amt .tm {
  color: #b29bd8;
  font-weight: 500;
  font-size: 11px;
  display: block;
}
.stats {
  border-top: 1px solid #eaeaea;
  margin-top: 52px;
  padding-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat {
  position: relative;
  align-items: center;
  text-align: center;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 46px;
  background: #eaeaea;
}
.stat .n {
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 36px);
  color: #7945e5;
  letter-spacing: -0.02em;
}
.stat .l {
  font-size: 13px;
  color: #000;
  margin-top: 5px;
  letter-spacing: 0.02em;
}
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 34px;
  max-width: 580px;
  margin: 0 auto;
  box-shadow: 0 30px 70px rgba(121, 68, 229, 0.14);
}
.form-card h2 {
  text-align: center;
  font-size: 26px;
}
.field {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 13px;
  font-size: 15px;
  margin-bottom: 12px;
  color: var(--ink);
  background: var(--surface);
}
.field:focus {
  outline: none;
  border-color: var(--purple);
  background: #fff;
}
.field::placeholder {
  color: #a9a9ad;
}
.row3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.form-btn {
  width: 100%;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  padding: 16px;
  border: none;
  border-radius: 13px;
  font-size: 17px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(121, 68, 229, 0.28);
}
.review {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.stars {
  color: #ff00ba;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.rev-who {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}
.rev-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.cat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 12px 20px;
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
  transition:
    border-color 0.15s,
    transform 0.15s,
    box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(59, 61, 63, 0.04);
}
.cat:hover {
  border-color: var(--purple);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(121, 68, 229, 0.12);
}
.cat b {
  color: var(--mlav);
  font-weight: 500;
  font-size: 13px;
}
.cat em {
  background: var(--grad);
  color: #fff;
  font-style: normal;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: 20px;
  text-transform: uppercase;
}
.logos {
  display: flex;
  flex-wrap: wrap;
  gap: 26px 44px;
  justify-content: center;
  align-items: center;
}
.logos span {
  color: #9a9aa0;
}
.plogo {
  height: 32px;
  width: auto;
  object-fit: contain;
  opacity: 0.72;
  filter: saturate(0.92);
  transition:
    opacity 0.18s ease,
    filter 0.18s ease;
}
.plogo:hover {
  opacity: 1;
  filter: none;
}
@media (max-width: 560px) {
  .logos {
    gap: 20px 30px;
  }
  .plogo {
    height: 25px;
  }
}
.final {
  background: var(--grad);
  color: #fff;
  text-align: center;
}
.final h2 {
  color: #fff;
}
.final p {
  color: #fff;
  opacity: 0.96;
  max-width: 600px;
  margin: 0 auto 24px;
}
.final .btn {
  background: #fff;
  color: var(--purple);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}
footer {
  background: #2a0a4e;
  color: #b79fd8;
  padding: 44px 0 34px;
  font-size: 14px;
}
footer a {
  color: #d6c6f2;
}
footer .logo {
  margin-bottom: 12px;
}
@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .g2 {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .stat + .stat::before {
    display: none;
  }
  @media (max-width: 820px) {
    .earn-grid {
      grid-template-columns: 1fr;
    }
    .sub {
      max-width: 100% !important;
    }
  }
}

/* earnings tiers */
.earn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
  align-items: stretch;
}
.earn-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 20px;
  padding: 32px 24px;
  position: relative;
}
.earn-featured {
  border: 2px solid #ff00ba;
  box-shadow:
    0 0 0 4px rgba(255, 0, 186, 0.13),
    0 22px 44px rgba(121, 68, 229, 0.16);
}
.earn-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #7944e5, #ff00ba);
  color: #fff;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(255, 0, 186, 0.13);
}
.earn-tier {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7944e5;
  margin-bottom: 12px;
}
.earn-featured .earn-tier {
  margin-top: 6px;
}
.earn-price {
  font-weight: 800;
  font-size: clamp(25px, 2.8vw, 33px);
  color: #3b3d3f;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.earn-price span {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #777777;
  margin-top: 4px;
  letter-spacing: 0;
}
.earn-card p {
  font-size: 14.5px;
  color: #777777;
  margin: 16px 0 0;
  line-height: 1.6;
}
.earn-disc {
  max-width: 680px;
  margin: 38px auto 0;
  font-size: 14px;
  color: #777777;
}
/* fixed bottom CTA */
.fixed-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: linear-gradient(135deg, #7944e5, #ff00ba);
  box-shadow: 0 -6px 26px rgba(0, 0, 0, 0.2);
}
.fc-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.fc-text {
  color: #fff;
  font-weight: 700;
  font-size: clamp(15px, 3.6vw, 18px);
}
.fc-btn {
  background: #fff;
  color: #7944e5;
  font-weight: 700;
  font-size: 15px;
  padding: 11px 24px;
  border-radius: 40px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
  transition: transform 0.15s;
}
.fc-btn:hover {
  transform: translateY(-2px);
}
body {
  padding-bottom: 76px;
}
@media (max-width: 820px) {
  .earn-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .fc-inner {
    padding: 10px 16px;
  }
  .fc-btn {
    padding: 10px 18px;
    font-size: 14px;
  }
}

.vs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 34px;
  text-align: left;
}
.vs-card {
  border-radius: 20px;
  padding: 28px;
}
.vs-win {
  background: #fff;
  border: 2px solid #7944e5;
  box-shadow: 0 22px 46px rgba(121, 68, 229, 0.14);
}
.vs-lose {
  background: #fbfbfb;
  border: 1px solid #eaeaea;
}
.vs-tag {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 6px;
}
.vs-win .vs-tag {
  color: #ff00ba;
}
.vs-lose .vs-tag {
  color: #b0b0b8;
}
.vs-card h3 {
  font-size: 20px;
  margin: 0 0 18px;
}
.vs-win h3 {
  color: #7944e5;
}
.vs-lose h3 {
  color: #3b3d3f;
}
.vs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vs-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 13px;
  font-size: 15px;
  line-height: 1.5;
}
.vs-win .vs-list li {
  color: #3b3d3f;
}
.vs-lose .vs-list li {
  color: #777777;
}
.vs-list li .mk2 {
  position: absolute;
  left: 0;
  top: 1px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.vs-list li .mk2 svg {
  width: 12px;
  height: 12px;
  stroke-width: 3;
  fill: none;
}
.vs-win .mk2 {
  background: linear-gradient(135deg, #7944e5, #ff00ba);
}
.vs-win .mk2 svg {
  stroke: #fff;
}
.vs-lose .mk2 {
  background: #e8e8ed;
}
.vs-lose .mk2 svg {
  stroke: #a0a0a8;
}
.punch {
  margin: 32px 0 0;
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 21px);
  color: #3b3d3f;
}
@media (max-width: 640px) {
  .vs {
    grid-template-columns: 1fr;
  }
}

/* USP money + buyers showcase */
.usp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 820px;
  margin: 34px auto 4px;
}
.usp-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 18px;
  box-shadow: 0 10px 30px rgba(121, 68, 229, 0.08);
}
.usp-n {
  font-weight: 800;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.usp-l {
  font-size: 14px;
  color: var(--body);
  margin-top: 10px;
  line-height: 1.45;
}
@media (max-width: 640px) {
  .usp-stats {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 420px;
  }
  .usp-stat {
    padding: 22px 18px;
  }
}

/* ---- Mobile responsiveness ---- */
@media (max-width: 768px) {
  section {
    padding: 52px 0;
  }
  .wrap {
    padding: 0 18px;
  }
  .hero {
    padding: 34px 0 54px;
  }
}
@media (max-width: 560px) {
  body {
    font-size: 16px;
    padding-bottom: 66px;
  }
  section {
    padding: 44px 0;
  }
  .wrap {
    padding: 0 16px;
  }
  .announce {
    font-size: 12.5px;
    padding: 10px 14px;
    line-height: 1.45;
  }
  .topbar .bar {
    padding: 11px 16px;
  }
  .logo {
    font-size: 18px;
    gap: 8px;
  }
  .logo .mk {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }
  .logo .tag {
    display: none;
  }
  .nav-r {
    gap: 9px;
  }
  .nav-r a.si {
    padding: 8px 13px;
    font-size: 13.5px;
  }
  .nav-r .si-up {
    padding: 9px 16px;
    font-size: 13.5px;
  }
  .hero {
    padding: 28px 0 46px;
  }
  .hero-grid {
    gap: 30px;
    margin-top: 16px;
  }
  .hero .sub {
    font-size: 14px;
  }
  .lead {
    font-size: 14px;
  }
  .btn,
  .btn-ghost {
    padding: 13px 22px;
    font-size: 15px;
  }
  .hero-cta {
    gap: 10px;
  }
  .hero-cta .btn,
  .hero-cta .btn-ghost {
    flex: 1 1 100%;
    justify-content: center;
  }
  .stats {
    margin-top: 34px;
    padding-top: 26px;
    gap: 18px;
  }
  .card {
    padding: 22px;
  }
  .vs-card {
    padding: 22px;
  }
  .form-card {
    padding: 26px 20px;
  }
  .form-card h2 {
    font-size: 23px;
  }
  summary {
    padding: 16px 18px;
    font-size: 15.5px;
  }
  summary:after {
    right: 18px;
    top: 21px;
  }
  details p {
    padding: 0 18px 18px;
  }
  .earn-card {
    padding: 28px 22px;
  }
  .cat {
    padding: 11px 16px;
    font-size: 14px;
  }
  .lav p {
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .wrap {
    padding: 0 14px;
  }
  h2 {
    font-size: 23px;
  }
  .hero h1 {
    font-size: 26px;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .nav-r a.si {
    padding: 7px 11px;
    font-size: 13px;
  }
  .nav-r .si-up {
    padding: 8px 13px;
    font-size: 13px;
  }
  .row3 {
    gap: 8px;
  }
  .field {
    padding: 13px 14px;
  }
  .fc-text {
    font-size: 14px;
  }
  .chip {
    font-size: 12px;
  }
}

/* Form feedback + loader + turnstile */
.ff_alert_danger {
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-top: 1rem;
  margin-bottom: 0;
  border-radius: 13px;
  text-align: center;
  font-size: 14px;
}
.ff_new_alert_btn {
  font-weight: 600 !important;
  font-size: 18px !important;
  background: #fff !important;
  border: 2px solid #7945e5 !important;
  border-radius: 100px !important;
  color: #7945e5 !important;
  padding: 14px 28px !important;
  min-width: 220px;
}
.ff_new_alert_btn:hover {
  background: #7945e5 !important;
  color: #fff !important;
}
body.loader-open {
  overflow: hidden;
}
.loader-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999999;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6) !important;
}
.circles {
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader-wrapper circle,
.loader-wrapper path {
  fill: #7945e5;
}
#cf-turnstile-widget {
  margin: 8px 0 18px;
  min-height: 65px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: visible;
}
#cf-turnstile-widget iframe {
  display: block !important;
  margin: 0;
}
