/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080d18;
  --bg2: #0d1220;
  --bg3: #111827;
  --green: #00e98a;
  --green-dim: rgba(0,233,138,0.12);
  --green-border: rgba(0,233,138,0.22);
  --text: #eef1f8;
  --muted: #6b7a99;
  --muted2: #4a5568;
  --card-bg: #0f1624;
  --card-border: rgba(255,255,255,0.07);
  --accent: #00e98a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ── TICKER ── */
.ticker {
  background: var(--green);
  color: #000;
  font-family: 'Syne', sans-serif;
  font-size: 0.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  overflow: hidden;
  padding: 0.45rem 0;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  gap: 3rem;
  animation: ticker 28s linear infinite;
}
.ticker-inner span::before { content: "•"; margin-right: 1rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
  background: rgba(8,13,24,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--card-border);
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--green); }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg2);
    border-bottom: 1px solid var(--card-border);
    padding: 1.5rem 2rem;
    gap: 1.2rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.95rem; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1.5px solid transparent;
  text-align: center;
}
.btn-green {
  background: var(--green);
  color: #000;
  border-color: var(--green);
}
.btn-green:hover {
  background: #00ffaa;
  border-color: #00ffaa;
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(0,233,138,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green-border);
}
.btn-outline:hover { background: var(--green-dim); }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-1px); }
.btn-full { width: 100%; }
.btn-lg { padding: 0.9rem 2rem; font-size: 0.88rem; }

/* ── SECTION TAGS ── */
.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.sec-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}
.sec-title em { font-style: normal; color: var(--green); }
.sec-sub {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 480px;
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.05s; }
.d2 { transition-delay: 0.15s; }
.d3 { transition-delay: 0.25s; }
.d4 { transition-delay: 0.35s; }

/* ── CONTAINER ── */
.container { max-width: 1160px; margin: 0 auto; padding: 5rem 2rem; }

/* ── HERO ── */
#hero {
  position: relative;
  overflow: hidden;
  padding: 0 2rem;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
}
.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.18;
}
.orb-1 { width: 600px; height: 600px; background: #00e98a; top: -200px; right: -100px; }
.orb-2 { width: 400px; height: 400px; background: #0066ff; bottom: -150px; left: -100px; }
.orb-3 { width: 300px; height: 300px; background: #00e98a; top: 50%; left: 40%; opacity: 0.08; }
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,233,138,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,233,138,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-layout {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding: 5rem 0;
}
@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 0; }
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.3rem;
}
.live-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(0,233,138,0.5); }
  50% { opacity: 0.85; transform: scale(1.1); box-shadow: 0 0 0 6px rgba(0,233,138,0); }
}

/* Hero Headline */
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}
.hl { color: var(--green); }
.hero-sub {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  max-width: 440px;
}
.hero-sub strong { color: var(--text); }
.earning-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,233,138,0.08);
  border: 1px solid var(--green-border);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 1.8rem;
}

/* Signup Card */
.signup-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.8rem;
}
.signup-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.signup-card-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
  line-height: 1.7;
}
.signup-field { margin-bottom: 1rem; }
.signup-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.signup-field input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}
.signup-field input:focus { border-color: var(--green-border); }
.signup-field input::placeholder { color: var(--muted2); }
.signup-terms {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.6;
}
.signup-terms a { color: var(--green); }

/* Hero Right */
.hero-right { padding-top: 1rem; }
.hero-right h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero-right h3 span { color: var(--green); }
.hero-right > p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.8rem;
}
.hero-checks { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.hero-checks div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.84rem;
  color: var(--muted);
}
.hero-checks div span {
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--card-border);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
}
.h-stat {
  background: var(--card-bg);
  padding: 1.2rem;
  text-align: center;
}
.h-stat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.h-stat-label {
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ── HOW IT WORKS ── */
#how { background: var(--bg2); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.how-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.how-card:hover {
  border-color: var(--green-border);
  transform: translateY(-4px);
}
.how-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.how-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.8;
  flex: 1;
}

/* ── COMPENSATION ── */
#compensation { background: var(--bg); }
.comp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 800px) { .comp-layout { grid-template-columns: 1fr; gap: 2.5rem; } }
.comp-card {
  background: linear-gradient(135deg, rgba(0,233,138,0.08) 0%, rgba(0,0,0,0) 60%);
  border: 1px solid var(--green-border);
  border-radius: 20px;
  overflow: hidden;
}
.comp-card-inner { padding: 2rem; }
.comp-amount {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.comp-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.comp-rows { display: flex; flex-direction: column; gap: 0; }
.comp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--card-border);
  font-size: 0.82rem;
}
.comp-row:last-child { border-bottom: none; }
.comp-row-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
}
.comp-row-right {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--green);
  font-size: 0.78rem;
}
.comp-note {
  margin-top: 1.2rem;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 0.78rem;
  color: var(--text);
  line-height: 1.7;
}

/* ── PRIVACY ── */
#privacy { background: var(--bg2); }
.privacy-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 800px) { .privacy-layout { grid-template-columns: 1fr; gap: 2.5rem; } }
.privacy-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .privacy-cards { grid-template-columns: 1fr; } }
.privacy-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.3rem;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  transition: border-color 0.2s;
}
.privacy-card:hover { border-color: var(--green-border); }
.privacy-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.privacy-card-desc { font-size: 0.75rem; color: var(--muted); line-height: 1.7; }

/* ── AFTER REGISTRATION ── */
#after { background: var(--bg); }
.after-inner {
  max-width: 560px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2.5rem;
}
.after-steps { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.after-step { display: flex; gap: 1.2rem; align-items: flex-start; }
.after-step-num {
  width: 32px;
  height: 32px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--green);
  flex-shrink: 0;
}
.after-step-text {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
  padding-top: 0.2rem;
}
.after-step-text strong { color: var(--text); }
.after-note {
  background: rgba(255,180,0,0.08);
  border: 1px solid rgba(255,180,0,0.2);
  border-radius: 10px;
  padding: 1rem;
  font-size: 0.8rem;
  color: #ffd060;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--card-border);
  padding: 2rem;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}
.footer-logo span { color: var(--green); }
.footer-copy { font-size: 0.75rem; color: var(--muted); }
.footer-ref a { font-size: 0.75rem; color: var(--green); }
