*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0b;
  --bg-soft: #111114;
  --surface: rgba(255, 255, 255, 0.025);
  --surface-2: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f4f5;
  --text-dim: #a1a1aa;
  --text-faint: #71717a;
  --lime: #d4ff3f;
  --lime-soft: #b8e62e;
  --whatsapp: #25d366;
  --whatsapp-d: #1da851;
  --telegram: #29b6f6;
  --telegram-d: #1e9fe0;
  --r: 20px;
  --r-sm: 14px;
  --r-lg: 28px;
  --safe: env(safe-area-inset-bottom, 0px);
  --dock-h: 76px;
  --maxw: 540px;
}

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100dvh;
  overflow-x: hidden;
  position: relative;
  padding-bottom: calc(var(--dock-h) + var(--safe));
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---- Background FX ---- */
.aurora { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.aurora__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  will-change: transform;
}
.aurora__blob--1 {
  width: 60vw; height: 60vw; max-width: 420px; max-height: 420px;
  top: -12%; left: -18%;
  background: radial-gradient(circle, rgba(212,255,63,0.35), transparent 70%);
  animation: drift1 18s ease-in-out infinite;
}
.aurora__blob--2 {
  width: 55vw; height: 55vw; max-width: 380px; max-height: 380px;
  top: 30%; right: -22%;
  background: radial-gradient(circle, rgba(41,182,246,0.22), transparent 70%);
  animation: drift2 22s ease-in-out infinite;
}
.aurora__blob--3 {
  width: 50vw; height: 50vw; max-width: 360px; max-height: 360px;
  bottom: -10%; left: 10%;
  background: radial-gradient(circle, rgba(212,255,63,0.16), transparent 70%);
  animation: drift3 26s ease-in-out infinite;
}
@keyframes drift1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(8%,12%)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-10%,-8%)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(6%,-10%)} }

.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }

/* ---- Nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(10,10,11,0.85), rgba(10,10,11,0.4));
  border-bottom: 1px solid var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 56px; }
.nav__brand {
  display: flex; align-items: center; gap: 9px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: -0.01em;
}
.nav__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); }
.nav__status {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.78rem; font-weight: 500; color: var(--text-dim);
  background: var(--surface-2); border: 1px solid var(--border); padding: 6px 12px; border-radius: 100px;
}
.nav__pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(212,255,63,0.5)} 50%{box-shadow:0 0 0 6px rgba(212,255,63,0)} }

/* ---- Hero ---- */
.hero { padding: 48px 0 32px; }
.eyebrow {
  font-family: 'Space Grotesk', sans-serif; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--lime); margin-bottom: 18px;
}
.hero__title {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(2.4rem, 11vw, 3.6rem); line-height: 1.02; letter-spacing: -0.04em; margin-bottom: 20px;
}
.hero__title-accent {
  display: block; color: transparent;
  background: linear-gradient(105deg, var(--lime), var(--lime-soft) 60%, #8fbf1f);
  -webkit-background-clip: text; background-clip: text;
}
.hero__lead { font-size: 1.02rem; color: var(--text-dim); max-width: 30ch; margin-bottom: 32px; }

.hero__earn {
  display: flex; flex-direction: column; gap: 4px;
  padding: 22px 24px; margin-bottom: 28px;
  background: linear-gradient(135deg, rgba(212,255,63,0.08), rgba(212,255,63,0.02));
  border: 1px solid rgba(212,255,63,0.22); border-radius: var(--r);
  position: relative; overflow: hidden;
}
.hero__earn::before {
  content: ''; position: absolute; top: -50%; right: -10%; width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(212,255,63,0.18), transparent 70%); filter: blur(20px);
}
.hero__earn-label { font-size: 0.8rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.1em; }
.hero__earn-value {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(2.6rem, 13vw, 3.4rem); line-height: 1; color: #fff; display: flex; align-items: baseline; gap: 2px;
}
.hero__earn-prefix { color: var(--lime); }
.hero__earn-suffix { font-size: 1rem; font-weight: 500; color: var(--text-dim); margin-left: 6px; }
.hero__earn-sub { font-size: 0.9rem; color: var(--text-dim); margin-top: 4px; }

.hero__cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.02rem;
  color: #0a0a0b; text-decoration: none;
  background: var(--lime); padding: 16px 28px; border-radius: 100px;
  box-shadow: 0 8px 28px rgba(212,255,63,0.28);
  transition: transform 0.2s, box-shadow 0.2s; -webkit-tap-highlight-color: transparent;
}
.hero__cta svg { width: 20px; height: 20px; transition: transform 0.2s; }
.hero__cta:active { transform: scale(0.97); }
.hero__cta:hover { box-shadow: 0 10px 36px rgba(212,255,63,0.4); }
.hero__cta:hover svg { transform: translateX(4px); }

/* ---- Sections ---- */
.section { padding: 24px 0; }

.block-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 22px; }
.block-head__index {
  font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem; font-weight: 600;
  color: var(--lime); border: 1px solid rgba(212,255,63,0.3); border-radius: 8px; padding: 2px 8px;
}
.block-head__title {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(1.4rem, 6vw, 1.75rem); letter-spacing: -0.025em;
}

/* ---- Facts ---- */
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.fact {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 22px 10px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r);
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}
.fact:hover { border-color: var(--border-strong); transform: translateY(-3px); background: var(--surface-2); }
.fact__num {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.9rem; line-height: 1; color: #fff;
}
.fact__num small { font-size: 0.9rem; color: var(--lime); margin-left: 1px; }
.fact__cap { font-size: 0.74rem; color: var(--text-faint); margin-top: 8px; line-height: 1.3; }

/* ---- Duties ---- */
.duties { display: flex; flex-direction: column; gap: 12px; list-style: none; }
.duty {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r);
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}
.duty:hover { border-color: var(--border-strong); transform: translateX(4px); background: var(--surface-2); }
.duty__ic {
  flex-shrink: 0; width: 44px; height: 44px; display: grid; place-items: center;
  font-size: 1.25rem; background: var(--surface-2); border: 1px solid var(--border); border-radius: 12px;
}
.duty__txt { font-size: 0.96rem; color: #e4e4e7; font-weight: 500; }

/* ---- Pay ---- */
.pay {
  background: linear-gradient(150deg, rgba(212,255,63,0.07), rgba(255,255,255,0.02));
  border: 1px solid rgba(212,255,63,0.18); border-radius: var(--r-lg); padding: 26px 24px;
}
.pay__main { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.pay__big {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 3.4rem; line-height: 1;
  color: var(--lime); letter-spacing: -0.03em;
}
.pay__big-cap { font-size: 0.95rem; color: var(--text-dim); }
.pay__rows { display: flex; flex-direction: column; gap: 1px; background: var(--border); border-radius: var(--r-sm); overflow: hidden; }
.pay__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px; background: var(--bg-soft);
}
.pay__row span { color: var(--text-dim); font-size: 0.9rem; }
.pay__row strong { font-weight: 600; color: #fff; font-size: 0.95rem; }
.pay__note {
  margin-top: 18px; font-size: 0.88rem; color: var(--text-dim); line-height: 1.5;
  padding-top: 16px; border-top: 1px dashed var(--border-strong);
}

/* ---- Bento ---- */
.bento { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bento__card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 22px 20px;
  transition: border-color 0.25s, background 0.25s;
}
.bento__card:hover { border-color: var(--border-strong); background: var(--surface-2); }
.bento__card--wide { grid-column: span 2; }
.bento__card--schedule {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(41,182,246,0.08), rgba(255,255,255,0.02));
  border-color: rgba(41,182,246,0.2);
}
.bento__title {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.05rem; margin-bottom: 16px; letter-spacing: -0.01em;
}
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 9px; }
.chips li {
  font-size: 0.85rem; color: #e4e4e7; font-weight: 500;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 100px; padding: 8px 14px;
}
.needs { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.needs li { position: relative; padding-left: 22px; font-size: 0.9rem; color: #d4d4d8; }
.needs li::before {
  content: ''; position: absolute; left: 0; top: 0.5em; width: 8px; height: 8px;
  border-radius: 50%; background: var(--lime); box-shadow: 0 0 8px rgba(212,255,63,0.5);
}
.sched { display: flex; flex-direction: column; gap: 4px; }
.sched__days { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 2rem; color: #fff; line-height: 1; }
.sched__time { font-size: 1.1rem; font-weight: 600; color: var(--telegram); }
.sched__type { font-size: 0.85rem; color: var(--text-dim); margin-top: 2px; }

/* ---- Apply ---- */
.apply { padding-top: 32px; }
.apply__card {
  background: linear-gradient(160deg, rgba(212,255,63,0.1), rgba(255,255,255,0.02) 60%);
  border: 1px solid rgba(212,255,63,0.2); border-radius: var(--r-lg);
  padding: 36px 26px; text-align: center; position: relative; overflow: hidden;
}
.apply__card::before {
  content: ''; position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 280px; height: 280px; background: radial-gradient(circle, rgba(212,255,63,0.18), transparent 70%);
  filter: blur(30px); pointer-events: none;
}
.apply__eyebrow {
  font-family: 'Space Grotesk', sans-serif; font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--lime); margin-bottom: 12px; position: relative;
}
.apply__title {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(1.5rem, 6.5vw, 1.9rem);
  line-height: 1.15; letter-spacing: -0.025em; margin-bottom: 12px; position: relative;
}
.apply__sub { font-size: 0.95rem; color: var(--text-dim); margin-bottom: 28px; position: relative; }
.apply__btns { display: flex; flex-direction: column; gap: 12px; position: relative; }

/* ---- Buttons ---- */
.btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 18px; border: none; border-radius: var(--r-sm);
  font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 600;
  color: #fff; text-decoration: none; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, filter 0.2s; -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.97); }
.btn:hover { filter: brightness(1.06); }
.btn__ic { width: 21px; height: 21px; flex-shrink: 0; }
.btn--whatsapp { background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-d)); box-shadow: 0 6px 22px rgba(37,211,102,0.3); }
.btn--telegram { background: linear-gradient(135deg, var(--telegram), var(--telegram-d)); box-shadow: 0 6px 22px rgba(41,182,246,0.3); }

/* ---- Footer ---- */
.footer { padding: 28px 0 16px; }
.footer .container { display: flex; flex-direction: column; gap: 4px; align-items: center; text-align: center; }
.footer span { font-size: 0.78rem; color: var(--text-faint); }
.footer__muted { font-size: 0.72rem; }

/* ---- Dock (sticky mobile CTA) ---- */
.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; gap: 10px;
  padding: 12px 16px calc(12px + var(--safe));
  background: linear-gradient(180deg, rgba(10,10,11,0.4), rgba(10,10,11,0.92));
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--border);
}

/* ---- Reveal animation ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---- Desktop ---- */
@media (min-width: 760px) {
  :root { --maxw: 780px; }
  .hero { padding: 72px 0 48px; }
  .hero .container { max-width: 600px; margin-left: auto; margin-right: auto; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento__card--wide { grid-column: span 2; }
  .bento__card--schedule { grid-column: span 2; }
  .apply__btns { flex-direction: row; max-width: 460px; margin: 0 auto; }

  body { padding-bottom: 40px; }
  .dock { display: none; }
}

@media (min-width: 1024px) {
  :root { --maxw: 1040px; }
  .hero .container { max-width: 1040px; }
  .hero__lead { font-size: 1.1rem; }
  .duties { display: grid; grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: repeat(3, 1fr); }
  .bento__card--wide { grid-column: span 3; }
  .bento__card--schedule { grid-column: span 1; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
