/* =========================================================
   Home page polish (scoped)
   - Keep minimal here; later you can move to /assets/css/pages/home.css
   ========================================================= */

.csx-home.csx-container{
  padding-top: 18px;
}

/* Banner (status) */
.csx-home__banner{
  text-align: center;
  margin: 0 auto 18px auto;
}
.csx-home__banner-icon{
  font-size: 34px;
  opacity: .92;
  margin-bottom: 10px;
  color: rgba(0,255,136,.85);
  text-shadow: 0 0 14px rgba(0,255,136,.16);
}
.csx-home__banner-title{
  font-family: 'Orbitron', sans-serif;
  letter-spacing: .8px;
  text-transform: uppercase;
}

/* Hero typography */
.csx-home__hero{
  animation: csxFadeInHome .35s ease both;
}
@keyframes csxFadeInHome{
  from{ opacity:0; transform: translateY(6px); }
  to{ opacity:1; transform: translateY(0); }
}
.csx-home__title{
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.csx-home__subtitle{
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Feature icons */
.csx-home__icon{
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px auto;
  background: rgba(0,255,136,.10);
  border: 1px solid rgba(0,255,136,.18);
  box-shadow: 0 12px 28px rgba(0,255,136,.08);
}
.csx-home__icon i{
  font-size: 28px;
  color: rgba(0,255,136,.90);
}

/* Hover lift on cards */
.csx-home .csx-card{
  transition: transform .18s ease, box-shadow .18s ease;
}
.csx-home .csx-card:hover{
  transform: translateY(-3px);
}

/* Widgets spacing */
.csx-home__updates{ margin-top: 18px; }
.csx-home__cta{ margin-top: 18px; margin-bottom: 18px; }

/* Light mode: keep icon backgrounds subtle */
html[data-theme="light"] .csx-home__icon{
  background: rgba(0,255,136,.08);
}
/* =========================================================
   Pro Glass hero glow (subtle, theme-safe)
   ========================================================= */
.csx-home__hero{
  position: relative;
  overflow: hidden;
}

.csx-home__hero::before{
  content:"";
  position:absolute;
  inset:-120px -120px auto -120px;
  height: 260px;
  background: radial-gradient(circle at 30% 40%, rgba(0,255,136,.18), transparent 60%);
  filter: blur(2px);
  pointer-events:none;
}

.csx-home__hero::after{
  content:"";
  position:absolute;
  inset:auto -120px -140px -120px;
  height: 260px;
  background: radial-gradient(circle at 70% 30%, rgba(0,255,136,.12), transparent 62%);
  pointer-events:none;
}

html[data-theme="light"] .csx-home__hero::before{
  background: radial-gradient(circle at 30% 40%, rgba(0,255,136,.12), transparent 62%);
}
html[data-theme="light"] .csx-home__hero::after{
  background: radial-gradient(circle at 70% 30%, rgba(0,255,136,.09), transparent 65%);
}
/* =========================================================
   Hero CTA polish
   ========================================================= */
.csx-home__hero .csx-btn{
  min-width: 220px;
}

@media (max-width: 575.98px){
  .csx-home__hero .csx-btn{
    width: 100%;
    min-width: 0;
  }
}

.csx-home__hero .csx-btn--primary{
  box-shadow: 0 14px 34px rgba(0,255,136,.10);
}

.csx-home__hero .csx-btn--primary:hover{
  box-shadow: 0 18px 44px rgba(0,255,136,.14);
}
