:root{
  --bg:#050814;
  --card:#0d1530;
  --cyan:#2ee7ff;
  --gold:#f9c74f;
  --text:#eef5ff;
  --muted:#9fb3d9;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  background:radial-gradient(circle at top,#12265a 0,#050814 42%,#02040a 100%);
  color:var(--text);
  font-family:Inter,system-ui,Segoe UI,Arial,sans-serif;
  overflow-x:hidden;
}

a{color:#6deeff;text-decoration:none}
a:hover{text-decoration:underline}

.glass{
  background:rgba(2,6,18,.80);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.navbar-brand span{font-weight:900;letter-spacing:.4px}
.nav-link{font-weight:700}

.btn-centauri{
  background:linear-gradient(135deg,var(--cyan),#387bff);
  color:#00111a!important;
  border:0;
  border-radius:999px;
  padding:.75rem 1.25rem!important;
  font-weight:900;
  box-shadow:0 12px 35px rgba(46,231,255,.18);
}

.container{max-width:1180px}

.hero{
  min-height:560px;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  padding:90px 0 55px;
}

.hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(2,4,10,.96),rgba(2,4,10,.68),rgba(2,4,10,.36)),
    var(--hero);
  background-size:cover;
  background-position:center;
}

.hero:after{
  content:"";
  position:absolute;
  inset:0;
  background-image:radial-gradient(#fff 1px,transparent 1px);
  background-size:48px 48px;
  opacity:.06;
}

.hero .container{
  position:relative;
  z-index:2;
}

.hero .lead{
  max-width:780px;
  margin-left:auto;
  margin-right:auto;
}

.badge-soft{
  background:rgba(46,231,255,.12);
  border:1px solid rgba(46,231,255,.35);
  color:#9ff5ff;
}

.display-3{
  font-weight:950;
  letter-spacing:-1.5px;
}

.text-gradient{
  background:linear-gradient(90deg,#fff,#82efff,#f9c74f);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  font-weight:900;
}

.hero-actions{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;
  margin-top:28px;
}

.hero-actions .btn{
  min-width:240px;
  text-align:center;
}

.section{
  padding:70px 0;
}

.title{
  font-weight:950;
  letter-spacing:-.5px;
}

.cardx{
  background:linear-gradient(180deg,rgba(255,255,255,.085),rgba(255,255,255,.035));
  border:1px solid rgba(255,255,255,.10);
  border-radius:24px;
  overflow:hidden;
  height:100%;
  box-shadow:0 20px 60px rgba(0,0,0,.25);
}

.cardx img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

.cardx p:last-child{margin-bottom:0}

.stat{
  font-size:2.5rem;
  font-weight:950;
  color:var(--cyan);
  line-height:1;
}

.carousel.cardx{
  max-width:1180px;
  margin:0 auto;
}

.carousel-item img{
  height:430px;
  object-fit:cover;
  filter:brightness(.72);
}

.carousel-caption{
  background:linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.70));
  border-radius:20px;
  padding:22px;
}

.pill{
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  padding:.5rem 1rem;
  display:inline-block;
  margin:.25rem;
  background:rgba(255,255,255,.05);
  font-weight:700;
}

.iconbig{
  font-size:2.2rem;
  margin-bottom:.6rem;
}

.cta{
  background:linear-gradient(135deg,rgba(46,231,255,.12),rgba(249,199,79,.10));
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.timeline{
  display:grid;
  gap:18px;
}

.timeline div{
  display:grid;
  grid-template-columns:120px 1fr;
  gap:20px;
  padding:20px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  background:rgba(255,255,255,.04);
}

.timeline strong{
  color:var(--gold);
  font-size:1.2rem;
}

.form-control,
.form-select{
  background:#0a1022;
  border-color:#263456;
  color:white;
}

.form-control:focus,
.form-select:focus{
  background:#0a1022;
  color:white;
  border-color:var(--cyan);
  box-shadow:0 0 0 .25rem rgba(46,231,255,.18);
}

.table{
  --bs-table-bg:transparent;
  --bs-table-color:#fff;
  --bs-table-border-color:rgba(255,255,255,.12);
}

.admin-wrap{padding-top:92px}

.footer{
  background:#02040a;
  border-top:1px solid rgba(255,255,255,.1);
}

@media(max-width:991px){
  .hero{
    min-height:auto;
    padding:95px 0 55px;
  }

  .display-3{
    font-size:3.1rem;
  }

  .section{
    padding:60px 0;
  }
}

@media(max-width:575px){
  .hero{
    padding:95px 0 50px;
    text-align:center;
  }

  .display-3{
    font-size:2.4rem;
    letter-spacing:-.8px;
  }

  .hero h2{
    font-size:1.45rem;
  }

  .hero .lead{
    font-size:1.05rem;
  }

  .hero-actions{
    flex-direction:column;
    width:100%;
    gap:16px;
  }

  .hero-actions .btn{
    width:100%;
    min-width:0;
    display:block;
  }

  .section{
    padding:48px 0;
  }

  .cardx img{
    height:210px;
  }

  .carousel-item img{
    height:300px;
  }

  .carousel-caption{
    left:8%;
    right:8%;
    bottom:1rem;
    padding:14px;
  }

  .carousel-caption h3{
    font-size:1.15rem;
  }

  .carousel-caption p{
    font-size:.92rem;
  }

  .stat{
    font-size:2rem;
  }

  .timeline div{
    grid-template-columns:1fr;
  }
}