html,body{
  width:100%;
  max-width:100%;
  margin:0;
  padding:0;
  overflow-x:hidden;
  scroll-behavior:smooth;
  font-family:Arial,Helvetica,sans-serif;
  background:#fff;
  color:#111827;
}

*{
  box-sizing:border-box;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

a{
  text-decoration:none;
}

.naga-landing{
  width:100%;
  min-height:100vh;
  overflow-x:hidden;
  background:#fff;
}

.container{
  width:100%;
  max-width:1280px;
  margin:0 auto;
  padding-left:24px;
  padding-right:24px;
}

.container.narrow{
  max-width:900px;
  text-align:center;
}

.site-header{
  background:#fff;
  box-shadow:0 1px 8px rgba(0,0,0,.06);
  position:sticky;
  top:0;
  z-index:50;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  gap:16px;
}

.site-logo{
  width:auto;
  height:36px;
  object-fit:contain;
}

.header-cta{
  background:#2563eb;
  color:#fff;
  padding:10px 24px;
  border-radius:8px;
  font-weight:700;
  transition:.25s ease;
  white-space:nowrap;
}

.header-cta:hover{
  background:#1d4ed8;
}

.hero-section{
  padding:80px 0;
  background:linear-gradient(135deg,#eff6ff 0%,#fff 50%,#eff6ff 100%);
}

.hero-grid,
.partner-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
}

.hero-title{
  font-size:60px;
  line-height:1.05;
  font-weight:800;
  margin:0 0 24px;
  letter-spacing:-.04em;
}

.text-blue{
  color:#2563eb;
}

.gradient-text{
  background:linear-gradient(135deg,#fbbf24,#f59e0b);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

.hero-subtitle{
  font-size:20px;
  line-height:1.75;
  color:#4b5563;
  margin:0 0 32px;
}

.button-row{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  align-items:center;
  margin-bottom:32px;
}

.button-row.center{
  justify-content:center;
}

.primary-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#2563eb;
  color:#fff;
  padding:16px 32px;
  border-radius:10px;
  font-size:18px;
  font-weight:800;
  box-shadow:0 10px 20px rgba(37,99,235,.25);
  transition:.25s ease;
}

.primary-btn:hover{
  background:#1d4ed8;
  transform:translateY(-2px);
}

.secondary-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#2563eb;
  border:2px solid #2563eb;
  padding:14px 32px;
  border-radius:10px;
  font-size:18px;
  font-weight:800;
  transition:.25s ease;
}

.secondary-btn:hover{
  background:#eff6ff;
}

.arrow{
  margin-left:8px;
}

.features-row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:20px;
  color:#6b7280;
  font-size:14px;
}

.feature-item{
  display:flex;
  align-items:center;
  gap:6px;
  color:#16a34a;
  font-weight:700;
}

.feature-item span{
  color:#6b7280;
  font-weight:500;
}

.market-card-wrap{
  position:relative;
}

.market-card{
  background:#fff;
  border:1px solid #f3f4f6;
  border-radius:24px;
  padding:32px;
  box-shadow:0 25px 60px rgba(15,23,42,.14);
}

.market-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  margin-bottom:24px;
}

.market-head h3{
  margin:0;
  font-size:18px;
  font-weight:800;
}

.updated-badge{
  color:#2563eb;
  font-size:14px;
  font-weight:800;
  display:flex;
  align-items:center;
  gap:4px;
}

.market-list{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.market-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:16px;
  border-radius:12px;
}

.market-item.green{
  background:#f0fdf4;
}

.market-item.blue{
  background:#eff6ff;
}

.market-item.purple{
  background:#faf5ff;
}

.market-left{
  display:flex;
  align-items:center;
  gap:12px;
}

.market-symbol{
  width:32px;
  height:32px;
  border-radius:999px;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:14px;
}

.green-dot{
  background:#22c55e;
}

.blue-dot{
  background:#3b82f6;
}

.purple-dot{
  background:#a855f7;
}

.market-left p,
.market-price p{
  margin:0;
  font-weight:800;
  color:#111827;
}

.market-left span,
.market-price span{
  display:block;
  margin-top:3px;
  font-size:13px;
  color:#6b7280;
}

.market-price{
  text-align:right;
}

.floating-icon{
  position:absolute;
  right:-24px;
  bottom:-24px;
  width:64px;
  height:64px;
  border-radius:999px;
  background:#facc15;
  color:#713f12;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  font-weight:800;
  box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.intro-section,
.why-section{
  padding:80px 0;
  background:#fff;
}

.section-center{
  text-align:center;
  max-width:850px;
  margin:0 auto 64px;
}

.section-center h2{
  font-size:40px;
  line-height:1.15;
  margin:0 0 16px;
  font-weight:800;
  letter-spacing:-.025em;
}

.section-center p{
  font-size:20px;
  line-height:1.65;
  color:#4b5563;
  margin:0 auto;
}

.naga-logo-wrap{
  display:flex;
  justify-content:center;
  margin-bottom:24px;
}

.naga-logo{
  height:48px;
  width:auto;
  object-fit:contain;
}

.stats-box{
  background:linear-gradient(135deg,#f0fdf4,#eff6ff);
  border-radius:24px;
  padding:32px;
  margin-top:32px;
}

.stats-grid,
.blue-stats-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
  text-align:center;
}

.stats-grid strong{
  display:block;
  font-size:40px;
  line-height:1;
  margin-bottom:10px;
}

.stats-grid span{
  display:block;
  color:#4b5563;
  margin-bottom:6px;
}

.stats-grid small{
  display:block;
  color:#6b7280;
}

.green-text{
  color:#16a34a;
}

.blue-text{
  color:#2563eb;
}

.purple-text{
  color:#9333ea;
}

.partner-section{
  padding:16px 0 80px;
  background:#fff;
}

.partner-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(250,204,21,.12);
  border:1px solid rgba(250,204,21,.25);
  color:#ca8a04;
  padding:8px 16px;
  border-radius:999px;
  font-size:14px;
  font-weight:800;
  margin-bottom:24px;
}

.partner-section h2{
  font-size:52px;
  line-height:1.08;
  margin:0 0 24px;
  font-weight:800;
  letter-spacing:-.035em;
}

.partner-section h2 span{
  color:#eab308;
}

.partner-section p{
  font-size:18px;
  line-height:1.75;
  color:#4b5563;
  margin:0 0 18px;
}

.partner-image-card{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  background:#111827;
  border:1px solid rgba(250,204,21,.25);
  box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.partner-image-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.image-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.7),rgba(0,0,0,.1),transparent);
  pointer-events:none;
}

.stocks-section,
.testimonials-section{
  padding:80px 0;
  background:#f9fafb;
}

.white-box{
  text-align:center;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:24px;
  padding:40px;
}

.white-box p{
  color:#374151;
  font-size:16px;
  line-height:1.7;
  margin:0 0 24px;
}

.inline-btn{
  display:inline-flex;
}

.small-note{
  color:#6b7280!important;
  margin-top:16px!important;
  margin-bottom:0!important;
}

.cards-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}

.info-card{
  background:#fff;
  border:1px solid #f3f4f6;
  border-radius:16px;
  padding:32px;
  box-shadow:0 12px 30px rgba(15,23,42,.08);
}

.info-card h3{
  font-size:20px;
  margin:0 0 14px;
  font-weight:800;
}

.info-card p{
  margin:0;
  color:#4b5563;
  line-height:1.7;
}

.icon{
  width:48px;
  height:48px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:24px;
  font-weight:900;
  font-size:22px;
}

.blue-icon{background:#dbeafe;color:#2563eb}
.green-icon{background:#dcfce7;color:#16a34a}
.purple-icon{background:#f3e8ff;color:#9333ea}
.yellow-icon{background:#fef9c3;color:#ca8a04}
.red-icon{background:#fee2e2;color:#dc2626}
.indigo-icon{background:#e0e7ff;color:#4f46e5}

.blue-stats{
  padding:80px 0;
  background:#2563eb;
}

.blue-stats-grid{
  grid-template-columns:repeat(4,1fr);
}

.blue-stats-grid strong{
  display:block;
  color:#fff;
  font-size:40px;
  line-height:1;
  margin-bottom:10px;
  font-weight:800;
}

.blue-stats-grid span{
  color:#dbeafe;
}

.community-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#dcfce7;
  color:#166534;
  padding:8px 16px;
  border-radius:999px;
  font-size:14px;
  font-weight:800;
  margin-bottom:24px;
}

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}

.testimonial-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:24px;
  box-shadow:0 12px 30px rgba(15,23,42,.08);
  transition:.25s ease;
}

.testimonial-card:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 35px rgba(15,23,42,.12);
}

.stars{
  color:#fbbf24;
  letter-spacing:2px;
  margin-bottom:16px;
}

.testimonial-card p{
  color:#374151;
  font-size:14px;
  line-height:1.7;
  font-style:italic;
  margin:0 0 24px;
}

.testimonial-card strong{
  display:block;
  color:#111827;
  font-size:14px;
  margin-bottom:4px;
}

.testimonial-card span{
  color:#6b7280;
  font-size:12px;
}

.final-section{
  padding:80px 0;
  background:linear-gradient(135deg,#2563eb,#1e40af);
  text-align:center;
}

.final-section h2{
  color:#fff;
  font-size:42px;
  line-height:1.15;
  margin:0 0 24px;
  font-weight:800;
}

.final-section p{
  color:#dbeafe;
  font-size:20px;
  line-height:1.65;
  margin:0 0 32px;
}

.white-btn{
  background:#fff;
  color:#2563eb;
  padding:16px 32px;
  border-radius:10px;
  font-size:18px;
  font-weight:800;
  box-shadow:0 10px 24px rgba(0,0,0,.12);
  transition:.25s ease;
}

.white-btn:hover{
  background:#f3f4f6;
}

.outline-white-btn{
  color:#fff;
  border:2px solid #fff;
  padding:14px 32px;
  border-radius:10px;
  font-size:18px;
  font-weight:800;
  transition:.25s ease;
}

.outline-white-btn:hover{
  background:#fff;
  color:#2563eb;
}

.final-section small{
  display:block;
  color:#dbeafe;
  line-height:1.6;
  max-width:780px;
  margin:0 auto;
}

.footer{
  background:#030712;
  color:#d1d5db;
  padding:24px 0;
  text-align:center;
  font-size:10px;
  line-height:1.55;
}

.footer p{
  margin:0 0 8px;
}

.footer a{
  color:#fff;
  text-decoration:underline;
}

@media(max-width:900px){
  .container{
    padding-left:16px;
    padding-right:16px;
  }

  .hero-grid,
  .partner-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .hero-title{
    text-align:center;
    font-size:40px;
    line-height:1.15;
  }

  .hero-subtitle{
    text-align:center;
    font-size:17px;
    line-height:1.7;
  }

  .button-row{
    justify-content:center;
  }

  .primary-btn,
  .secondary-btn,
  .white-btn,
  .outline-white-btn{
    width:100%;
    max-width:340px;
    text-align:center;
  }

  .features-row{
    justify-content:center;
    text-align:center;
  }

  .market-card{
    padding:20px;
  }

  .floating-icon{
    right:12px;
    bottom:-18px;
  }

  .section-center{
    margin-bottom:40px;
  }

  .section-center h2,
  .partner-section h2,
  .final-section h2{
    font-size:32px;
    line-height:1.2;
    text-align:center;
  }

  .section-center p,
  .partner-section p,
  .final-section p{
    font-size:17px;
    text-align:center;
  }

  .partner-pill{
    display:flex;
    width:max-content;
    margin-left:auto;
    margin-right:auto;
  }

  .stats-grid,
  .blue-stats-grid,
  .cards-grid,
  .testimonial-grid{
    grid-template-columns:1fr;
  }

  .white-box{
    padding:24px;
  }

  .intro-section,
  .why-section,
  .stocks-section,
  .testimonials-section,
  .blue-stats,
  .final-section,
  .hero-section{
    padding-top:56px;
    padding-bottom:56px;
  }

  .partner-section{
    padding-top:16px;
    padding-bottom:56px;
  }
}

@media(max-width:420px){
  .site-logo{
    max-width:135px;
    height:auto;
  }

  .header-cta{
    font-size:12px;
    padding:10px 12px;
  }

  .hero-title{
    font-size:34px;
  }

  .market-head{
    flex-direction:column;
    align-items:flex-start;
  }
}