:root {
  --bg: #f4f7ff;
  --bg-2: #eef4ff;
  --text: #101828;
  --muted: #667085;
  --white: #ffffff;

  --blue: #2563eb;
  --cyan: #06b6d4;
  --purple: #7c3aed;
  --pink: #ec4899;
  --green: #16a34a;
  --orange: #f97316;

  --gradient: linear-gradient(135deg, #2563eb, #06b6d4);
  --gradient-2: linear-gradient(135deg, #7c3aed, #ec4899);
  --gradient-green: linear-gradient(135deg, #16a34a, #22c55e);

  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 14px 40px rgba(15, 23, 42, 0.08);

  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;

  --container: 1180px;
  --nav-height: 78px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -2;
  background:
    radial-gradient(circle at 10% 10%, rgba(37, 99, 235, 0.16), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(6, 182, 212, 0.18), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.10), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f4f7ff 45%, #eef4ff 100%);
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.55;
  animation: orbMove 9s ease-in-out infinite alternate;
}

.orb-one {
  width: 320px;
  height: 320px;
  background: rgba(37, 99, 235, 0.24);
  top: -80px;
  left: -80px;
}

.orb-two {
  width: 380px;
  height: 380px;
  background: rgba(6, 182, 212, 0.24);
  top: 100px;
  right: -120px;
  animation-delay: 1s;
}

.orb-three {
  width: 300px;
  height: 300px;
  background: rgba(236, 72, 153, 0.16);
  bottom: 5%;
  left: 35%;
  animation-delay: 2s;
}

.container {
  width: min(var(--container), calc(100% - 34px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: white;
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.18);
  animation: floatLogo 5s ease-in-out infinite;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 1.04rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.brand span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: #344054;
  font-weight: 800;
  font-size: 0.94rem;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: var(--blue);
}

.mobile-menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: var(--gradient);
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
}

.hero-section {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 70px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 54px;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  color: #344054;
  font-size: 0.88rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.hero-badge span,
.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 0 6px rgba(6, 182, 212, 0.12);
}

.hero-content h1 {
  max-width: 740px;
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: -0.075em;
  font-weight: 950;
  margin-bottom: 22px;
}

.hero-content h1 span {
  display: inline-block;
  background: linear-gradient(135deg, #2563eb, #06b6d4, #7c3aed);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-content p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-actions.center {
  justify-content: center;
}

.play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 7px 12px;
  border-radius: 18px;
  background: #0f172a;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
  transition: 0.24s ease;
}

.play-btn img {
  height: 42px;
}

.outline-btn {
  height: 58px;
  padding: 0 24px;
  border-radius: 18px;
  background: white;
  color: var(--text);
  font-weight: 900;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.24s ease;
}

.play-btn:hover,
.outline-btn:hover {
  transform: translateY(-3px);
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
  max-width: 660px;
}

.hero-mini-stats div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-mini-stats b {
  display: block;
  font-size: 1.25rem;
  font-weight: 950;
}

.hero-mini-stats span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-phone-area {
  min-height: 660px;
  display: grid;
  place-items: center;
  position: relative;
}

.phone-wrap {
  position: relative;
  z-index: 3;
  animation: floatPhone 6s ease-in-out infinite;
}

.phone-frame {
  position: relative;
  width: 300px;
  height: 610px;
  padding: 13px;
  border-radius: 44px;
  background: linear-gradient(145deg, #111827, #475569);
  box-shadow:
    0 34px 90px rgba(15, 23, 42, 0.30),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.phone-notch {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 108px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 0 0 16px 16px;
  background: #050816;
  z-index: 10;
}

.phone-screen {
  height: 100%;
  border-radius: 34px;
  padding: 58px 18px 18px;
  background:
    radial-gradient(circle at 80% 0%, rgba(6, 182, 212, 0.34), transparent 34%),
    linear-gradient(180deg, #15213b 0%, #070b15 100%);
  overflow: hidden;
}

.app-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.app-top small {
  display: block;
  color: #cbd5e1;
}

.app-top b {
  display: block;
  font-size: 1.1rem;
}

.avatar-dot {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--gradient);
  color: white;
  font-weight: 950;
}

.wallet-card {
  margin-top: 22px;
  padding: 20px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.94), rgba(6, 182, 212, 0.90));
  color: white;
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.28);
}

.wallet-card small {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.wallet-card h3 {
  margin-top: 8px;
  font-size: 2.15rem;
}

.wallet-card p {
  color: rgba(255, 255, 255, 0.86);
  margin-top: 3px;
}

.coin-pill {
  display: inline-flex;
  margin-top: 13px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 900;
  font-size: 0.86rem;
}

.watch-button {
  width: 100%;
  height: 58px;
  border: 0;
  margin-top: 18px;
  border-radius: 20px;
  background: var(--gradient-green);
  color: white;
  font-weight: 950;
  font-size: 1rem;
  box-shadow: 0 18px 35px rgba(22, 163, 74, 0.25);
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.app-grid div,
.withdraw-card {
  padding: 15px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: white;
}

.app-grid b {
  display: block;
  font-size: 1.2rem;
}

.app-grid span {
  color: #cbd5e1;
  font-size: 0.82rem;
}

.withdraw-card {
  margin-top: 14px;
}

.withdraw-card span {
  display: block;
  color: #cbd5e1;
  margin-bottom: 10px;
  font-size: 0.84rem;
}

.withdraw-card div {
  display: flex;
  gap: 8px;
}

.withdraw-card b {
  flex: 1;
  text-align: center;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
  animation: floatCard 5s ease-in-out infinite;
}

.floating-card span {
  font-size: 1.5rem;
}

.floating-card b {
  display: block;
  font-size: 0.95rem;
}

.floating-card small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.coin-card {
  top: 85px;
  left: 0;
}

.payout-card {
  bottom: 110px;
  right: 0;
  animation-delay: 1s;
}

.circle-ring {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 2px dashed rgba(37, 99, 235, 0.22);
  animation: rotateRing 22s linear infinite;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  margin-bottom: 15px;
}

.section-head p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.strip-grid,
.features-grid,
.steps-grid,
.trust-grid,
.footer-grid {
  display: grid;
  gap: 22px;
}

.strip-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.strip-card,
.feature-card,
.step-card,
.trust-card,
.cta-card,
.method-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: 0.28s ease;
}

.strip-card {
  padding: 22px;
}

.strip-card span,
.icon-box,
.trust-card span {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: var(--gradient);
  color: white;
  font-size: 1.45rem;
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.18);
  margin-bottom: 16px;
}

.strip-card b,
.feature-card h3,
.step-card h3,
.trust-card h3,
.method-card h3 {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 950;
}

.strip-card p,
.feature-card p,
.step-card p,
.trust-card p,
.method-card p {
  color: var(--muted);
  line-height: 1.65;
}

.features-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.step-card,
.trust-card {
  padding: 26px;
}

.feature-card:hover,
.step-card:hover,
.trust-card:hover,
.strip-card:hover,
.method-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.withdraw-section {
  overflow: hidden;
}

.withdraw-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.withdraw-content h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
  margin-bottom: 18px;
}

.withdraw-content > p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.05rem;
}

.rule-list {
  display: grid;
  gap: 13px;
  margin-top: 24px;
}

.rule-list div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 15px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
}

.rule-list p {
  color: var(--muted);
  line-height: 1.6;
}

.rule-list b {
  color: var(--text);
}

.withdraw-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.method-card {
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.method-card::after {
  content: "";
  position: absolute;
  right: -46px;
  top: -46px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  opacity: 0.14;
}

.method-card.upi::after {
  background: var(--green);
}

.method-card.paypal::after {
  background: var(--blue);
}

.method-card > span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 22px;
  background: #eef2ff;
  font-size: 1.9rem;
  margin-bottom: 18px;
}

.method-card b {
  display: block;
  margin: 18px 0 14px;
  font-size: 1.55rem;
  font-weight: 950;
}

.amount-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.amount-pills small {
  padding: 7px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #344054;
  font-weight: 900;
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card span {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  font-weight: 950;
  font-size: 1.05rem;
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.18);
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-wrap {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 15px;
}

.faq-item {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  min-height: 70px;
  padding: 0 22px;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  font-weight: 950;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
}

.faq-question b {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef2ff;
  color: var(--blue);
  transition: 0.24s ease;
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
}

.faq-answer p {
  color: var(--muted);
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question b {
  transform: rotate(45deg);
}

.cta-card {
  padding: 52px;
  text-align: center;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 100% 100%, rgba(6, 182, 212, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.92);
}

.cta-card h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: -0.06em;
  line-height: 1.04;
  margin-bottom: 14px;
}

.cta-card p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  padding: 56px 0 32px;
  background: #0f172a;
  color: white;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.footer-brand {
  margin-bottom: 18px;
}

.site-footer p {
  max-width: 560px;
  color: #cbd5e1;
  line-height: 1.7;
}

.site-footer h3 {
  margin-bottom: 16px;
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.site-footer a {
  color: #dbeafe;
  font-weight: 800;
}

.site-footer a:hover {
  color: white;
}

.copyright {
  margin-top: 20px;
  color: #94a3b8;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

@keyframes floatLogo {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes floatPhone {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes rotateRing {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbMove {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(12px, -18px, 0) scale(1.06);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .withdraw-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-mini-stats {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-phone-area {
    min-height: 620px;
  }

  .features-grid,
  .steps-grid,
  .strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .withdraw-content {
    text-align: center;
  }

  .rule-list {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 820px) {
  :root {
    --nav-height: auto;
  }

  .site-header {
    height: auto;
    padding: 12px 0;
  }

  .nav-wrap {
    position: relative;
  }

  .mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 12px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hero-section {
    padding: 44px 0 70px;
  }

  .hero-content h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .hero-mini-stats {
    grid-template-columns: 1fr;
  }

  .hero-phone-area {
    min-height: 560px;
  }

  .phone-frame {
    width: 270px;
    height: 560px;
  }

  .floating-card {
    transform: scale(0.9);
  }

  .coin-card {
    left: 0;
    top: 60px;
  }

  .payout-card {
    right: 0;
    bottom: 70px;
  }

  .circle-ring {
    width: 420px;
    height: 420px;
  }

  .section {
    padding: 74px 0;
  }

  .withdraw-cards {
    grid-template-columns: 1fr;
  }

  .cta-card {
    padding: 34px 22px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 22px));
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand span {
    font-size: 0.72rem;
  }

  .features-grid,
  .steps-grid,
  .strip-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .play-btn,
  .outline-btn {
    width: 100%;
  }

  .play-btn img {
    margin: 0 auto;
  }

  .phone-frame {
    width: 248px;
    height: 520px;
    border-radius: 38px;
  }

  .phone-screen {
    border-radius: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .floating-card {
    position: relative;
    inset: auto;
    margin: 12px auto;
    width: min(100%, 290px);
  }

  .hero-phone-area {
    display: flex;
    flex-direction: column;
    min-height: auto;
    gap: 12px;
  }

  .circle-ring {
    display: none;
  }

  .strip-card,
  .feature-card,
  .step-card,
  .trust-card,
  .method-card {
    padding: 22px;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .footer-grid {
    gap: 30px;
  }
}