:root{
  --green:#9cff00;
  --green-soft:#b7ff47;
  --black:#050505;
  --black-2:#0b0f12;
  --panel:#10161b;
  --panel-2:#141d23;
  --text:#f5f7fa;
  --muted:#9aa6b2;
  --line:rgba(255,255,255,.08);
  --glass:rgba(255,255,255,.05);
  --shadow:0 25px 80px rgba(0,0,0,.35);
  --radius:24px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(156,255,0,.08), transparent 20%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.04), transparent 18%),
    linear-gradient(180deg, #040506 0%, #0a0d10 100%);
  color:var(--text);
  overflow-x:hidden;
}

a{
  text-decoration:none;
}

.section-block{
  padding:110px 0;
  position:relative;
  z-index:2;
}

.section-dark{
  background:linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,.03));
  border-top:1px solid rgba(255,255,255,.03);
  border-bottom:1px solid rgba(255,255,255,.03);
}

.section-intro{
  padding-bottom:50px;
}

.pt-0{
  padding-top:0 !important;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:1.8px;
  font-weight:800;
  color:var(--green);
  margin-bottom:18px;
}

.section-head{
  max-width:900px;
  margin:0 auto 10px;
}

.section-head h2{
  font-size:clamp(2rem, 4vw, 3.6rem);
  font-weight:800;
  line-height:1.1;
  margin-bottom:16px;
}

.section-head p{
  color:var(--muted);
  font-size:1.05rem;
}

.glass-panel{
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-radius:28px;
}

/* Cursor glow */
.cursor-glow{
  position:fixed;
  width:280px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(156,255,0,.12) 0%, rgba(156,255,0,0) 70%);
  pointer-events:none;
  transform:translate(-50%, -50%);
  z-index:0;
  filter:blur(20px);
}

/* Navbar */
.nolia-navbar{
  padding:18px 0;
  transition:.35s ease;
  background:transparent;
}

.nolia-navbar.scrolled{
  background:rgba(5,5,5,.72);
  backdrop-filter:blur(18px);
  box-shadow:0 10px 40px rgba(0,0,0,.28);
}

.navbar-brand{
  color:#fff;
  font-size:1.7rem;
  font-weight:800;
  display:flex;
  align-items:center;
  gap:10px;
}

.logo-dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:var(--green);
  box-shadow:0 0 16px var(--green);
}

.nav-link{
  color:rgba(255,255,255,.8);
  font-weight:600;
  position:relative;
  transition:.3s ease;
}

.nav-link:hover,
.nav-link.active{
  color:var(--green) !important;
}

.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:var(--green);
  transition:.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after{
  width:100%;
}

/* Buttons */
.btn-neon{
  background:var(--green);
  color:#081008;
  border:none;
  font-weight:800;
  padding:15px 28px;
  border-radius:60px;
  box-shadow:0 0 0 1px rgba(156,255,0,.2), 0 15px 40px rgba(156,255,0,.25);
  transition:.35s ease;
}

.btn-neon:hover{
  transform:translateY(-3px);
  background:var(--green-soft);
  color:#081008;
}

.btn-ghost{
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  padding:15px 28px;
  border-radius:60px;
  font-weight:700;
  background:rgba(255,255,255,.04);
  transition:.35s ease;
}

.btn-ghost:hover{
  border-color:rgba(156,255,0,.4);
  color:var(--green);
}

/* Hero */
.blog-hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  padding-top:100px;
}

.hero-grid{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size:50px 50px;
  mask-image:linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,.35));
}

.orb{
  position:absolute;
  border-radius:50%;
  filter:blur(25px);
  animation:float 8s ease-in-out infinite;
}

.orb-1{
  width:260px;
  height:260px;
  background:rgba(156,255,0,.14);
  top:12%;
  left:-60px;
}

.orb-2{
  width:180px;
  height:180px;
  background:rgba(255,255,255,.08);
  right:10%;
  top:18%;
  animation-delay:1s;
}

.orb-3{
  width:220px;
  height:220px;
  background:rgba(156,255,0,.09);
  right:18%;
  bottom:10%;
  animation-delay:2s;
}

@keyframes float{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(20px); }
}

.blog-hero h1{
  font-size:clamp(2.8rem, 6vw, 5.4rem);
  line-height:1;
  font-weight:800;
  margin-bottom:24px;
  letter-spacing:-2px;
}

.blog-hero h1 span{
  color:var(--green);
  text-shadow:0 0 22px rgba(156,255,0,.25);
}

.blog-hero p{
  font-size:1.08rem;
  color:#b7c0c9;
  max-width:640px;
  line-height:1.8;
  margin-bottom:32px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.hero-feature{
  overflow:hidden;
}

.feature-thumb{
  height:250px;
  background:
    radial-gradient(circle at 20% 20%, rgba(156,255,0,.22), transparent 20%),
    linear-gradient(135deg, #151d22, #0b0f12);
  position:relative;
}

.feature-thumb::after{
  content:"";
  position:absolute;
  inset:20px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.06);
  background:
    linear-gradient(135deg, rgba(156,255,0,.08), transparent 55%);
}

.feature-body{
  padding:28px;
}

.feature-tag{
  display:inline-block;
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:1.2px;
  color:var(--green);
  font-weight:800;
  margin-bottom:14px;
}

.feature-body h3{
  font-size:1.6rem;
  line-height:1.3;
  font-weight:800;
  margin-bottom:14px;
}

.feature-body p{
  color:var(--muted);
  line-height:1.8;
  margin-bottom:14px;
}

.feature-link,
.read-link{
  color:#fff;
  font-weight:700;
  transition:.3s ease;
}

.feature-link:hover,
.read-link:hover{
  color:var(--green);
}

/* Filter */
.filter-bar{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  margin-top:36px;
}

.filter-pill{
  border:none;
  background:rgba(255,255,255,.05);
  color:#dfe5ea;
  padding:12px 18px;
  border-radius:999px;
  font-weight:700;
  transition:.3s ease;
  border:1px solid rgba(255,255,255,.06);
}

.filter-pill:hover,
.filter-pill.active{
  background:rgba(156,255,0,.14);
  color:var(--green);
  border-color:rgba(156,255,0,.2);
}

/* Featured posts */
.featured-post{
  height:100%;
  border-radius:26px;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.08);
  transition:.35s ease;
}

.featured-post:hover{
  transform:translateY(-8px);
  border-color:rgba(156,255,0,.25);
}

.featured-post.large .post-visual{
  height:360px;
}

.featured-post.small{
  display:grid;
  grid-template-columns:180px 1fr;
}

.small-visual{
  min-height:100%;
}

.post-visual{
  background:
    radial-gradient(circle at 20% 20%, rgba(156,255,0,.25), transparent 20%),
    linear-gradient(135deg, #131a1f, #0b0f12);
  position:relative;
}

.post-visual::after{
  content:"";
  position:absolute;
  inset:18px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.06);
  background:
    linear-gradient(135deg, rgba(156,255,0,.08), transparent 55%);
}

.post-visual.alt,
.small-visual.alt{
  background:
    radial-gradient(circle at 70% 25%, rgba(255,255,255,.12), transparent 18%),
    linear-gradient(135deg, #10181d, #0a0e11);
}

.post-content{
  padding:26px;
}

.post-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:14px;
}

.post-meta span{
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:1px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  color:#dce4ea;
  font-weight:800;
}

.post-content h3,
.post-content h4{
  font-weight:800;
  line-height:1.35;
  margin-bottom:14px;
}

.post-content p{
  color:var(--muted);
  line-height:1.8;
  margin-bottom:14px;
}

/* Blog grid */
.blog-card{
  overflow:hidden;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.08);
  height:100%;
  transition:.35s ease;
}

.blog-card:hover{
  transform:translateY(-8px);
  border-color:rgba(156,255,0,.25);
}

.blog-thumb{
  height:240px;
  position:relative;
}

.blog-thumb::after{
  content:"";
  position:absolute;
  inset:18px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.06);
}

.thumb-1{
  background:
    radial-gradient(circle at 20% 20%, rgba(156,255,0,.25), transparent 20%),
    linear-gradient(135deg, #131a1f, #0b0f12);
}

.thumb-2{
  background:
    radial-gradient(circle at 70% 25%, rgba(255,255,255,.12), transparent 18%),
    linear-gradient(135deg, #10181d, #0a0e11);
}

.thumb-3{
  background:
    radial-gradient(circle at 30% 60%, rgba(156,255,0,.18), transparent 18%),
    linear-gradient(135deg, #121a20, #0b0e10);
}

.thumb-4{
  background:
    radial-gradient(circle at 75% 70%, rgba(156,255,0,.16), transparent 18%),
    linear-gradient(135deg, #161c21, #0d1013);
}

.thumb-5{
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.10), transparent 16%),
    linear-gradient(135deg, #11181c, #090d10);
}

.thumb-6{
  background:
    radial-gradient(circle at 60% 30%, rgba(156,255,0,.22), transparent 18%),
    linear-gradient(135deg, #141b1f, #0b0f12);
}

.blog-body{
  padding:24px;
}

.blog-body h4{
  font-size:1.3rem;
  font-weight:800;
  line-height:1.4;
  margin-bottom:12px;
}

.blog-body p{
  color:var(--muted);
  line-height:1.8;
  margin-bottom:14px;
}

/* Insight */
.insight-box{
  padding:50px 40px;
  border-radius:30px;
  text-align:center;
  background:
    radial-gradient(circle at center, rgba(156,255,0,.12), transparent 35%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
}

.insight-box h2{
  max-width:950px;
  margin:0 auto 16px;
  font-size:clamp(1.8rem, 4vw, 3rem);
  line-height:1.3;
  font-weight:800;
}

.insight-box p{
  color:var(--muted);
  margin:0;
}

/* Newsletter */
.newsletter-box{
  padding:42px;
  border-radius:30px;
  background:
    radial-gradient(circle at left top, rgba(156,255,0,.18), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
}

.newsletter-box h2{
  font-size:clamp(2rem, 4vw, 3rem);
  font-weight:800;
  margin-bottom:14px;
}

.newsletter-box p{
  color:var(--muted);
  margin-bottom:0;
  line-height:1.8;
}

.input-group-custom{
  display:flex;
  gap:12px;
  align-items:center;
}

.form-control{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  min-height:56px;
  color:#fff;
  padding:14px 18px;
}

.form-control:focus{
  background:rgba(255,255,255,.06);
  border-color:rgba(156,255,0,.35);
  box-shadow:0 0 0 .2rem rgba(156,255,0,.1);
  color:#fff;
}

.form-control::placeholder{
  color:#96a3ae;
}

/* CTA */
.cta-box{
  padding:42px;
  border-radius:30px;
  background:
    radial-gradient(circle at left top, rgba(156,255,0,.18), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
}

.cta-box h2{
  font-size:clamp(2rem, 4vw, 3rem);
  font-weight:800;
  margin-bottom:14px;
}

.cta-box p{
  color:var(--muted);
  margin-bottom:0;
  line-height:1.8;
}

/* Footer */
.footer-nolia{
  padding:28px 0;
  border-top:1px solid rgba(255,255,255,.06);
  background:#050607;
}

.footer-nolia p{
  margin:0;
  text-align:center;
  color:#8c98a3;
}

/* Back to top */
#backToTop{
  position:fixed;
  right:18px;
  bottom:18px;
  width:50px;
  height:50px;
  border:none;
  border-radius:50%;
  background:var(--green);
  color:#081008;
  font-size:1.2rem;
  box-shadow:0 15px 30px rgba(156,255,0,.2);
  opacity:0;
  visibility:hidden;
  transform:translateY(20px);
  transition:.35s ease;
  z-index:30;
}

#backToTop.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* Responsive */
@media (max-width: 991.98px){
  .section-block{
    padding:90px 0;
  }

  .blog-hero{
    padding-top:110px;
  }

  .hero-feature{
    margin-top:40px;
  }

  .featured-post.small{
    grid-template-columns:1fr;
  }

  .small-visual{
    height:240px;
  }
}

@media (max-width: 767.98px){
  .blog-hero h1{
    letter-spacing:-1px;
  }

  .newsletter-box,
  .cta-box,
  .insight-box{
    padding:26px;
  }

  .input-group-custom{
    flex-direction:column;
  }

  .input-group-custom .form-control,
  .input-group-custom .btn-neon{
    width:100%;
  }
}

@media (max-width: 575.98px){
  .hero-actions{
    flex-direction:column;
  }

  .btn-neon,
  .btn-ghost{
    width:100%;
    text-align:center;
  }

  .cursor-glow{
    display:none;
  }
}

.feature-thumb,
.post-visual,
.blog-thumb {
  position: relative;
  overflow: hidden;
}

.feature-thumb img,
.post-visual img,
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-thumb::before,
.post-visual::before,
.blog-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.08), rgba(5,5,5,0.22));
  z-index: 1;
}

.feature-thumb img,
.post-visual img,
.blog-thumb img {
  position: relative;
  z-index: 0;
}