:root{
  --bg:#070b14;
  --text:rgba(255,255,255,.92);
  --muted:#334d73;
  --white:#ffffff;
  --line:rgba(255,255,255,.14);
  --accent:#c81e3a;
  --radius:18px;
  --shadow:0 18px 60px rgba(0,0,0,.45);
  --font:system-ui,-apple-system,Segoe UI,Roboto,Arial;
}

/* Spacing utilities */
.mt-1{margin-top:4px}
.mt-2{margin-top:8px}
.mt-3{margin-top:12px}
.mt-4{margin-top:16px}
.mt-5{margin-top:24px}

.mb-1{margin-bottom:4px}
.mb-2{margin-bottom:8px}
.mb-3{margin-bottom:12px !important}
.mb-4{margin-bottom:16px}
.mb-5{margin-bottom:24px}

.p-1{padding:4px}
.p-2{padding:8px}
.p-3{padding:12px}
.p-4{padding:16px}
.p-5{padding:24px}


/* Honeypot */
.hp{
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


*{box-sizing:border-box}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:#000;
}

.page-bg{
  min-height:100vh;
  background: #06214a;
}

.container{
  margin:0 auto;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-bottom:18px;
  border-bottom:1px solid var(--line);
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
}

.site-logo {
  max-height: 36px;
  width: auto;
  max-width:90%;
}

.dot{
  width:8px;
  height:8px;
  background:var(--accent);
  border-radius:50%;
  box-shadow:0 0 0 6px rgba(200,30,58,.15);
}

.navlinks a{
  color:var(--white);
  text-decoration:none;
  margin-left:16px;
}

.hero{
  overflow:hidden;
  box-shadow:var(--shadow);
  background:
    url("img/hero.png") center/cover no-repeat;
   min-height:450px;
}

.hero-inner{
    text-align:center;
  padding:32px;
         max-width: 700px;
    margin: 30px auto;
}

.hero h1{
  margin:0 0 10px;
  font-size:38px;
}

.hero p{
  max-width:800px;
  color:var(--white);
  margin: 0 auto;
}

.actions{
  margin-top:26px;
  display:block;
  gap:12px;
}

.btn{
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:white;
  text-decoration:none;
  font-weight:700;
  max-width:50%;
}

.btn.primary{
  background:var(--accent);
}

#next{
    background: #eef0f5;
}

.grid3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  min-height:300px;
}

.card{
  border:1px solid var(--line);
  border-radius:14px;
  padding:16px;
  color: var(--muted);
}

.step-card{
  display:flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

/* Step headings */
.step-card h3{
  margin: 4px 0 2px;
  font-size: 16px;
}

/* Step descriptions */
.step-card > p{
  margin: 0;
  font-size: 13.5px;
  color: rgba(255,255,255,.72);
  max-width: 260px;
}

/* Icon container */
.step-ico{
  width: 56px;
  height: 56px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 30px; /* emoji size */
}

.section-title-centered{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  letter-spacing:1px;
  font-size:20px;
  font-weight:800;
}

#formSection{

}

.formContainer{
    max-width: 800px;
    margin: 0 auto;
    
}

.formwrap{
  color: #334d73;
  background:#eff1f6;
  border-radius:3px;
}

.formhead{
  padding:16px;
  border-bottom:1px solid var(--line);
}

form{
  padding:16px;
}

.row{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:12px;
  margin-bottom:12px;
}

.col-6{grid-column:span 6}
.col-4{grid-column:span 4}
.col-12{grid-column:span 12}

label{
  color:var(--muted);
  display:block;
  margin-bottom:6px;
}

input,select,textarea{
  width:100%;
  padding:10px;
  border:1px solid var(--line);
  color:var(--muted);
}

textarea{min-height:120px}

.checks{
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

label.check{
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  line-height: 1.35;
  cursor: pointer;
  margin: 0;
}

/* Make checkbox consistent + prevent it drifting */
label.check input[type="checkbox"]{
  width: 18px;
  height: 18px;
  margin: 0;          /* important */
  flex: 0 0 18px;     /* keeps it fixed */
}

/* Optional: slightly reduce text size inside checklist */
label.check{
  font-size: 13px;
}
.check{
  font-size:12px;
}

.submitContainer{
    width: 100%;
    text-align:center;
}

.divider{
  height:1px;
  background:var(--line);
  margin:14px 0;
}

.notice{
  padding:16px;
  font-size:12px;
  color:var(--muted);
}

.site-footer{
  margin-top:20px;
  padding:14px;
  display:flex;
  justify-content:space-between;
  font-size:12px;
}

.site-footer a{
  color:var(--white);
  text-decoration:none;
}

/* Mobile stacking for the 1/2/3 cards */
@media (max-width: 900px){
  .grid3{
    grid-template-columns: 1fr;
  }
}

/* Optional: tighten card spacing on small phones */
@media (max-width: 480px){
  .grid3{
    gap: 12px;
  }
  .card{
    padding: 14px;
  }
  .step-ico{
    font-size: 24px;
  }
}

/* Mobile: make hero buttons fluid */
@media (max-width: 600px){

  .actions .btn{
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* Mobile: form fields full width */
@media (max-width: 768px){
  .row{
    grid-template-columns: 1fr;
  }

  .col-4,
  .col-6,
  .col-12{
    grid-column: span 1;
  }

  input,
  select,
  textarea{
    width: 100%;
  }
}

/* ===== What Happens Next strip (matches reference) ===== */
.steps-strip{
  margin: 18px 0 26px;
  padding: 16px 18px 12px;
  background: rgba(255,255,255,.92);
  color: #0b2545;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.steps-top{
  display:flex;
  align-items:center;
  gap: 14px;
  margin-bottom: 14px;
}

.steps-title{
  margin:0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .2px;
  color:#0b2545;
}

.steps-line{
  height:1px;
  background: rgba(11,37,69,.25);
  flex: 1;
}

.steps-row{
  display:grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items:center;
  gap: 0;
}

.steps-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding: 6px 10px;
}

.steps-divider{
  width:1px;
  height: 72px;
  background: rgba(11,37,69,.22);
}

.steps-icon{
  width: 52px;
  height: 52px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 6px;
}

.steps-icon svg{
  width: 46px;
  height: 46px;
  fill: #0b2545; /* monochrome navy like reference */
}

.steps-h{
  font-weight: 800;
  font-size: 16px;
  margin: 2px 0 4px;
}

.steps-p{
  font-size: 14px;
  color: rgba(11,37,69,.78);
}

.steps-foot{
  text-align:center;
  font-size: 16px;
  color: rgba(11,37,69,.78);
  margin-top: 10px;
}

/* Mobile: stack like a strip list */
@media (max-width: 700px){
  .steps-row{
    grid-template-columns: 1fr;
  }
  .steps-divider{display:none;}
  .steps-item{
    padding: 12px 8px;
  }
  .steps-item + .steps-item{
    border-top: 1px solid rgba(11,37,69,.15);
  }
}





/* Access Gate */
.gate{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(7,11,20,.92);
  backdrop-filter: blur(6px);
}

.gate.show{ display: flex; }

.gate-card{
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  padding: 18px 18px 14px;
  color: rgba(255,255,255,.92);
}

.gate-badge{
  display:inline-block;
  font-size: 12px;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  margin-bottom: 10px;
}

.gate-card h2{
  margin: 0 0 6px;
  font-size: 20px;
}

.gate-sub{
  margin: 0 0 14px;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.4;
}

.gate-label{
  display:block;
  font-size: 12px;
  color: rgba(255,255,255,.72);
  margin: 0 0 6px;
}

.gate-input{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(7,11,20,.55);
  color: rgba(255,255,255,.92);
  outline: none;
}

.gate-input:focus{
  border-color: rgba(96,165,250,.55);
  box-shadow: 0 0 0 4px rgba(96,165,250,.12);
}

.gate-btn{
  width: 100%;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: #c81e3a;
  color: white;
  font-weight: 800;
  cursor: pointer;
}

.gate-error{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,180,180,.95);
  min-height: 16px;
}

.gate-foot{
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.58);
  text-align: center;
}

