/* NovusHub — white background, green brand */

:root {
  --bg: #ffffff;
  --ink: #0d1117;
  --ink-soft: #5a6472;
  --line: #e7e9ed;
  --green: #0c5c40;
  --green-dark: #084430;
  --green-soft: #f2faf6;
  --lime: #8fd14f;
  --amber: #f5a524;
  --whatsapp: #25d366;
  --r: 16px;
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.12; letter-spacing: -.025em; font-weight: 800; }
h1 { font-size: clamp(2.2rem, 6vw, 4.2rem); }
p { margin: 0 0 1rem; color: var(--ink-soft); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-left: 20px; padding-right: 20px; }
.wrap.narrow { max-width: 820px; }
.center { text-align: center; }
.green { color: var(--green); }
.ink { color: var(--ink); }

.display { font-size: clamp(1.9rem, 4.6vw, 3.1rem); margin-bottom: .4rem; }
.h-md { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.sub { max-width: 640px; margin: 0 auto 2rem; font-size: 1.02rem; }
.sub.center { text-align: center; }
.sub.light { color: rgba(255,255,255,.75); }

.kicker {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  text-transform: uppercase; letter-spacing: .18em;
  font-size: .76rem; font-weight: 800; color: var(--green);
  margin-bottom: .9rem;
}
.kicker.light { color: var(--lime); }
.kicker .rule { display: inline-block; width: 26px; height: 2px; background: var(--lime); border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.4rem; border-radius: 12px;
  font-weight: 700; font-size: .95rem; line-height: 1;
  border: 1.5px solid transparent;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-dark { background: var(--green); color: #fff; }
.btn-dark:hover { background: var(--green-dark); color: #fff; }
.btn-outline { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { background: #fafbfc; border-color: #d5d9df; color: var(--ink); }
.btn-invert { background: #fff; color: var(--green); }
.btn-invert:hover { background: #eef7f2; color: var(--green-dark); }
.btn-wa { background: var(--whatsapp); color: #fff; }
.btn-wa:hover { background: #1fbb59; color: #fff; }
.btn-sm { padding: .55rem 1rem; font-size: .84rem; }
.btn-lg { padding: 1rem 1.9rem; font-size: 1rem; }
.btn-pill { border-radius: 999px; box-shadow: 0 10px 28px rgba(12,92,64,.22); margin-top: 2.2rem; }
.btn-block { width: 100%; margin-top: auto; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: env(safe-area-inset-top, 0px); z-index: 60;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 11px;
  background: var(--green); color: var(--lime);
  display: grid; place-items: center;
}
.brand-name { font-size: 1.35rem; font-weight: 800; letter-spacing: -.03em; }

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav > a { color: var(--ink-soft); font-weight: 500; font-size: .98rem; }
.nav > a:hover { color: var(--ink); text-decoration: none; }
.nav > a.btn { color: #fff; border-radius: 999px; padding: .75rem 1.5rem; }

.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 5vw, 3.5rem); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }

.badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff8e6; border: 1px solid #f7e3b0;
  color: #7a5a12; font-size: .85rem; font-weight: 600;
  padding: .5rem 1rem; border-radius: 999px; margin: 0 0 1.6rem;
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #e5484d; }

.hero h1 { margin-bottom: 1.2rem; }
.lede { font-size: 1.1rem; max-width: 560px; }
.lede strong { color: var(--ink); font-weight: 700; }

.cta-row { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.8rem 0 1.8rem; }
.cta-row .btn { border-radius: 999px; }

.social-proof { display: flex; align-items: center; gap: .9rem; }
.social-proof p { margin: 0; font-size: .93rem; }
.avatars { display: flex; }
.av {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-size: .68rem; font-weight: 800;
  border: 2px solid #fff; margin-left: -10px;
}
.av:first-child { margin-left: 0; }
.av1 { background: #0c5c40; } .av2 { background: #e8912d; } .av3 { background: #7c4dff; }
.av4 { background: #e0457b; } .av5 { background: #2563eb; }

/* Hero panel */
.panel { border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: #fff; box-shadow: 0 18px 50px rgba(13,17,23,.07); }
.panel-head { background: var(--green); color: #fff; padding: 1.1rem 1.3rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.panel-head-left { display: flex; align-items: center; gap: .8rem; }
.globe { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.15); display: grid; place-items: center; font-size: 1.2rem; }
.panel-head h2 { font-size: 1.15rem; margin: 0; color: #fff; }
.panel-head p { margin: 0; font-size: .82rem; color: rgba(255,255,255,.75); }
.pill { background: var(--lime); color: #123; font-size: .68rem; font-weight: 800; letter-spacing: .08em; padding: .35rem .7rem; border-radius: 999px; }

.panel-list { list-style: none; margin: 0; padding: .4rem .6rem; }
.panel-list li { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: .75rem; padding: .8rem .7rem; border-bottom: 1px solid var(--line); }
.panel-list li:last-child { border-bottom: 0; }
.pl-icon { width: 38px; height: 38px; border-radius: 11px; background: var(--green-soft); display: grid; place-items: center; font-size: 1.05rem; }
.panel-list strong { display: block; font-size: .93rem; }
.panel-list span:not(.pl-icon):not(.pl-tag) { font-size: .8rem; color: var(--ink-soft); }
.pl-tag { background: #eef7f2; color: var(--green); font-size: .72rem; font-weight: 700; padding: .3rem .6rem; border-radius: 999px; white-space: nowrap; }
.panel-foot { display: flex; align-items: center; justify-content: space-between; gap: .8rem; padding: 1rem 1.3rem; border-top: 1px solid var(--line); background: #fcfdfd; font-size: .88rem; color: var(--ink-soft); }
.panel-foot strong { color: var(--ink); }

/* ---------- Stats band ---------- */
.stats-band { position: relative; background: var(--green); color: #fff; padding: 3.5rem 0; margin: 2rem 0; }
.wave { position: absolute; left: 0; width: 100%; height: 60px; color: #fff; display: block; }
.wave-top { top: -1px; transform: rotate(180deg); }
.wave-bottom { bottom: -1px; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; position: relative; z-index: 1; }
.stat { text-align: center; }
.stat-num { display: block; font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 800; letter-spacing: -.03em; }
.stat-label { font-size: .9rem; color: rgba(255,255,255,.72); }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 5.5rem) 0; background: #fff; }
.section-soft { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.5rem; }
.step { border: 1px solid var(--line); border-radius: 20px; padding: 1.8rem 1.5rem; background: #fff; position: relative; }
.step.is-first { background: var(--green-soft); border-color: #d9eee5; }
.step-num { position: absolute; top: 1.1rem; right: 1.4rem; font-size: 2.3rem; font-weight: 800; color: #dff0e6; letter-spacing: -.04em; }
.step-icon { width: 46px; height: 46px; border-radius: 13px; background: var(--green); color: #fff; display: grid; place-items: center; margin-bottom: 1.1rem; }
.step h3 { font-size: 1.15rem; }
.step p { margin: 0; font-size: .95rem; }

/* Earning methods */
.earn-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-top: 2.5rem; }
.earn-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: 18px;
  padding: 1.4rem; background: #fff; position: relative;
  transition: box-shadow .2s ease, transform .2s ease;
}
.earn-card:hover { box-shadow: 0 14px 38px rgba(13,17,23,.08); transform: translateY(-3px); }
.earn-card.featured { border-color: #bfe5d2; background: var(--green-soft); }
.ribbon { position: absolute; top: 0; right: 0; background: var(--green); color: #fff; font-size: .64rem; font-weight: 800; letter-spacing: .08em; padding: .4rem .8rem; border-radius: 0 18px 0 12px; }
.earn-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; font-size: 1.3rem; margin-bottom: 1rem; }
.tint-green { background: #e4f5ec; } .tint-amber { background: #fdf0da; }
.tint-blue { background: #e4ecfd; } .tint-purple { background: #ede6fd; } .tint-pink { background: #fde6ee; }
.earn-card h3 { font-size: 1.05rem; margin-bottom: .6rem; }
.tag { display: inline-block; background: #eef7f2; color: var(--green); font-size: .76rem; font-weight: 700; padding: .35rem .7rem; border-radius: 999px; margin-bottom: .8rem; align-self: flex-start; }
.tag-amber { background: #fdf3e0; color: #92620c; }
.earn-card p { font-size: .9rem; margin-bottom: 1.2rem; }

/* Chat / dashboard */
.chat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; margin-top: 1.5rem; }
.pill-badge { display: inline-block; background: var(--green); color: #fff; font-size: .85rem; font-weight: 700; padding: .55rem 1.1rem; border-radius: 999px; margin-bottom: 1.2rem; }
.mini-stats { list-style: none; display: flex; flex-wrap: wrap; gap: .7rem; padding: 0; margin: 1.5rem 0; }
.mini-stats li { border: 1px solid var(--line); border-radius: 14px; padding: .8rem 1.1rem; text-align: center; }
.mini-stats strong { display: block; font-size: 1.15rem; }
.mini-stats span { font-size: .78rem; color: var(--ink-soft); }

.dash { border: 1px solid var(--line); border-radius: 22px; padding: 1.5rem; background: #fff; box-shadow: 0 18px 50px rgba(13,17,23,.07); }
.dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.dash-head h4 { margin: 0; font-size: 1.05rem; }
.dash-tag { background: #eef7f2; color: var(--green); font-size: .72rem; font-weight: 700; padding: .3rem .7rem; border-radius: 999px; }
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.dash-cell { background: #f7faf8; border: 1px solid #e6f0ea; border-radius: 14px; padding: 1rem; }
.dash-num { display: block; font-size: 1.3rem; font-weight: 800; color: var(--green); letter-spacing: -.02em; }
.dash-label { font-size: .8rem; color: var(--ink-soft); }
.dash-note { font-size: .78rem; margin: 1rem 0 0; }

/* Live activity ticker & live chat */
.live-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; margin-top: 2.5rem; align-items: start; }

.live-card {
  border: 1px solid #cfe9dc; border-radius: 24px; background: #fff;
  box-shadow: 0 24px 60px rgba(12,92,64,.16);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.live-card:hover { transform: translateY(-4px); box-shadow: 0 30px 70px rgba(12,92,64,.24); }

.live-card-head {
  display: flex; align-items: center; justify-content: space-between; gap: .8rem;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}
.live-card-head h3 { display: flex; align-items: center; gap: .7rem; margin: 0; font-size: 1.15rem; color: #fff; letter-spacing: -.01em; }
.live-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.18); color: #fff;
  font-size: .7rem; font-weight: 800; letter-spacing: .1em;
  padding: .38rem .7rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.3);
}
.live-tag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); animation: live-blink 1.4s ease-in-out infinite; }
@keyframes live-blink { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

.live-dot { position: relative; width: 11px; height: 11px; border-radius: 50%; background: var(--lime); flex: none; }
.live-dot::before {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 1.5px solid var(--lime);
  animation: live-pulse 1.8s ease-out infinite;
}
@keyframes live-pulse {
  0%   { opacity: .9; transform: scale(.5); }
  100% { opacity: 0;  transform: scale(2.6); }
}

.ticker-list { list-style: none; margin: 0; padding: .4rem .6rem; max-height: 400px; overflow: hidden; }
.ticker-item {
  display: grid; grid-template-columns: 46px 1fr; gap: 1rem;
  align-items: flex-start; padding: .95rem .6rem;
  border-bottom: 1px solid var(--line);
  animation: live-in .45s ease both;
}
.ticker-item:last-child { border-bottom: 0; }
.ticker-item p { margin: 0 0 .35rem; font-size: 1.02rem; color: var(--ink); }
.ticker-item .amt {
  display: inline-block; background: var(--green-soft); color: var(--green);
  font-weight: 800; padding: .1rem .5rem; border-radius: 8px;
}
.ticker-meta { display: inline-flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--ink-soft); font-weight: 600; }
.verified {
  display: inline-flex; align-items: center; gap: .3rem;
  background: var(--green-soft); color: var(--green); font-weight: 800;
  padding: .18rem .55rem .18rem .4rem; border-radius: 999px;
  border: 1px solid #cfe9dc; font-size: .76rem;
}
.ticker-item.is-leaving { animation: live-out .35s ease both; }
.ticker-item.is-fresh, .chat-item.is-fresh { animation: live-in .45s ease both, live-flash 1.8s ease-out both; }

@keyframes live-in {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: none; }
}
@keyframes live-out {
  from { opacity: 1; }
  to   { opacity: 0; max-height: 0; padding-top: 0; padding-bottom: 0; margin: 0; }
}
@keyframes live-flash {
  0%   { background-color: #d9f2e3; }
  100% { background-color: transparent; }
}

.live-card .av { width: 46px; height: 46px; font-size: .82rem; margin-left: 0; box-shadow: 0 4px 10px rgba(13,17,23,.12); }

.chat-feed { list-style: none; margin: 0; padding: .7rem .9rem; max-height: 400px; overflow-y: auto; scroll-behavior: smooth; }
.chat-item { display: grid; grid-template-columns: 46px 1fr; gap: 1rem; padding: .85rem 0; animation: live-in .4s ease both; }
.chat-line { margin: 0; font-size: 1.02rem; color: var(--ink); }
.chat-msg { color: var(--ink-soft); font-weight: 400; }
.chat-payout {
  display: inline-block; margin-top: .4rem;
  background: linear-gradient(135deg, var(--green-soft), #e4f5ec); color: var(--green);
  font-size: .8rem; font-weight: 800; padding: .28rem .7rem; border-radius: 999px;
  border: 1px solid #cfe9dc;
}

/* Stories */
.stories { background: var(--green); color: #fff; padding: clamp(3.5rem, 8vw, 5.5rem) 0; }
.stories h2 { color: #fff; }
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.5rem; }
.story { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: 18px; padding: 1.6rem; }
.stars { color: var(--amber); letter-spacing: .15em; margin-bottom: .9rem; }
.story p { color: rgba(255,255,255,.9); font-size: .95rem; }
.story-who { display: flex; align-items: center; gap: .8rem; margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.14); }
.who-av { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.14); display: grid; place-items: center; font-weight: 800; }
.story-who strong { display: block; font-size: .95rem; }
.story-who span:not(.who-av) { font-size: .82rem; color: rgba(255,255,255,.65); }

/* Coverage */
.coverage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.region h3 { font-size: .8rem; letter-spacing: .12em; color: var(--green); border-bottom: 2px solid var(--lime); padding-bottom: .7rem; margin-bottom: 1rem; }
.region ul { list-style: none; padding: 0; margin: 0; }
.region li { display: flex; align-items: center; gap: .6rem; border: 1px solid var(--line); border-radius: 12px; padding: .65rem .9rem; margin-bottom: .6rem; font-size: .93rem; background: #fff; }

/* WhatsApp band */
.wa-band {
  display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap;
  border: 1px solid #d6f2e0; background: #f4fdf7;
  border-radius: 22px; padding: 1.8rem 2rem;
}
.wa-icon { width: 60px; height: 60px; border-radius: 18px; background: var(--whatsapp); color: #fff; display: grid; place-items: center; flex: none; }
.wa-copy { flex: 1 1 280px; }
.wa-copy h2 { font-size: 1.35rem; margin-bottom: .3rem; }
.wa-copy p { margin: 0; font-size: .95rem; }
.wa-band .btn { border-radius: 999px; }

/* FAQ */
details { border: 1px solid var(--line); border-radius: 16px; padding: 1.2rem 1.4rem; margin-top: .8rem; background: #fff; }
details[open] { background: var(--green-soft); border-color: #cfe9dc; }
summary { cursor: pointer; font-weight: 700; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+"; flex: none;
  width: 30px; height: 30px; border-radius: 50%;
  background: #f0f2f4; color: var(--ink-soft);
  display: grid; place-items: center; font-weight: 700;
}
details[open] summary::after { content: "×"; background: var(--green); color: #fff; }
details p { margin: 1rem 0 0; font-size: .95rem; }

/* Final CTA */
.final-cta { background: #fff; border-top: 1px solid var(--line); padding: clamp(3.5rem, 8vw, 5.5rem) 0; }
.final-cta h2 { font-size: clamp(1.9rem, 4.6vw, 3.1rem); }
.final-cta p { max-width: 560px; margin: 0 auto; }
.final-cta .btn-invert { background: var(--green); color: #fff; }
.final-cta .btn-invert:hover { background: var(--green-dark); color: #fff; }

/* Footer */
.site-footer { background: #0c1310; color: #d6dbd8; padding-top: 3.5rem; }
.site-footer .brand { color: #fff; }
.site-footer .brand-mark { background: var(--green); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 2rem; }
.footer-text { font-size: .92rem; margin-top: 1rem; max-width: 340px; color: #97a19b; }
.site-footer h4 { font-size: .95rem; color: #fff; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0 0 1rem; }
.site-footer li { margin-bottom: .6rem; font-size: .93rem; color: #97a19b; }
.site-footer li a { color: #97a19b; }
.site-footer li a:hover { color: #fff; }

.socials { display: flex; align-items: center; gap: .8rem; margin-top: 1.4rem; }
.social { width: 44px; height: 44px; border-radius: 50%; background: var(--whatsapp); color: #fff; display: grid; place-items: center; transition: transform .18s ease; }
.social:hover { transform: translateY(-2px); text-decoration: none; }
.social-label { font-size: .9rem; color: #97a19b; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 2.5rem; padding-top: 1.4rem;
  padding-bottom: calc(1.6rem + env(safe-area-inset-bottom, 0px));
}
.footer-bottom p { font-size: .85rem; margin: 0 0 .5rem; color: #97a19b; }
.disclaimer { font-size: .8rem; color: #6f7a74; max-width: 760px; }

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed; right: 40px;
  bottom: calc(46px + env(safe-area-inset-bottom, 0px));
  width: 82px; height: 82px; border-radius: 50%;
  background: var(--whatsapp); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.45);
  z-index: 70;
  animation: wa-beep 2.2s ease-in-out infinite;
  opacity: 1; transition: opacity .3s ease;
}
.whatsapp-float.is-hidden { opacity: 0; pointer-events: none; }
.whatsapp-float:hover { text-decoration: none; animation-play-state: paused; transform: scale(1.08); }

/* Expanding rings — the "beep" */
.whatsapp-float::before,
.whatsapp-float::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  pointer-events: none;
  animation: wa-ring 2.2s cubic-bezier(.25,.6,.4,1) infinite;
}
.whatsapp-float::after { animation-delay: 1.1s; }

.whatsapp-float svg { position: relative; z-index: 1; animation: wa-shake 2.2s ease-in-out infinite; }

@keyframes wa-beep {
  0%, 55%, 100% { transform: scale(1); }
  12%           { transform: scale(1.12); }
  26%           { transform: scale(1.04); }
  38%           { transform: scale(1.09); }
}

@keyframes wa-ring {
  0%   { opacity: .7;  transform: scale(1); }
  70%  { opacity: 0;   transform: scale(2.1); }
  100% { opacity: 0;   transform: scale(2.1); }
}

@keyframes wa-shake {
  0%, 55%, 100%     { transform: rotate(0deg); }
  8%, 24%, 40%      { transform: rotate(-14deg); }
  16%, 32%, 48%     { transform: rotate(14deg); }
}

/* Floating social-proof popups — one from each side */
.social-toast {
  position: fixed; z-index: 65;
  width: min(360px, calc(100vw - 40px));
  pointer-events: none;
}
.social-toast-left { left: 20px; bottom: calc(20px + env(safe-area-inset-bottom, 0px)); }
.social-toast-right { right: 20px; top: calc(90px + env(safe-area-inset-top, 0px)); }
.toast-card {
  pointer-events: auto;
  display: grid; grid-template-columns: 44px 1fr; gap: .85rem;
  background: #fff; border: 1px solid #cfe9dc; border-left: 4px solid var(--green);
  border-radius: 18px; padding: .9rem 1rem 1rem;
  box-shadow: 0 22px 50px rgba(12,92,64,.24);
  animation: toast-in .5s cubic-bezier(.22,.9,.32,1.28) both;
}
.toast-card .av { grid-row: 1 / span 2; width: 44px; height: 44px; font-size: .82rem; margin-left: 0; box-shadow: 0 4px 10px rgba(13,17,23,.12); }
.toast-head { grid-column: 2; display: flex; align-items: center; justify-content: space-between; gap: .6rem; margin-bottom: .3rem; }
.toast-brand { font-size: .68rem; font-weight: 800; letter-spacing: .08em; color: var(--green); text-transform: uppercase; }
.toast-close {
  background: none; border: 0; padding: 0; margin: -.2rem -.2rem 0 0;
  color: var(--ink-soft); font-size: 1.2rem; line-height: 1; cursor: pointer;
}
.toast-close:hover { color: var(--ink); }
.toast-body { grid-column: 2; }
.toast-body p { margin: 0 0 .35rem; font-size: .95rem; color: var(--ink); }

.toast-card.is-leaving { animation: toast-out .35s ease both; }

@keyframes toast-in {
  from { opacity: 0; transform: translateY(18px) scale(.94); }
  to   { opacity: 1; transform: none; }
}
@keyframes toast-out {
  from { opacity: 1; transform: none; }
  to   { opacity: 0; transform: translateY(10px) scale(.96); }
}

@media (max-width: 560px) {
  .social-toast { left: 12px; right: 12px; width: auto; }
  .social-toast-left { bottom: calc(108px + env(safe-area-inset-bottom, 0px)); }
  .social-toast-right { top: calc(80px + env(safe-area-inset-top, 0px)); }
}

/* Respect users who ask for less motion */
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float,
  .whatsapp-float::before,
  .whatsapp-float::after,
  .whatsapp-float svg { animation: none; }
  .whatsapp-float { box-shadow: 0 0 0 8px rgba(37,211,102,.16), 0 10px 26px rgba(37,211,102,.4); }
  .live-dot::before,
  .live-tag::before,
  .ticker-item, .chat-item { animation: none; }
  .toast-card, .toast-card.is-leaving { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1400px) {
  .whatsapp-float { width: 62px; height: 62px; right: 24px; bottom: calc(28px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 1000px) {
  .hero-grid, .chat-grid, .live-grid { grid-template-columns: 1fr; }
  .earn-grid, .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .site-header { position: relative; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: .5rem 20px 1.2rem; display: none;
  }
  .nav.open { display: flex; }
  .nav > a { padding: .8rem 0; border-bottom: 1px solid var(--line); }
  .nav > a.btn { justify-content: center; margin-top: .9rem; border-bottom: 0; }
  .nav-toggle { display: block; }
  .steps, .story-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
}

@media (max-width: 560px) {
  .earn-grid, .coverage-grid, .footer-grid, .dash-grid { grid-template-columns: 1fr; }
  .cta-row .btn { width: 100%; }
  .mini-stats li { flex: 1 1 100%; }
  .wa-band { padding: 1.4rem; }
  .whatsapp-float { width: 68px; height: 68px; right: 22px; bottom: calc(28px + env(safe-area-inset-bottom, 0px)); }
}
