<section>
<style>
.nexora-ui *{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif;
  color:#fff !important; /* 🔥 MASTER FIX */
}
.nexora-ui{
  position:relative;
  padding:100px 20px;
  overflow:hidden;
  background:#000;
}
/* BACKGROUND BLOBS */
.nexora-ui::before{
  content:'';
  position:absolute;
  width:600px;
  height:600px;
  background: radial-gradient(circle,#ff0033,transparent 60%);
  top:-200px;
  left:-150px;
  filter:blur(120px);
  animation:float 10s infinite alternate;
}
.nexora-ui::after{
  content:'';
  position:absolute;
  width:500px;
  height:500px;
  background: radial-gradient(circle,#ff6b81,transparent 60%);
  bottom:-200px;
  right:-100px;
  filter:blur(120px);
  animation:float2 12s infinite alternate;
}
@keyframes float{
  100%{transform:translate(100px,80px)}
}
@keyframes float2{
  100%{transform:translate(-80px,-60px)}
}
.nexora-ui .container{
  max-width:1100px;
  margin:auto;
  position:relative;
  z-index:2;
}
/* HERO */
.nexora-ui .hero{
  border-radius:30px;
  padding:80px;
  background: linear-gradient(135deg,#000,#1a0005,#ff0033);
  box-shadow:0 0 80px rgba(255,0,60,0.3);
  margin-bottom:60px;
  position:relative;
  overflow:hidden;
}
.nexora-ui .hero h1{
  font-size:70px;
  font-weight:800;
}
.nexora-ui .hero p{
  margin-top:20px;
  color:#ff6b81 !important; /* keep accent */
}
/* SHINE */
.nexora-ui .price-card::before,
.nexora-ui .hero::before{
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:50%;
  height:100%;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,0.3),transparent);
  transform:skewX(-20deg);
}
.nexora-ui .price-card:hover::before,
.nexora-ui .hero:hover::before{
  animation:shine 1s;
}
@keyframes shine{
  100%{left:200%}
}
/* PRICING */
.nexora-ui .pricing{
  border-radius:30px;
  padding:50px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(25px);
  margin-bottom:60px;
  box-shadow:0 0 60px rgba(255,0,50,0.15);
}
.nexora-ui .cards{
  display:flex;
  gap:25px;
  flex-wrap:wrap;
}
.nexora-ui .price-card{
  flex:1;
  min-width:260px;
  padding:40px;
  border-radius:25px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  text-align:center;
  transition:0.4s;
  border:1px solid rgba(255,255,255,0.08);
  position:relative;
  overflow:hidden;
}
.nexora-ui .price-card:hover{
  transform: translateY(-15px) scale(1.03);
  box-shadow:0 25px 60px rgba(255,0,60,0.25);
}
.nexora-ui .price-card h1{
  margin:20px 0;
  font-size:42px;
}
/* BUTTON */
.nexora-ui .price-card button{
  padding:12px 30px;
  border:none;
  border-radius:30px;
  background:#222;
  cursor:pointer;
}
.nexora-ui .price-card button:hover{
  background:#ff0033;
  box-shadow:0 0 20px #ff0033;
}
/* HIGHLIGHT */
.nexora-ui .highlight{
  background: linear-gradient(135deg,#ff0033,#ff4d6d);
  transform: scale(1.08);
  box-shadow:0 0 70px rgba(255,0,80,0.5);
}
/* FEATURES */
.nexora-ui .features{
  border-radius:30px;
  padding:50px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(25px);
}
.nexora-ui .grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap:25px;
}
.nexora-ui .box{
  padding:35px;
  border-radius:20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);
}
.nexora-ui .box.red{
  background: linear-gradient(135deg,#ff0033,#ff4d6d);
}
.nexora-ui .big{
  grid-column: span 2;
}
/* HEADING */
.nexora-ui .center-text{
  text-align:center;
  margin-top:50px;
}
.nexora-ui .center-text h2{
  font-size:30px;
  font-weight:800;
}
/* MOBILE */
@media(max-width:768px){
  .nexora-ui .hero h1{
    font-size:42px;
  }
  .nexora-ui .big{
    grid-column: span 1;
  }
}
</style>
    <h1>NEXORA</h1>
    <p>AI-DRIVEN AUTOMATION FOR SMALL BUSINESSES</p>
    <h2>SIMPLE, TRANSPARENT PRICING</h2>
        <h3>Starter</h3>
        <h1>$49</h1>
        <button>Try Now</button>
        <h3>Growth</h3>
        <h1>$99</h1>
        <button>Subscribe</button>
        <h3>Scale</h3>
        <h1>$149</h1>
        <button>Try Now</button>
      01<br>Save time
      02<br>Reduce costs
      03<br>Accuracy
      04<br>Productivity
      <h2>HOW WE HELP YOUR BUSINESS GROW</h2>
</section>