*, *::before, *::after { box-sizing: border-box; }

:root {
  --white: #ffffff;
  --black: #0a0a0a;
  --gray-50: #f6f6f6;
  --gray-150: #e7e7e7;
  --gray-300: #c9c9c9;
  --gray-500: #8a8a8a;
  --gray-700: #444444;
  --gray-850: #1a1a1a;

  --bg: var(--white);
  --fg: var(--black);
  --surface: var(--gray-50);
  --border: var(--gray-150);
  --muted: #5c5c5c;

  --ink: var(--black);
  --paper: var(--white);

  --font-display: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  --radius: 2px;
  --transition: 200ms ease;
  color-scheme: light;
}

html[data-theme="dark"] {
  --bg: var(--black);
  --fg: var(--white);
  --surface: var(--gray-850);
  --border: #2b2b2b;
  --muted: #a7a7a7;
  --ink: var(--white);
  --paper: var(--black);
  color-scheme: dark;
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) {
    --bg: var(--black);
    --fg: var(--white);
    --surface: var(--gray-850);
    --border: #2b2b2b;
    --muted: #a7a7a7;
    --ink: var(--white);
    --paper: var(--black);
    color-scheme: dark;
  }
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  transition: background var(--transition), color var(--transition);
}

img { max-width: 100%; display: block; filter: grayscale(100%) contrast(1.05); }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: .4em; }
h3 { font-size: 1.05rem; margin-bottom: .3em; }

p { margin: 0 0 1em; color: var(--muted); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 .9em;
}

.section-lede {
  max-width: 640px;
  font-size: 1.02rem;
}

*:focus-visible {
  outline: 2px solid var(--fg);
  outline-offset: 3px;
}

/* Theme toggle */
.theme-toggle {
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 500;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-moon { display: none; }
html[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
html[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 400;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .04em;
}
.logo span { color: var(--muted); }

.main-nav {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 10px 20px 30px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  overflow-y: auto;
}
.main-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.main-nav a {
  width: 100%;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.main-nav a.nav-cta {
  margin-top: 16px;
  border: 1px solid var(--fg);
  border-radius: var(--radius);
  text-align: center;
  padding: 14px 0;
}

.hamburger {
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--fg);
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--fg);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-solid { background: var(--fg); color: var(--bg); }
.btn-solid:hover { transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--fg); }
.btn-outline:hover { background: var(--fg); color: var(--bg); }
.btn-lg { padding: 17px 34px; font-size: .88rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 1.6em; }

/* Hero */
.hero { padding: 52px 0 40px; }
.hero-grid { display: flex; flex-direction: column; gap: 34px; }
.hero-copy { max-width: 620px; }
.hero-sub { font-size: 1.05rem; margin-top: .8em; }
.hero-media { position: relative; }
.hero-media img { width: 100%; height: 320px; object-fit: cover; border-radius: var(--radius); }
.hero-frame {
  position: absolute;
  top: 14px; left: 14px; right: -14px; bottom: -14px;
  border: 1px solid var(--fg);
  border-radius: var(--radius);
  z-index: -1;
}

/* Ticker */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  padding: 14px 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 26s linear infinite;
}
.ticker-track span {
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 0 26px;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-33.3333%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* Sections */
.section { padding: 64px 0; border-bottom: 1px solid var(--border); }
.section.invert { background: var(--ink); color: var(--paper); }
.section.invert p, .section.invert .eyebrow, .section.invert .tier-note { color: rgba(255,255,255,.62); }
html[data-theme="dark"] .section.invert { background: var(--white); color: var(--black); }
html[data-theme="dark"] .section.invert p,
html[data-theme="dark"] .section.invert .eyebrow,
html[data-theme="dark"] .section.invert .tier-note { color: rgba(0,0,0,.6); }

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 2em;
}
.feature-card {
  background: var(--bg);
  padding: 26px 20px;
}
.feature-card svg { width: 26px; height: 26px; margin-bottom: 16px; }
.feature-card h3 { font-size: .98rem; margin: 0; }

/* Tier cards */
.tier-row { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 2em; }
.tier-card {
  border: 1px solid rgba(255,255,255,.25);
  padding: 26px;
  border-radius: var(--radius);
}
html[data-theme="dark"] .tier-card,
html:not([data-theme="dark"]) .tier-card { border-color: rgba(255,255,255,.25); }
html[data-theme="dark"] .section.invert .tier-card { border-color: rgba(0,0,0,.2); }
.tier-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 8px;
  margin-bottom: 14px;
}
.tier-card p { color: inherit; opacity: .78; margin: 0; }
.tier-note { margin-top: 1.6em; max-width: 520px; }

/* Chips */
.chip-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 2em; }
.chip {
  border: 1px solid var(--border);
  padding: 12px 18px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Split / rewards */
.split-grid { display: flex; flex-direction: column; gap: 34px; }
.check-list { list-style: none; margin: 1.6em 0; padding: 0; }
.check-list li {
  padding: 12px 0 12px 30px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 8px; height: 8px;
  border: 1px solid var(--fg);
  border-radius: 50%;
}
.fine-print { font-size: .82rem; color: var(--muted); }
.fine-print.center { text-align: center; max-width: 560px; margin: 2em auto 0; }

.stat-card {
  border: 1px solid var(--border);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat-num { font-family: var(--font-display); font-size: 4rem; font-weight: 700; line-height: 1; }
.stat-desc { color: var(--muted); font-size: .92rem; }

/* Ways to earn */
.earn-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 2em; }
.earn-card { background: var(--bg); padding: 28px 22px; }
.earn-card svg { width: 26px; height: 26px; margin-bottom: 18px; }
.earn-card p { margin: 0; font-size: .92rem; }

/* Media sections */
.media-grid { display: flex; flex-direction: column; gap: 30px; }
.media-section.reverse .media-grid { flex-direction: column; }
.media-img img { width: 100%; height: 280px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--border); }
.tag-grid { display: flex; flex-wrap: wrap; gap: 10px; margin: 1.6em 0; }
.tag-grid span {
  border: 1px solid var(--fg);
  padding: 9px 16px;
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: var(--radius);
}

/* Pills */
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2em; }
.pill {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: .92rem;
}

/* Payments flow */
.flow-row { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-top: 2.4em; }
.flow-step { text-align: center; }
.flow-step svg { width: 30px; height: 30px; margin: 0 auto 14px; }
.flow-step h3 { margin: 0; font-size: .95rem; }
.flow-arrow { font-family: var(--font-mono); font-size: 1.3rem; color: var(--muted); transform: rotate(90deg); }

/* Community */
.community-grid { display: flex; flex-direction: column; gap: 30px; }
.community-img img { width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius); }
html[data-theme="dark"] .section.invert .community-img img { filter: grayscale(100%) contrast(1.05) invert(0); }

/* FAQ */
.accordion { margin-top: 2em; border-top: 1px solid var(--border); }
.acc-item { border-bottom: 1px solid var(--border); }
.acc-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.acc-item summary::-webkit-details-marker { display: none; }
.acc-icon { position: relative; width: 16px; height: 16px; flex-shrink: 0; margin-left: 20px; }
.acc-icon::before, .acc-icon::after {
  content: "";
  position: absolute;
  background: var(--fg);
  transition: transform var(--transition);
}
.acc-icon::before { top: 7px; left: 0; width: 16px; height: 1.4px; }
.acc-icon::after { left: 7px; top: 0; width: 1.4px; height: 16px; }
.acc-item[open] .acc-icon::after { transform: rotate(90deg); }
.acc-item p { padding-bottom: 22px; margin: 0; max-width: 640px; }

/* CTA */
.cta-section {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0;
  text-align: center;
}
html[data-theme="dark"] .cta-section { background: var(--white); color: var(--black); }
.cta-inner { display: flex; flex-direction: column; align-items: center; }
.cta-section .eyebrow, .cta-section p { color: rgba(255,255,255,.62); }
html[data-theme="dark"] .cta-section .eyebrow, html[data-theme="dark"] .cta-section p { color: rgba(0,0,0,.6); }
.cta-section h2 { max-width: 560px; }
.cta-section .btn-solid { background: var(--paper); color: var(--ink); border-color: var(--paper); margin-top: .6em; }
.cta-tag {
  margin-top: 1.8em;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* Footer */
.site-footer { padding: 56px 0 24px; }
.footer-grid { display: flex; flex-direction: column; gap: 34px; }
.footer-brand p { max-width: 320px; margin-top: 1em; font-size: .9rem; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1em;
}
.footer-col a { display: block; padding: 6px 0; font-size: .92rem; color: var(--muted); }
.footer-col a:hover { color: var(--fg); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding-top: 22px;
  font-size: .8rem;
  color: var(--muted);
}
.footer-bottom .cta-tag { color: var(--muted); }

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 450;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--fg);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.whatsapp-fab svg { width: 24px; height: 24px; }

.btn-pulse { position: relative; }
.btn-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid var(--fg);
  animation: btn-pulse-ring 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes btn-pulse-ring {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.35); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .btn-pulse::after { animation: none; } }

.trust-badges { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 1.8em; }
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.trust-badge svg { width: 15px; height: 15px; flex-shrink: 0; }

.stats-strip { border-bottom: 1px solid var(--border); background: var(--surface); }
.stats-strip-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  padding: 44px 20px 36px;
}
.stat-block { text-align: center; }
.stat-block-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  line-height: 1;
}
.stat-block-label {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.inline-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  padding: 30px 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.inline-cta.alt { background: var(--surface); }
.inline-cta p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  max-width: 480px;
}
.inline-cta .btn { flex-shrink: 0; }

.testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 2em; }
.testimonial-card { background: var(--bg); padding: 28px 24px; display: flex; flex-direction: column; gap: 16px; }
.testimonial-top { display: flex; align-items: center; gap: 12px; }
.avatar-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--fg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}
.testimonial-name { display: block; font-family: var(--font-display); font-weight: 700; font-size: .95rem; }
.testimonial-loc { display: block; font-size: .78rem; color: var(--muted); margin-top: 2px; }
.testimonial-quote { margin: 0; font-size: .92rem; }
.earned-tag {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  border: 1px solid var(--fg);
  padding: 6px 12px;
  border-radius: 999px;
}
.proof-disclaimer { margin-top: 2em; }

.toast-host {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 440;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  max-width: min(320px, calc(100vw - 36px));
}
.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,.16);
  transform: translateX(-120%);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--fg);
  color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .72rem;
  flex-shrink: 0;
}
.toast-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.toast-text { font-size: .8rem; line-height: 1.35; }
.toast-text strong { font-weight: 600; }
.toast-time { font-family: var(--font-mono); font-size: .64rem; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.toast-check {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1px solid var(--fg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.toast-check svg { width: 9px; height: 9px; }

.com {
  background: var(--ink);
  color: var(--paper);
  padding: 56px 24px;
  border-radius: var(--radius);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-top: 44px;
}
html[data-theme="dark"] .com { background: var(--white); color: var(--black); }

.com-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--paper);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform var(--transition), opacity var(--transition);
}
.com-btn:hover { transform: translateY(-2px); opacity: .9; }

.com-tag {
  margin: 0;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  line-height: 1.9;
  color: rgba(255,255,255,.65);
}
html[data-theme="dark"] .com-tag { color: rgba(0,0,0,.6); }

.missing-out {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
html[data-theme="dark"] .missing-out { background: var(--white); color: var(--black); }
.missing-out .eyebrow { color: rgba(255,255,255,.55); }
html[data-theme="dark"] .missing-out .eyebrow { color: rgba(0,0,0,.55); }
.missing-out h2 { max-width: 620px; }
.missing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 2em 0 2.4em;
}
.missing-item { display: flex; align-items: flex-start; gap: 12px; }
.missing-item svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; opacity: .8; }
.missing-item p { margin: 0; color: rgba(255,255,255,.82); font-size: .96rem; }
html[data-theme="dark"] .missing-item p { color: rgba(0,0,0,.78); }
.missing-cta { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.testimonial-slideshow { margin-top: 2em; max-width: 520px; }
.testimonial-slideshow .testimonial-card {
  border: 1px solid var(--border);
  min-height: 200px;
  transition: opacity .35s ease, transform .35s ease;
}
.testimonial-slideshow .testimonial-card.fade { opacity: 0; transform: translateY(6px); }
.slideshow-dots { display: flex; gap: 8px; justify-content: center; margin-top: 18px; }
.slideshow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  border: 1px solid var(--fg);
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.slideshow-dot.active { background: var(--fg); }