/* =========================================================
   MOBIWAX - BOLD.CSS
   ========================================================= */

:root {
  --bg: #07100c;
  --bg-soft: #0b1711;
  --card: #0e1d15;
  --card-hover: #12251a;

  --green: #39ff88;
  --green-dark: #20c96b;
  --green-soft: rgba(57, 255, 136, 0.10);

  --white: #ffffff;
  --text: #eaf5ee;
  --muted: #91a59a;

  --border: rgba(255, 255, 255, 0.08);

  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);

  --radius: 18px;
}

/* =========================================================
   RESET
   ========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font-family: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* =========================================================
   TICKER
   ========================================================= */

.ticker {
  width: 100%;
  overflow: hidden;
  background: #040906;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.ticker-inner {
  display: flex;
  width: max-content;
  animation: tickerMove 28s linear infinite;
}

.ticker span {
  display: inline-block;
  padding: 11px 35px;
  color: var(--muted);
  font-size: 0.72rem;
}

.ticker span::before {
  content: "•";
  color: var(--green);
  margin-right: 12px;
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =========================================================
   NAVIGATION
   ========================================================= */

nav {
  position: sticky;
  top: 0;
  z-index: 1000;

  height: 76px;
  padding: 0 5%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(7, 16, 12, 0.92);
  backdrop-filter: blur(18px);

  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: "Syne", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.nav-logo span {
  color: var(--green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.82rem;
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

/* =========================================================
   HERO
   ========================================================= */

#hero {
  position: relative;
  min-height: 650px;

  display: flex;
  align-items: center;

  padding: 90px 5% 100px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 75% 35%,
      rgba(57, 255, 136, 0.10),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #07100c 0%,
      #09170f 55%,
      #06100b 100%
    );
}

.hero-grid-bg {
  position: absolute;
  inset: 0;

  opacity: 0.18;

  background-image:
    linear-gradient(
      rgba(255,255,255,0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.035) 1px,
      transparent 1px
    );

  background-size: 55px 55px;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.orb-1 {
  width: 300px;
  height: 300px;
  top: 100px;
  right: 8%;
  background: rgba(57, 255, 136, 0.10);
}

.orb-2 {
  width: 220px;
  height: 220px;
  bottom: 0;
  left: 5%;
  background: rgba(0, 180, 255, 0.05);
}

.orb-3 {
  width: 160px;
  height: 160px;
  top: 10%;
  left: 40%;
  background: rgba(57, 255, 136, 0.05);
}

.hero-layout {
  position: relative;
  z-index: 2;

  width: min(1120px, 100%);
  margin: auto;
}

.hero-left {
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 8px 14px;
  margin-bottom: 25px;

  border: 1px solid rgba(57, 255, 136, 0.20);
  border-radius: 100px;

  background: rgba(57, 255, 136, 0.07);

  color: var(--green);

  font-size: 0.72rem;
  font-weight: 600;
}

.live-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--green);

  box-shadow: 0 0 12px var(--green);

  animation: pulse 1.7s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.45;
    transform: scale(0.75);
  }
}

.hero-headline {
  font-family: "Syne", sans-serif;

  font-size: clamp(3rem, 7vw, 6.2rem);

  line-height: 0.98;

  letter-spacing: -0.065em;

  font-weight: 800;
}

.hl {
  color: var(--green);
}

.hero-sub {
  max-width: 700px;

  margin-top: 27px;

  color: var(--muted);

  font-size: 1rem;

  line-height: 1.85;
}

.hero-sub strong {
  display: inline-block;
  color: var(--white);
}

.earning-badge {
  display: inline-block;

  margin-top: 25px;

  padding: 12px 18px;

  border-radius: 10px;

  background: var(--green);

  color: #041009;

  font-size: 0.82rem;

  font-weight: 800;

  box-shadow: 0 10px 35px rgba(57, 255, 136, 0.14);
}

/* =========================================================
   CREATE ACCOUNT BUTTON BELOW HERO
   ========================================================= */

#hero + .btn {
  display: flex;

  align-items: center;
  justify-content: center;

  width: min(400px, 90%);

  min-height: 54px;

  margin: 35px auto 20px;

  border-radius: 10px;

  font-size: 0.85rem;

  font-weight: 800;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  min-height: 48px;

  padding: 0 23px;

  border-radius: 10px;

  font-size: 0.8rem;

  font-weight: 700;

  cursor: pointer;

  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-green {
  background: var(--green);
  color: #041009;

  box-shadow: 0 12px 30px rgba(57, 255, 136, 0.12);
}

.btn-green:hover {
  background: #62ffa2;

  box-shadow:
    0 18px 40px rgba(57, 255, 136, 0.20);
}

.btn-outline {
  border: 1px solid rgba(57, 255, 136, 0.28);

  background: rgba(57, 255, 136, 0.03);

  color: var(--green);
}

.btn-outline:hover {
  background: var(--green-soft);
}

.btn-lg {
  min-height: 54px;
  padding: 0 28px;
}

.btn-whatsapp {
  background: #25d366;
  color: #041009;
}

/* =========================================================
   SECTIONS
   ========================================================= */

section {
  padding: 100px 0;
}

#how {
  background: var(--bg-soft);
}

#compensation {
  background: var(--bg);
}

#privacy {
  background: var(--bg-soft);
}

#after {
  background: var(--bg);
}

.sec-tag {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 18px;

  color: var(--green);

  font-size: 0.7rem;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.13em;
}

.sec-tag::before {
  content: "";

  width: 25px;
  height: 1px;

  background: var(--green);
}

.sec-title {
  font-family: "Syne", sans-serif;

  font-size: clamp(2rem, 4vw, 3.6rem);

  line-height: 1.05;

  letter-spacing: -0.055em;

  font-weight: 800;
}

.sec-title em {
  color: var(--green);
  font-style: normal;
}

.sec-sub {
  color: var(--muted);

  font-size: 0.9rem;

  line-height: 1.8;
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */

.how-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;
}

.how-card {
  position: relative;

  padding: 32px;

  min-height: 270px;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  border: 1px solid var(--border);

  border-radius: var(--radius);

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.035),
      rgba(255,255,255,0.012)
    );

  box-shadow: var(--shadow);

  overflow: hidden;

  transition: 0.3s ease;
}

.how-card:hover {
  transform: translateY(-6px);

  border-color: rgba(57,255,136,0.20);

  background: var(--card-hover);
}

.how-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 2px;

  background: var(--green);

  opacity: 0;

  transition: 0.3s ease;
}

.how-card:hover::before {
  opacity: 1;
}

.how-title {
  margin-bottom: 14px;

  font-family: "Syne", sans-serif;

  font-size: 1.25rem;

  font-weight: 800;
}

.how-desc {
  margin-bottom: 25px;

  color: var(--muted);

  font-size: 0.83rem;

  line-height: 1.8;

  flex: 1;
}

/* =========================================================
   COMPENSATION
   ========================================================= */

.comp-layout {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 70px;

  align-items: center;
}

.comp-card {
  padding: 1px;

  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(57,255,136,0.35),
      rgba(255,255,255,0.05)
    );

  box-shadow: var(--shadow);
}

.comp-card-inner {
  padding: 38px;

  border-radius: 21px;

  background: var(--card);
}

.comp-amount {
  font-family: "Syne", sans-serif;

  font-size: clamp(3rem, 6vw, 5rem);

  font-weight: 800;

  letter-spacing: -0.06em;

  color: var(--green);
}

.comp-label {
  margin-bottom: 30px;

  color: var(--muted);

  font-size: 0.78rem;
}

.comp-rows {
  border-top: 1px solid var(--border);
}

.comp-row {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 15px;

  padding: 16px 0;

  border-bottom: 1px solid var(--border);
}

.comp-row-left {
  color: var(--text);

  font-size: 0.82rem;
}

.comp-row-right {
  color: var(--green);

  font-size: 0.78rem;

  font-weight: 700;

  white-space: nowrap;
}

.comp-note {
  margin-top: 22px;

  padding: 15px;

  border-radius: 10px;

  background: var(--green-soft);

  color: var(--muted);

  font-size: 0.75rem;

  line-height: 1.7;
}

.comp-note strong {
  color: var(--green);
}

/* =========================================================
   PRIVACY
   ========================================================= */

.privacy-layout {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 70px;

  align-items: center;
}

.privacy-cards {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 14px;
}

.privacy-card {
  min-height: 190px;

  padding: 25px;

  border: 1px solid var(--border);

  border-radius: 15px;

  background: rgba(255,255,255,0.025);

  transition: 0.3s ease;
}

.privacy-card:hover {
  transform: translateY(-4px);

  border-color: rgba(57,255,136,0.18);

  background: rgba(57,255,136,0.04);
}

.privacy-card-title {
  margin-bottom: 10px;

  font-family: "Syne", sans-serif;

  font-size: 0.95rem;

  font-weight: 700;
}

.privacy-card-desc {
  color: var(--muted);

  font-size: 0.75rem;

  line-height: 1.75;
}

/* =========================================================
   AFTER REGISTRATION
   ========================================================= */

.after-inner {
  width: min(850px, 100%);

  margin: auto;

  padding: 40px;

  border: 1px solid var(--border);

  border-radius: 20px;

  background: var(--card);

  box-shadow: var(--shadow);
}

.after-steps {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;

  margin-bottom: 30px;
}

.after-step {
  display: flex;

  gap: 14px;

  color: var(--muted);

  font-size: 0.8rem;

  line-height: 1.7;
}

.after-step-num {
  flex: 0 0 34px;

  width: 34px;
  height: 34px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--green);

  color: #041009;

  font-weight: 800;
}

.after-step strong {
  color: var(--white);
}

.after-note {
  margin-bottom: 20px;

  padding: 18px;

  border-left: 3px solid var(--green);

  border-radius: 8px;

  background: var(--green-soft);

  color: var(--muted);

  font-size: 0.8rem;

  line-height: 1.7;
}

.after-note strong {
  color: var(--green);
}

/* =========================================================
   FOOTER
   ========================================================= */

footer {
  padding: 30px 5%;

  background: #040906;

  border-top: 1px solid var(--border);
}

.footer-inner {
  width: min(1120px, 100%);

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr 1fr;

  align-items: center;

  gap: 20px;
}

.footer-logo {
  font-family: "Syne", sans-serif;

  font-size: 1.15rem;

  font-weight: 800;
}

.footer-logo span {
  color: var(--green);
}

.footer-copy {
  text-align: center;

  color: var(--muted);

  font-size: 0.7rem;
}

.footer-ref {
  text-align: right;
}

.footer-ref a {
  color: var(--green);

  font-size: 0.7rem;
}

/* =========================================================
   REVEAL
   IMPORTANT:
   EVERYTHING IS VISIBLE WITHOUT JAVASCRIPT
   ========================================================= */

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.d1,
.d2,
.d3,
.d4 {
  transition-delay: 0s;
}

/* =========================================================
   MOBILE / TABLET
   ========================================================= */

@media (max-width: 850px) {

  nav {
    height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;

    top: 68px;
    left: 0;
    right: 0;

    display: none;

    flex-direction: column;

    padding: 25px;

    background: rgba(7,16,12,0.98);

    border-bottom: 1px solid var(--border);
  }

  .nav-links.active {
    display: flex;
  }

  #hero {
    min-height: auto;

    padding: 75px 5% 80px;
  }

  .hero-headline {
    font-size: clamp(2.8rem, 10vw, 5rem);
  }

  .comp-layout,
  .privacy-layout {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .after-steps {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .footer-copy,
  .footer-ref {
    text-align: center;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  section {
    padding: 75px 0;
  }

  .container {
    width: 90%;
  }

  .ticker span {
    padding: 10px 20px;

    font-size: 0.65rem;
  }

  .hero-badge {
    font-size: 0.65rem;
  }

  .hero-headline {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .hero-sub {
    font-size: 0.86rem;
  }

  .earning-badge {
    font-size: 0.72rem;
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .how-card {
    min-height: auto;

    padding: 27px;
  }

  .privacy-cards {
    grid-template-columns: 1fr;
  }

  .comp-card-inner {
    padding: 27px;
  }

  .comp-row-left {
    font-size: 0.75rem;
  }

  .comp-row-right {
    font-size: 0.7rem;
  }

  .after-inner {
    padding: 25px;
  }

  .after-step {
    font-size: 0.76rem;
  }

  .btn-lg {
    width: 100%;
  }
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .customer-care-btn {
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1rem 2rem;
}
}