:root{
  --bg:#050608;
  --panel:#0b0d10;
  --panel2:#0f1217;
  --soft:#0a0c10;
  --text:#f4f5f7;
  --muted:#a7adba;
  --line:rgba(255,255,255,.10);
  --silver: rgba(255,255,255,.92);
  --shine: rgba(255,255,255,.18);
  --shadow: 0 18px 60px rgba(0,0,0,.55);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background: radial-gradient(1200px 700px at 15% 10%, rgba(255,255,255,.06), transparent 60%),
              radial-gradient(900px 500px at 85% 0%, rgba(255,255,255,.04), transparent 55%),
              var(--bg);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  line-height:1.55;
}

a{color:var(--silver); text-decoration:none}
a:hover{opacity:.9}

.container{max-width:1120px; margin:0 auto; padding:0 18px}

.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(5,6,8,.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand__logo {
  height: 85px !important;
  width: auto !important;
  max-height: none !important;
}
.topbar__inner{
  height:68px;
  display:flex;
  align-items:center;
  justify-content:space-between; /* pushes logo left, nav right */
  gap:12px;
}
.brand{
  display:flex;
  align-items:center;
}

.nav{
  display:flex;
  gap:18px;
  align-items:center;
  margin-left:auto; /* forces nav to the far right */
}
.nav a{
  font-size:15px;
  color:rgba(255,255,255,.85);
  position:relative;
  text-decoration:none;
  transition: color .25s ease;
}

.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:2px;
  background:rgba(255,255,255,.9);
  box-shadow:0 0 10px rgba(255,255,255,.7);
  transition:width .25s ease;
}

.nav a:hover{
  color:#ffffff;
}

.nav a:hover::after{
  width:100%;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:12px;
  background: linear-gradient(180deg, rgba(255,255,255,.20), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  color: rgba(255,255,255,.95);
  font-weight:600;
  letter-spacing:.2px;
}
.btn:hover{
  transform:translateY(-1px);
  box-shadow:
    0 0 15px rgba(255,255,255,.25),
    0 10px 30px rgba(0,0,0,.4);
}
.btn--ghost{
  background: rgba(255,255,255,.05);
  box-shadow:none;
}

.hamburger{
  display:none;
  width:44px; height:44px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.hamburger span{display:block; height:2px; margin:6px 9px; background:rgba(255,255,255,.85)}

.mobileNav{
  display:none;
  padding:10px 18px 18px;
  border-bottom:1px solid var(--line);
}
.mobileNav a{
  display:block;
  padding:10px 6px;
  color:rgba(255,255,255,.9);
  border-radius:10px;
}
.mobileNav a:hover{background: rgba(255,255,255,.06)}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
  overflow: hidden;

background-image:
  linear-gradient(to bottom, rgba(0,0,0,.65), rgba(0,0,0,.85)),
  url("explorer.jpg");/* your new image */
  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero {
  animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:28px;
  align-items:stretch;
}
.hero__copy{padding-top:10px}
.eyebrow{
  margin:0 0 18px;
  font-size:20px;
  letter-spacing:.28em;
  font-weight:700;
  color:rgba(255,255,255,.95);
}
h1{
  margin:0 0 14px;
  font-size:46px;
  line-height:1.05;
}
.hero__title{
  font-size:36px;
  font-weight:700;
  letter-spacing:.02em;
}
.subhead{
  margin:0 0 10px;
  font-size:18px;
  color:rgba(255,255,255,.86);
  max-width:54ch;
}
.launch{margin:0 0 18px; color:rgba(255,255,255,.75)}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 18px}

.trust{display:flex; gap:16px; flex-wrap:wrap; margin-top:6px}
.trust__item{display:flex; align-items:center; gap:10px; color:rgba(255,255,255,.75); font-size:13px}
.dot{
  width:8px; height:8px; border-radius:99px;
  background: rgba(255,255,255,.55);
  box-shadow: 0 0 0 4px rgba(255,255,255,.08);
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card__top{
  padding:22px 18px 0;
  display:flex; justify-content:center;
}
.badge{
  width: 250px;
  max-width: 78%;
  display: block;
  margin: 0 auto;
  filter:
    drop-shadow(0 0 20px rgba(255,255,255,.08))
    drop-shadow(0 20px 40px rgba(0,0,0,.6));
}
.card__body{padding:18px 18px 20px}
.card__body h3{margin:0 0 8px; font-size:18px}
.checklist{margin:0; padding-left:18px; color:rgba(255,255,255,.82)}
.checklist li{margin:6px 0}
.note{margin:14px 0 0; font-size:12px; color:rgba(255,255,255,.62)}

.hero__fade{
  position:absolute; left:0; right:0; bottom:-2px;
  height:70px;
  background: linear-gradient(to bottom, transparent, var(--bg));
}
.section--programBg{
  position: relative;
  background-image:
    linear-gradient(to bottom, rgba(5,6,8,.80), rgba(5,6,8,.92)),
    url("./community-bg.jpg");  /* image in root */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section{padding:62px 0}
.section--dark{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section--soft{
  background: rgba(255,255,255,.02);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
/* Program section background image (root file) */
.section.section--programBg{
  position: relative;
  background:
    linear-gradient(to bottom, rgba(5,6,8,.80), rgba(5,6,8,.92)),
    url("community-bg.jpg") center / cover no-repeat !important;
}
.section--programBg .panel{
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
}
.section__head{margin-bottom:22px}
.section__head h2{
  margin:0 0 8px;
  font-size:30px;
}
.section--image {
  position: relative;
  padding: 80px 0;
  background-image:
    linear-gradient(rgba(5,6,8,.85), rgba(5,6,8,.92)),
    url("patrol-vehicle.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section--image .miniCard {
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(6px);
}
.section__head p{margin:0; color:rgba(255,255,255,.78); max-width:75ch}

.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}
.panel{
  padding:18px 18px;
  border-radius:16px;
  background: rgba(255,255,255,.03);
  border:1px solid var(--line);
}
.panel--accent{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
}
.panel h3{margin:0 0 10px}
.panel p{margin:0 0 10px}
.muted{color:rgba(255,255,255,.75)}
.bullets{margin:0; padding-left:18px}
.bullets li{margin:7px 0; color:rgba(255,255,255,.84)}

.cards3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.miniCard{
  padding:16px;
  border-radius:16px;
  background: rgba(0,0,0,.25);
  border:1px solid var(--line);
}
.miniCard h3{margin:0 0 6px; font-size:16px}
.miniCard p{margin:0; color:rgba(255,255,255,.78)}

.whyRow{
  display:flex;
  gap:16px;
  align-items:flex-start;
  padding:14px 0;
}
.icon{
  width:56px;
  height:56px;
  opacity:.95;
  flex: 0 0 56px;                 /* prevents shrinking */
  margin-top: 4px;                /* aligns with heading */
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.55));
}

.faq details{
  background: rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px 14px;
  margin:10px 0;
}
.faq summary{
  cursor:pointer;
  font-weight:600;
  color:rgba(255,255,255,.9);
}
.faq p{margin:10px 0 0; color:rgba(255,255,255,.78)}

.contact{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:start;
}
.contact__meta{margin-top:14px; display:grid; gap:10px}
.metaItem{display:flex; gap:10px; align-items:baseline}
.label{color:rgba(255,255,255,.6); min-width:110px}
.value{color:rgba(255,255,255,.9)}
.contact__card{
  padding:16px;
  border-radius:18px;
  background: rgba(0,0,0,.22);
  border:1px solid var(--line);
}
.form label{display:block; margin:10px 0; font-size:13px; color:rgba(255,255,255,.86)}
.form input, .form textarea{
  width:100%;
  margin-top:6px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  border-radius:12px;
  padding:12px 12px;
  outline:none;
}
.form input:focus, .form textarea:focus{border-color: rgba(255,255,255,.28)}
.fineprint{margin:10px 0 0; font-size:12px; color:rgba(255,255,255,.60)}

.footer{
  padding:18px 0 26px;
  border-top:1px solid var(--line);
}
.footer__inner{
  display:flex; gap:10px; align-items:center; justify-content:center;
  color:rgba(255,255,255,.70);
  font-size:13px;
}
.sep{opacity:.35}

/* Responsive */
@media (max-width: 940px){
  .hero__grid{grid-template-columns:1fr}
  .cards3{grid-template-columns:1fr 1fr}
  .contact{grid-template-columns:1fr}
}
@media (max-width: 720px){
  .nav{display:none}
  .hamburger{display:inline-block}
  h1{font-size:40px}
  .grid2{grid-template-columns:1fr}
  .cards3{grid-template-columns:1fr}
}
@media (max-width: 720px){
  .icon{
    width:44px;
    height:44px;
    flex: 0 0 44px;
  }
  @media (max-width: 720px){
  .hero__title{
    font-size:30px;
  }
    @media (max-width: 720px){
  .badge{
    width: 260px;
  }
}

}
