/* MarketPaid - guest landing (#home markup, large type) */

body.mp-body--landing {
  font-family: var(--font, "Inter", system-ui, sans-serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-dark, #111827);
  background: linear-gradient(to bottom, var(--primary, #22a85c) 0%, #2ecc71 100%) !important;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Money / earning decorative background - full page (header → footer) */
#landing-bg {
  --bg-cell: 2.05rem;
  --bg-gap-x: 2px;
  --bg-gap-y: 2px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  min-height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fill, var(--bg-cell));
  grid-auto-rows: var(--bg-cell);
  column-gap: var(--bg-gap-x);
  row-gap: var(--bg-gap-y);
  padding: 2px;
  align-content: start;
  justify-content: start;
}

#landing-bg i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.44rem;
  color: #ffffff;
  line-height: 1;
  user-select: none;
  transform: rotate(var(--bg-rot, 0deg));
}

@media (min-width: 1200px) {
  #landing-bg {
    --bg-cell: 1.95rem;
  }

  #landing-bg i {
    font-size: 1.36rem;
  }
}

@media (max-width: 768px) {
  #landing-bg {
    --bg-cell: 1.75rem;
    --bg-gap-x: 2px;
    --bg-gap-y: 2px;
  }

  #landing-bg i {
    font-size: 1.24rem;
  }
}

body.mp-body--landing .mp-main--guest {
  position: relative;
  z-index: 1;
  background: transparent !important;
  flex-grow: 0;
  padding: 0;
}

body.mp-body--landing .mp-landing-header,
body.mp-body--landing .mp-footer--landing {
  position: relative;
  z-index: 2;
}

/* Navbar */
.mp-landing-header {
  position: sticky;
  top: 0;
  z-index: 1030;
}

.mp-topbar-landing {
  min-height: 4rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--border, rgba(17, 24, 39, 0.08)) !important;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8), 0 4px 24px rgba(17, 24, 39, 0.06);
}

.mp-topbar-landing::after {
  display: none;
}

.mp-brand-logo--landing .mp-brand-logo__market {
  color: #111827;
}

.mp-brand-logo--landing .mp-brand-logo__tagline {
  color: #6b7280;
}

.mp-landing-nav-link {
  color: var(--text-muted, #6b7280) !important;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem !important;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.mp-landing-nav-link:hover,
.mp-landing-nav-link:focus {
  color: var(--text-dark, #111827) !important;
  background: var(--primary-light, #e9fff2);
}

.mp-landing-nav-link--signin {
  color: var(--text-dark, #111827) !important;
  font-weight: 600;
}

.mp-landing-nav-divider {
  display: inline-block;
  width: 1px;
  height: 1.25rem;
  background: var(--border, rgba(17, 24, 39, 0.12));
}

.mp-landing-nav-cta {
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(34, 168, 92, 0.3);
}

.mp-landing-nav-cta.btn-success {
  background: linear-gradient(135deg, var(--primary, #22a85c) 0%, #2ecc71 100%) !important;
  border: none !important;
}

.mp-landing-toggler {
  padding: 0.45rem 0.6rem;
  border-radius: 10px;
  border: 1px solid var(--border, rgba(17, 24, 39, 0.1)) !important;
}

.mp-landing-toggler:focus {
  box-shadow: 0 0 0 3px rgba(34, 168, 92, 0.25);
}

@media (max-width: 991.98px) {
  .mp-topbar-landing .navbar-collapse {
    margin-top: 0.75rem;
    padding: 1rem;
    border-radius: var(--radius-sm, 12px);
    background: var(--card, #fff);
    border: 1px solid var(--border);
    box-shadow: var(--shadow, 0 4px 24px rgba(17, 24, 39, 0.08));
  }

  .mp-landing-nav-cta {
    width: 100%;
    margin-top: 0.5rem;
    justify-content: center;
  }
}

.mp-footer--landing {
  margin-top: 0 !important;
  padding: 0 !important;
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  border-color: rgba(255, 255, 255, 0.5) !important;
  color: #4b5563 !important;
  box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.08);
}

.mp-footer--landing > .container {
  max-width: 1200px;
  padding: 2.5rem 1.5rem 1.5rem;
}

.mp-footer--landing > .container > div:first-child {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

@media (min-width: 768px) {
  .mp-footer--landing > .container > div:first-child {
    grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }
}

.mp-footer--landing > .container > div:first-child > div:first-child p {
  font-family: "Poppins", var(--font, system-ui, sans-serif);
  font-size: 0.92rem;
  line-height: 1.6;
  color: #64748b;
  margin: 1rem 0 0;
  max-width: 22rem;
}

.mp-footer--landing nav h2,
.mp-footer--landing > .container > div:first-child > div:last-child h2 {
  font-family: "Poppins", var(--font, system-ui, sans-serif);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f172a;
  margin: 0 0 0.85rem;
}

.mp-footer--landing nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.mp-footer--landing nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mp-footer--landing nav a:hover {
  color: var(--primary, #22a85c);
  transform: translateX(2px);
}

.mp-footer--landing > .container > div:first-child > div:last-child p:first-of-type {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #64748b;
  margin: 0 0 1rem;
  max-width: 14rem;
}

.mp-footer--landing > .container > div:first-child > div:last-child > p:last-of-type {
  margin: 0;
}

.mp-footer--landing > .container > div:first-child > div:last-child > p:last-of-type a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary, #22a85c) 0%, #2ecc71 100%);
  box-shadow: 0 6px 18px rgba(34, 168, 92, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mp-footer--landing > .container > div:first-child > div:last-child > p:last-of-type a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(34, 168, 92, 0.35);
  color: #fff;
}

.mp-footer--landing > .container > div:last-child {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  font-size: 0.85rem;
  color: #94a3b8;
}

.mp-footer--landing > .container > div:last-child p {
  margin: 0;
}

.mp-footer--landing > .container > div:last-child p:first-child span {
  font-weight: 600;
  color: #64748b;
}

@media (max-width: 767.98px) {
  .mp-footer--landing > .container {
    padding: 2rem 1.25rem 1.25rem;
  }

  .mp-footer--landing > .container > div:last-child {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --- Home page --- */
#home {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
}

#home > section {
  margin-bottom: 2.5rem;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius, 20px);
  border: 1px solid var(--border, rgba(17, 24, 39, 0.08));
  box-shadow: var(--shadow, 0 4px 24px rgba(17, 24, 39, 0.06));
}

#home > section:last-child {
  margin-bottom: 0;
}

/* Hero */
#top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (min-width: 992px) {
  #top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3.5rem 2.5rem;
    margin-top: 2.5rem;
  }
}

#top > div:first-child {
  max-width: 34rem;
}

#top > div:first-child > p:first-child {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--primary-dark, #137a3f);
  background: var(--primary-light, #e9fff2);
  border: 1px solid rgba(34, 168, 92, 0.2);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

#top h1 {
  font-size: clamp(2.25rem, 5vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
  color: var(--text-dark, #111827);
  margin-bottom: 1.15rem;
}

#top h1 span {
  color: var(--primary, #22a85c);
}

#top > div:first-child > p:nth-of-type(2) {
  font-size: 1.125rem;
  line-height: 1.65;
  font-weight: 400;
  color: #4b5563;
  margin-bottom: 1.75rem;
}

#top ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

#top ul li {
  position: relative;
  padding-left: 1.85rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark, #111827);
  line-height: 1.45;
}

#top ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  color: var(--primary, #22a85c);
  font-weight: 800;
  font-size: 1.1rem;
}

#top > div:first-child > p:last-of-type {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
}

#top > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
}

#top img {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: var(--radius, 20px);
  box-shadow: none;
  border: none;
  display: block;
  margin: 0 auto;
}

/* Hero stats (under image) */
#top #stats {
  font-family: "Poppins", var(--font, system-ui, sans-serif);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  width: 100%;
  max-width: 560px;
  margin: 2.25rem 0 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

#top #stats article {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.55rem 0.45rem 0.6rem;
  border-radius: 0.75rem;
  background: transparent;
  border: none;
  box-shadow: none;
}

#top #stats article:hover {
  background: transparent;
}

#top #stats article span {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
  margin: 0 0 0.25rem;
}

#top #stats article h2 {
  font-family: inherit;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #64748b;
  margin: 0 0 0.15rem;
}

#top #stats article p {
  font-family: inherit;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.05;
  color: #0f172a;
}

#top #stats article[data-stat="members"] p {
  color: #137a3f;
}

#top #stats article[data-stat="payouts"] p {
  color: #1d4ed8;
}

#top #stats article[data-stat="views"] p {
  color: #6d28d9;
}

@media (max-width: 575.98px) {
  #top #stats {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    max-width: 100%;
  }

  #top #stats article {
    flex-direction: row;
    text-align: left;
    align-items: center;
    column-gap: 0.75rem;
    padding: 0.5rem 0.75rem;
  }

  #top #stats article span {
    margin: 0;
    font-size: 1.5rem;
    flex-shrink: 0;
  }

  #top #stats article h2 {
    margin-bottom: 0.1rem;
  }
}

/* Activity row: withdrawals (8) + sidebar (4) */
#home > section#activity {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  box-shadow: none;
  border-radius: 1.25rem;
}

@media (min-width: 992px) {
  #home > section#activity {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    align-items: start;
  }
}

#activity [data-col="8"] {
  min-width: 0;
}

#activity [data-col="4"] {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

#activity #payment-proofs,
#activity #top-earners {
  padding: 1.75rem 1.5rem;
  background: rgba(238, 242, 246, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: 1.25rem;
  box-shadow: none;
  margin: 0;
}

@media (min-width: 768px) {
  #activity #payment-proofs,
  #activity #top-earners {
    padding: 2rem 1.75rem;
  }
}

/* BP levels (standalone home section) */
#levels .levels-head {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 1.25rem 1.5rem;
  margin-bottom: 1.15rem;
  padding: 1.35rem 1.4rem;
  border-radius: 1rem;
  color: #ffffff;
  background:
    radial-gradient(circle at 100% 0%, rgba(251, 191, 36, 0.14) 0%, transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(148, 163, 184, 0.12) 0%, transparent 38%),
    linear-gradient(135deg, #0f172a 0%, #1e293b 48%, #334155 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.32);
}

#levels .levels-head__copy {
  flex: 1 1 16rem;
  min-width: 0;
}

#levels .levels-head__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.55rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

#levels .levels-head__eyebrow i {
  font-size: 0.72rem;
}

#levels .levels-head h2 {
  font-family: "Poppins", var(--font, system-ui, sans-serif);
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.4rem;
  color: #ffffff;
}

#levels .levels-head h2 span {
  background: linear-gradient(135deg, #fde68a 0%, #fbbf24 55%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#levels .levels-head__copy > p:last-child {
  margin: 0;
  max-width: 34rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(226, 232, 240, 0.88);
}

#levels .levels-head__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
  align-self: center;
}

#levels .levels-head__stats li {
  min-width: 6.5rem;
  padding: 0.75rem 0.95rem;
  border-radius: 0.85rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

#levels .levels-head__stats strong {
  display: block;
  font-family: "Poppins", var(--font, system-ui, sans-serif);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.1;
}

#levels .levels-head__stats span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(203, 213, 225, 0.82);
}

#levels .levels-table-wrap {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
}

#levels .levels-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

#levels .levels-table thead th {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #e2e8f0;
  text-align: left;
  padding: 0.9rem 1.2rem;
  background: #1e293b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

#levels .levels-table thead th i {
  margin-right: 0.35rem;
  font-size: 0.82rem;
  opacity: 0.85;
  vertical-align: -0.05em;
}

#levels .levels-table thead th.text-end {
  text-align: right;
}

#levels .levels-table tbody tr {
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

#levels .levels-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

#levels .levels-table tbody tr:hover {
  background: #f0fdf4;
}

#levels .levels-table tbody tr[data-tier="1"],
#levels .levels-table tbody tr[data-tier="2"],
#levels .levels-table tbody tr[data-tier="3"] {
  box-shadow: inset 4px 0 0 #8b5cf6;
}

#levels .levels-table tbody tr[data-tier="4"],
#levels .levels-table tbody tr[data-tier="5"],
#levels .levels-table tbody tr[data-tier="6"] {
  box-shadow: inset 4px 0 0 #3b82f6;
}

#levels .levels-table tbody tr[data-tier="7"],
#levels .levels-table tbody tr[data-tier="8"] {
  box-shadow: inset 4px 0 0 #22a85c;
}

#levels .levels-table tbody tr[data-tier="9"],
#levels .levels-table tbody tr[data-tier="10"],
#levels .levels-table tbody tr[data-tier="11"] {
  box-shadow: inset 4px 0 0 #d97706;
}

#levels .levels-table tbody tr.levels-table__row--max {
  background: linear-gradient(90deg, rgba(254, 243, 199, 0.55) 0%, rgba(255, 255, 255, 0) 72%);
}

#levels .levels-table tbody tr.levels-table__row--max:hover {
  background: linear-gradient(90deg, rgba(254, 243, 199, 0.72) 0%, #f0fdf4 72%);
}

#levels .levels-table tbody tr:last-child td {
  border-bottom: none;
}

#levels .levels-table tbody td {
  padding: 0.78rem 1.2rem;
  color: #334155;
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
  vertical-align: middle;
  font-variant-numeric: tabular-nums;
}

#levels .levels-table__level {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  color: #0f172a;
}

#levels .levels-table__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.6rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: #137a3f;
  background: #dcfce7;
  border: 1px solid rgba(34, 168, 92, 0.2);
  flex-shrink: 0;
}

#levels .levels-table tbody tr[data-tier="9"] .levels-table__badge,
#levels .levels-table tbody tr[data-tier="10"] .levels-table__badge,
#levels .levels-table tbody tr[data-tier="11"] .levels-table__badge {
  color: #92400e;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-color: rgba(217, 119, 6, 0.28);
}

#levels .levels-table__name {
  min-width: 0;
}

#levels .levels-table__bp-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #475569;
  background: #f1f5f9;
  border: 1px solid rgba(17, 24, 39, 0.07);
  white-space: nowrap;
}

#levels .levels-table__bp-chip i {
  font-size: 0.78rem;
  color: var(--primary, #22a85c);
}

#levels .levels-table__bonus-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 0.1rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #166534;
  background: #dcfce7;
  border: 1px solid rgba(34, 168, 92, 0.22);
  white-space: nowrap;
}

#levels .levels-table__bonus-pill small {
  font-size: 0.72rem;
  font-weight: 700;
  color: #15803d;
  opacity: 0.85;
}

#levels .levels-table tbody tr.levels-table__row--max .levels-table__bonus-pill {
  color: #92400e;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-color: rgba(217, 119, 6, 0.28);
}

#levels .levels-table tbody tr.levels-table__row--max .levels-table__bonus-pill small {
  color: #b45309;
}

@media (max-width: 575.98px) {
  #levels .levels-head {
    padding: 1.15rem 1.1rem;
  }

  #levels .levels-head__stats {
    width: 100%;
  }

  #levels .levels-head__stats li {
    flex: 1 1 calc(50% - 0.35rem);
    min-width: 0;
  }

  #levels .levels-table {
    font-size: 0.9rem;
  }

  #levels .levels-table thead th,
  #levels .levels-table tbody td {
    padding: 0.65rem 0.8rem;
  }

  #levels .levels-table thead th i {
    display: none;
  }

  #levels .levels-table__level {
    gap: 0.5rem;
  }

  #levels .levels-table__badge {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.74rem;
  }

  #levels .levels-table__bp-chip {
    padding: 0.28rem 0.5rem;
    font-size: 0.84rem;
  }

  #levels .levels-table__bonus-pill {
    padding: 0.32rem 0.58rem;
    font-size: 0.9rem;
  }
}

/* Payment proofs (home teaser) */

#activity #payment-proofs {
  padding: 1.15rem 1.2rem;
}

@media (min-width: 768px) {
  #activity #payment-proofs {
    padding: 1.25rem 1.35rem;
  }
}

#payment-proofs > header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

#payment-proofs > header > span:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.65rem;
  color: #ffffff;
  background: #22a85c;
  flex-shrink: 0;
}

#payment-proofs > header > span:first-child i {
  font-size: 1rem;
  line-height: 1;
}

#payment-proofs > header > div {
  flex: 1 1 12rem;
  min-width: 0;
}

#payment-proofs > header h2 {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.1rem;
  color: #0f172a;
}

#payment-proofs > header > div > p {
  font-size: 0.78rem;
  color: #64748b;
  margin: 0;
}

#payment-proofs .proofs-view-more-wrap {
  margin: 0.65rem 0 0;
  padding: 0;
  text-align: center;
}

#payment-proofs .proofs-view-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 8.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #137a3f;
  background: #ffffff;
  border: 1px solid rgba(34, 168, 92, 0.28);
  padding: 0.42rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

#payment-proofs .proofs-view-more:hover {
  background: #f0fdf4;
  border-color: rgba(34, 168, 92, 0.45);
  color: #0f5f32;
  transform: translateY(-1px);
}

#payment-proofs .proofs-view-more i {
  font-size: 0.72rem;
}

/* Empty state */
#payment-proofs > div:only-of-type {
  text-align: center;
  padding: 2rem 1rem 1.5rem;
  background: #ffffff;
  border: 1px dashed rgba(17, 24, 39, 0.12);
  border-radius: 1rem;
}

#payment-proofs > div:only-of-type > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 0.85rem;
  color: #64748b;
  background: #f1f5f9;
  border: 1px solid rgba(17, 24, 39, 0.08);
}

#payment-proofs > div:only-of-type > span i {
  font-size: 1.5rem;
}

#payment-proofs > div:only-of-type p {
  margin: 0.2rem 0;
  font-size: 1rem;
  color: #64748b;
}

#payment-proofs > div:only-of-type p strong {
  display: block;
  font-size: 1.15rem;
  color: #0f172a;
  margin-bottom: 0.35rem;
}

/* List */
#payment-proofs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

#payment-proofs ul li {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  grid-template-rows: auto;
  align-items: center;
  gap: 0.35rem 0.65rem;
  padding: 0.45rem 0.65rem;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 0.6rem;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#payment-proofs ul li:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.06);
}

#payment-proofs ul li > span:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 0.45rem;
  flex-shrink: 0;
}

#payment-proofs ul li > span:first-child i {
  font-size: 0.82rem;
  line-height: 1;
}

#payment-proofs ul li > div {
  min-width: 0;
}

#payment-proofs ul li strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.05rem;
  line-height: 1.2;
}

#payment-proofs ul li > div > span {
  display: block;
  font-size: 0.68rem;
  color: #64748b;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#payment-proofs ul li span[data-part="status"] {
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.18rem 0.4rem;
  border-radius: 999px;
  white-space: nowrap;
}

#payment-proofs ul li span[data-part="amount"] {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-align: right;
}

/* Row icon + status colors */
#payment-proofs ul li[data-status="paid"] > span:first-child {
  color: #fff;
  background: #22a85c;
}

#payment-proofs ul li[data-status="paid"] span[data-part="status"] {
  color: #166534;
  background: #dcfce7;
  border: 1px solid rgba(34, 168, 92, 0.2);
}

#payment-proofs ul li[data-status="paid"] span[data-part="amount"] {
  color: #137a3f;
}

#payment-proofs ul li[data-status="approved"] > span:first-child {
  color: #fff;
  background: #2563eb;
}

#payment-proofs ul li[data-status="approved"] span[data-part="status"] {
  color: #1e40af;
  background: #dbeafe;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

#payment-proofs ul li[data-status="approved"] span[data-part="amount"] {
  color: #1d4ed8;
}

#payment-proofs ul li[data-status="pending"] > span:first-child {
  color: #fff;
  background: #d97706;
}

#payment-proofs ul li[data-status="pending"] span[data-part="status"] {
  color: #92400e;
  background: #fef3c7;
  border: 1px solid rgba(217, 119, 6, 0.25);
}

#payment-proofs ul li[data-status="pending"] span[data-part="amount"] {
  color: #0f172a;
}

#payment-proofs ul li[data-status="rejected"] > span:first-child {
  color: #fff;
  background: #dc2626;
}

#payment-proofs ul li[data-status="rejected"] span[data-part="status"] {
  color: #991b1b;
  background: #fee2e2;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

#payment-proofs ul li[data-status="rejected"] span[data-part="amount"] {
  color: #b91c1c;
}

/* Top earners */
#top-earners > header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

#top-earners > header > span:first-child {
  font-size: 1.65rem;
  line-height: 1;
  flex-shrink: 0;
}

#top-earners > header h2 {
  font-family: "Poppins", var(--font, system-ui, sans-serif);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.15rem;
  color: #0f172a;
}

#top-earners > header p {
  margin: 0;
}

#top-earners .top-earners__period {
  font-family: "Poppins", var(--font, system-ui, sans-serif);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #475569;
}

#top-earners .top-earners__period-num {
  color: var(--primary, #22a85c);
  font-weight: 800;
}

#top-earners > p {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
}

#top-earners ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

#top-earners ol li {
  display: grid;
  align-items: center;
  gap: 0.5rem 0.65rem;
  padding: 0.7rem 0.85rem;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 0.75rem;
  grid-template-columns: auto 1fr auto;
}

#top-earners ol li span[data-part="rank"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  color: #0f172a;
  background: #f1f5f9;
}

#top-earners ol li[data-rank="1"] span[data-part="rank"] {
  color: #854d0e;
  background: #fef3c7;
}

#top-earners ol li[data-rank="2"] span[data-part="rank"] {
  color: #475569;
  background: #e2e8f0;
}

#top-earners ol li[data-rank="3"] span[data-part="rank"] {
  color: #9a3412;
  background: #ffedd5;
}

#top-earners ol li strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#top-earners ol li > div {
  min-width: 0;
}

#top-earners ol li > div > span {
  display: block;
  font-size: 0.76rem;
  color: #64748b;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#top-earners .top-earner-country {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  max-width: 100%;
}

#top-earners .top-earner-country__flag {
  flex-shrink: 0;
  display: block;
  width: 1.25rem;
  height: 0.94rem;
  object-fit: cover;
  border-radius: 2px;
  box-shadow:
    0 2px 6px rgba(15, 23, 42, 0.28),
    0 1px 2px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(15, 23, 42, 0.1);
}

#top-earners .top-earner-country > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#top-earners ol li span[data-part="amount"] {
  font-size: 0.9rem;
  font-weight: 800;
  color: #137a3f;
  white-space: nowrap;
}
@media (max-width: 575.98px) {
  #payment-proofs ul li {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
    gap: 0.25rem 0.55rem;
    padding: 0.4rem 0.55rem;
  }

  #payment-proofs ul li span[data-part="status"] {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }

  #payment-proofs ul li span[data-part="amount"] {
    grid-column: 1 / -1;
    grid-row: 3;
    text-align: left;
    padding-top: 0.15rem;
    font-size: 0.85rem;
  }
}

/* Join CTA */
#join {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  overflow: hidden;
  padding: 1.35rem 1.5rem;
  text-align: left;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(255, 255, 255, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
    rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 24px 48px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

#join::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, rgba(34, 168, 92, 0.55) 0%, rgba(46, 204, 113, 0.25) 50%, rgba(255, 255, 255, 0.4) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

@media (min-width: 768px) {
  #join {
    grid-template-columns: minmax(0, 1fr) minmax(0, 42%);
    padding: 1.5rem 1.75rem;
    gap: 1rem;
    align-items: center;
  }
}

@media (min-width: 992px) {
  #join {
    grid-template-columns: minmax(0, 1fr) minmax(0, 46%);
    gap: 0.75rem;
  }
}

#join > div:first-child {
  position: relative;
  z-index: 1;
  max-width: 36rem;
}

#join > div > p:first-child {
  display: inline-block;
  font-family: "Poppins", var(--font, system-ui, sans-serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #137a3f;
  background: rgba(34, 168, 92, 0.12);
  border: 1px solid rgba(34, 168, 92, 0.22);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
}

#join h2 {
  font-family: "Poppins", var(--font, system-ui, sans-serif);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: #0f172a;
  margin: 0 0 0.45rem;
}

#join h2 span {
  background: linear-gradient(135deg, var(--primary, #22a85c) 0%, #16a34a 50%, #2ecc71 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#join > div > p:nth-of-type(2) {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #4b5563;
  margin: 0 0 0.75rem;
}

#join ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

#join ul li {
  font-family: "Poppins", var(--font, system-ui, sans-serif);
  font-size: 0.72rem;
  font-weight: 600;
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid rgba(17, 24, 39, 0.08);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

#join ul li::before {
  content: "✓ ";
  color: var(--primary, #22a85c);
  font-weight: 800;
}

#join > div > p:last-of-type {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
}

#join > div:last-child {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  #join > div:last-child {
    margin-top: 0;
    align-self: stretch;
    justify-content: flex-end;
  }
}

#join > div:last-child img {
  display: block;
  width: 67%;
  max-width: 67%;
  height: auto;
  max-height: 7.4rem;
  object-fit: contain;
  object-position: center;
}

@media (min-width: 768px) {
  #join > div:last-child img {
    max-height: 10.75rem;
    width: 67%;
    max-width: 67%;
    object-fit: contain;
    object-position: center right;
  }
}

@media (min-width: 992px) {
  #join > div:last-child img {
    max-height: 13.4rem;
  }
}

@media (min-width: 1200px) {
  #join > div:last-child img {
    max-height: 16.1rem;
  }
}

/* Links / buttons */
#home a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-sm, 12px);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.25s ease, background 0.25s ease;
}

#home a:hover {
  transform: translateY(-2px);
}

#top > div:first-child > p:last-of-type a:first-child,
#join > div > p:last-of-type a:first-child {
  background: linear-gradient(135deg, var(--primary, #22a85c) 0%, #2ecc71 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(34, 168, 92, 0.35);
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.7rem 1.35rem;
  font-size: 0.95rem;
}

#join > div > p:last-of-type a:first-child i {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

#join > div > p:last-of-type a:first-child:hover i {
  transform: translateX(3px);
}

#top > div:first-child > p:last-of-type a:last-child,
#join > div > p:last-of-type a:last-child {
  background: var(--card, #fff);
  color: var(--primary-dark, #137a3f);
  border: 2px solid rgba(34, 168, 92, 0.3);
  box-shadow: none;
  border-radius: 999px;
  padding: 0.7rem 1.25rem;
  font-size: 0.95rem;
}

#top > div:first-child > p:last-of-type a:last-child:hover,
#join > div > p:last-of-type a:last-child:hover {
  background: var(--primary-light, #e9fff2);
}

@media (max-width: 575.98px) {
  #home {
    padding: 0 1rem 1.5rem;
  }

  #home > section:not(#activity) {
    padding: 2rem 1.25rem;
    margin-bottom: 1.5rem;
  }

  #activity #payment-proofs,
  #activity #top-earners {
    padding: 1.5rem 1.15rem;
  }
}

/* --- Payment proofs page --- */
#payment-proofs-page {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
}

#payment-proofs-page > section {
  margin-bottom: 1.5rem;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius, 20px);
  border: 1px solid var(--border, rgba(17, 24, 39, 0.08));
  box-shadow: var(--shadow, 0 4px 24px rgba(17, 24, 39, 0.06));
}

#proofs-hero {
  margin-top: 2rem;
  text-align: left;
}

#proofs-hero > p:first-child {
  display: inline-block;
  font-family: "Poppins", var(--font, system-ui, sans-serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #137a3f;
  margin-bottom: 0.75rem;
}

#proofs-hero h1 {
  font-family: "Poppins", var(--font, system-ui, sans-serif);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 0.75rem;
  color: #0f172a;
}

#proofs-hero h1 span {
  color: var(--primary, #22a85c);
}

#proofs-hero > p:nth-of-type(2) {
  font-size: 1.05rem;
  color: #475569;
  max-width: 38rem;
  margin-bottom: 1.25rem;
}

.proofs-hero__back a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #137a3f;
  text-decoration: none;
}

.proofs-hero__back a:hover {
  color: #0f5f32;
}

#proofs-table-wrap {
  padding: 1.75rem 1.5rem;
  background: rgba(238, 242, 246, 0.92);
}

@media (min-width: 768px) {
  #proofs-table-wrap {
    padding: 2rem 1.75rem;
  }
}

#proofs-table-wrap > header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

#proofs-table-wrap > header > span:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.85rem;
  color: #ffffff;
  background: #22a85c;
  flex-shrink: 0;
}

#proofs-table-wrap > header > span:first-child i {
  font-size: 1.45rem;
  line-height: 1;
}

#proofs-table-wrap > header > div {
  flex: 1 1 12rem;
  min-width: 0;
}

#proofs-table-wrap > header h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.25rem;
  color: #0f172a;
}

#proofs-table-wrap > header > div > p {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
}

#proofs-table-wrap > header > span[data-live] {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #137a3f;
  background: #dcfce7;
  border: 1px solid rgba(34, 168, 92, 0.25);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  flex-shrink: 0;
}

#proofs-table-wrap > header > span[data-live]::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22a85c;
}

.proofs-empty {
  text-align: center;
  padding: 2rem 1rem 1.5rem;
  background: #ffffff;
  border: 1px dashed rgba(17, 24, 39, 0.12);
  border-radius: 1rem;
}

.proofs-empty > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background: #f1f5f9;
  color: #94a3b8;
}

.proofs-empty > span i {
  font-size: 1.35rem;
}

.proofs-empty p {
  margin: 0;
  color: #64748b;
}

.proofs-empty p strong {
  display: block;
  font-size: 1.05rem;
  color: #0f172a;
  margin-bottom: 0.35rem;
}

.proofs-table-scroll {
  overflow-x: auto;
  border-radius: 1rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #fff;
}

.proofs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.proofs-table thead {
  background: #f8fafc;
}

.proofs-table th {
  padding: 0.85rem 1rem;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  white-space: nowrap;
}

.proofs-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
  color: #334155;
  vertical-align: middle;
}

.proofs-table tbody tr:last-child td {
  border-bottom: none;
}

.proofs-table tbody tr:hover {
  background: rgba(34, 168, 92, 0.04);
}

.proofs-table__amount {
  font-weight: 800;
  color: #137a3f;
  white-space: nowrap;
}

.proofs-table__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.proofs-table__badge--paid {
  color: #166534;
  background: #dcfce7;
  border: 1px solid rgba(34, 168, 92, 0.2);
}

.proofs-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.proofs-pager__info {
  font-size: 0.88rem;
  color: #64748b;
  font-weight: 600;
}

.proofs-pager__links {
  display: flex;
  gap: 0.5rem;
}

.proofs-pager__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #137a3f;
  background: #fff;
  border: 1px solid rgba(34, 168, 92, 0.25);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.proofs-pager__btn:hover:not(.proofs-pager__btn--disabled) {
  background: #dcfce7;
  transform: translateY(-1px);
}

.proofs-pager__btn--disabled {
  opacity: 0.45;
  pointer-events: none;
}

@media (max-width: 767.98px) {
  #payment-proofs-page {
    padding: 0 1rem 1.5rem;
  }

  #payment-proofs-page > section {
    padding: 1.75rem 1.25rem;
  }

  .proofs-table thead {
    display: none;
  }

  .proofs-table tbody tr {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  }

  .proofs-table tbody tr:last-child {
    border-bottom: none;
  }

  .proofs-table td {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.35rem 1rem;
    border: none;
  }

  .proofs-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: #64748b;
    flex-shrink: 0;
  }
}

/* --- Landing static pages (contact, terms) --- */
.landing-static-page {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
}

.landing-static-page > section {
  margin-bottom: 1.5rem;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius, 20px);
  border: 1px solid var(--border, rgba(17, 24, 39, 0.08));
  box-shadow: var(--shadow, 0 4px 24px rgba(17, 24, 39, 0.06));
}

.landing-static-page__hero {
  margin-top: 2rem;
}

.landing-static-page__hero > p:first-child {
  display: inline-block;
  font-family: "Poppins", var(--font, system-ui, sans-serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #137a3f;
  margin-bottom: 0.75rem;
}

.landing-static-page__hero h1 {
  font-family: "Poppins", var(--font, system-ui, sans-serif);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 0.75rem;
  color: #0f172a;
}

.landing-static-page__hero h1 span {
  color: var(--primary, #22a85c);
}

.landing-static-page__hero > p:nth-of-type(2) {
  font-size: 1.05rem;
  color: #475569;
  max-width: 40rem;
  margin-bottom: 1rem;
}

.landing-static-page__back a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #137a3f;
  text-decoration: none;
}

.landing-static-page__back a:hover {
  color: #0f5f32;
}

.landing-static-page__body {
  padding: 1.75rem 1.5rem;
  background: rgba(238, 242, 246, 0.92);
}

.landing-static-page__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .landing-static-page__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.landing-static-card {
  padding: 1.35rem 1.25rem;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 1rem;
}

.landing-static-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.85rem;
  border-radius: 0.75rem;
  color: #fff;
  background: #22a85c;
  font-size: 1.2rem;
}

.landing-static-card h2 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: #0f172a;
}

.landing-static-card p {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.5;
}

.landing-static-card p:last-child {
  margin-bottom: 0;
}

.landing-static-card a {
  font-weight: 700;
  color: #137a3f;
  text-decoration: none;
}

.landing-static-card a:hover {
  color: #0f5f32;
}

.landing-static-page__prose h2 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 1.75rem 0 0.5rem;
  color: #0f172a;
}

.landing-static-page__prose h2:first-child {
  margin-top: 0;
}

.landing-static-page__prose h3 {
  font-size: 0.98rem;
  font-weight: 700;
  margin: 1rem 0 0.4rem;
  color: #1e293b;
}

.landing-static-page__prose ul {
  margin: 0 0 0.85rem;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #475569;
}

.landing-static-page__prose li {
  margin-bottom: 0.35rem;
}

.landing-static-page__prose li:last-child {
  margin-bottom: 0;
}

.landing-static-page--tos .tos-intro {
  padding: 1rem 1.1rem;
  margin-bottom: 0.25rem;
  border-radius: 0.85rem;
  background: #f8fafc;
  border: 1px solid rgba(17, 24, 39, 0.08);
  font-size: 0.92rem;
  line-height: 1.6;
  color: #475569;
}

.landing-static-page__prose p {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #475569;
}

.landing-static-page__prose a {
  color: #137a3f;
  font-weight: 600;
}

.landing-static-page__updated {
  margin-top: 1.5rem !important;
  padding-top: 1rem;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  font-size: 0.85rem !important;
  color: #94a3b8 !important;
}

/* Contact page */
.landing-static-page--contact .contact-hero > p:nth-of-type(2) {
  max-width: 42rem;
  margin-bottom: 1.15rem;
}

.contact-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
}

.contact-hero__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0f172a;
  background: #f0fdf4;
  border: 1px solid rgba(34, 168, 92, 0.18);
}

.contact-hero__highlights i {
  color: #137a3f;
  font-size: 0.85rem;
}

.contact-channels__head {
  margin-bottom: 1.15rem;
}

.contact-channels__head h2 {
  font-family: "Poppins", var(--font, system-ui, sans-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
  color: #0f172a;
}

.contact-channels__head p {
  margin: 0;
  font-size: 0.92rem;
  color: #64748b;
  max-width: 40rem;
}

.contact-channels__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .contact-channels__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
}

.contact-channel-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: 100%;
  padding: 1.25rem 1.2rem;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-channel-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.contact-channel-card--email {
  border-color: rgba(34, 168, 92, 0.22);
  background: linear-gradient(180deg, #ffffff 0%, #f8fffb 100%);
}

.contact-channel-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.75rem;
  color: #ffffff;
  font-size: 1.15rem;
  background: linear-gradient(135deg, #22a85c 0%, #16a34a 100%);
  box-shadow: 0 4px 14px rgba(34, 168, 92, 0.25);
}

.contact-channel-card--ticket .contact-channel-card__icon {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
}

.contact-channel-card--chat .contact-channel-card__icon {
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
  box-shadow: 0 4px 14px rgba(20, 184, 166, 0.22);
}

.contact-channel-card__main {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.contact-channel-card h3 {
  font-size: 1.02rem;
  font-weight: 800;
  margin: 0 0 0.45rem;
  color: #0f172a;
}

.contact-channel-card p {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #64748b;
  flex: 1;
}

.contact-channel-card__action {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #137a3f;
  text-decoration: none;
  word-break: break-all;
}

.contact-channel-card__action:hover {
  color: #0f5f32;
}

.contact-channel-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  align-self: flex-start;
  margin-top: auto;
  padding: 0.48rem 0.95rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #22a85c 0%, #16a34a 100%);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(34, 168, 92, 0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.contact-channel-card__btn:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(34, 168, 92, 0.28);
}

.contact-channel-card__btn--outline {
  color: #0f172a;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.12);
  box-shadow: none;
}

.contact-channel-card__btn--outline:hover {
  color: #137a3f;
  border-color: rgba(34, 168, 92, 0.28);
  background: #f0fdf4;
  box-shadow: none;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 992px) {
  .contact-details {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-details__panel {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem 1.35rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius, 20px);
  border: 1px solid var(--border, rgba(17, 24, 39, 0.08));
  box-shadow: var(--shadow, 0 4px 24px rgba(17, 24, 39, 0.06));
}

.contact-details__panel--hours {
  background:
    radial-gradient(circle at 100% 0%, rgba(251, 191, 36, 0.1) 0%, transparent 42%),
    rgba(255, 255, 255, 0.94);
}

.contact-details__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.7rem;
  color: #137a3f;
  background: #dcfce7;
  font-size: 1.1rem;
}

.contact-details__panel--tips .contact-details__icon {
  color: #854d0e;
  background: #fef3c7;
}

.contact-details__panel h2 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 0.4rem;
  color: #0f172a;
}

.contact-details__panel p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #64748b;
}

.contact-details__panel ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #64748b;
}

.contact-details__panel li + li {
  margin-top: 0.35rem;
}

@media (max-width: 575.98px) {
  .landing-static-page {
    padding: 0 1rem 1.5rem;
  }

  .landing-static-page > section {
    padding: 1.75rem 1.25rem;
  }
}

/* --- How it works --- */
.landing-how__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.landing-how__step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.15rem;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 1rem;
}

.landing-how__step-num {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #22a85c 0%, #2ecc71 100%);
  box-shadow: 0 4px 14px rgba(34, 168, 92, 0.25);
}

.landing-how__step-body {
  min-width: 0;
  flex: 1 1 auto;
}

.landing-how__step-body h2,
.landing-how__step-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.landing-how__step-body p {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #64748b;
}

.landing-how__step-body ul {
  margin: 0.35rem 0 0.65rem;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #64748b;
}

.landing-how__step-body ul li + li {
  margin-top: 0.35rem;
}

.landing-how__step-body p:last-child {
  margin-bottom: 0;
}

.landing-how__step-body a {
  font-weight: 700;
  color: #137a3f;
  text-decoration: none;
}

.landing-how__step-body a:hover {
  color: #0f5f32;
}

.landing-how__diagram {
  margin: 0 0 1.5rem;
  padding: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #f8fafc;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.landing-how__diagram-img {
  display: block;
  width: 100%;
  height: auto;
}

.landing-how__cta {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  text-align: center;
}

.landing-how__cta > p:first-child {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

.landing-how__cta > p:last-child {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0;
}

.landing-how__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff !important;
  background: linear-gradient(135deg, #22a85c 0%, #2ecc71 100%);
  box-shadow: 0 8px 24px rgba(34, 168, 92, 0.35);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.landing-how__cta-btn:hover {
  transform: translateY(-2px);
  color: #fff !important;
}

.landing-how__cta-link {
  font-weight: 700;
  color: #137a3f;
  text-decoration: none;
}

.landing-how__cta-link:hover {
  color: #0f5f32;
}

.landing-how__highlights {
  max-width: 1200px;
  margin: 0 auto 1.5rem;
  padding: 0 1.5rem;
}

.landing-how__highlights ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  list-style: none;
  margin: 0;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(34, 168, 92, 0.2);
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.landing-how__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #166534;
}

.landing-how__highlights i {
  color: #22a85c;
  font-size: 1rem;
}

.landing-how__section-title {
  margin: 0 0 1.25rem;
  font-family: "Poppins", var(--font, system-ui, sans-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.landing-how__callout {
  margin-top: 1.5rem;
  padding: 1.25rem 1.2rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(34, 168, 92, 0.18);
}

.landing-how__callout--muted {
  background: #f8fafc;
  border-color: rgba(17, 24, 39, 0.08);
}

.landing-how__callout h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}

.landing-how__callout h2 i {
  color: #22a85c;
}

.landing-how__callout dl {
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.landing-how__callout dl > div {
  margin: 0;
}

.landing-how__callout dt {
  font-size: 0.92rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.2rem;
}

.landing-how__callout dd {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #64748b;
}

.landing-how__faq {
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-how__faq li {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #64748b;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.landing-how__faq li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.landing-how__faq strong {
  display: block;
  color: #0f172a;
  margin-bottom: 0.15rem;
}

.landing-how__faq a {
  color: #137a3f;
  font-weight: 600;
}

@media (max-width: 575.98px) {
  .landing-how__highlights {
    padding: 0 1rem;
  }

  .landing-how__highlights ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}
