:root{
  --bg:#0b0f14;
  --panel:#0f1824;
  --panel2:#0f1722;
  --stroke:rgba(234,240,247,.12);
  --text:#eaf0f7;
  --muted:#a8b3c2;
  --accent:#18c3b6;
  --accent2:#0f9f96;

  --radius:18px;
  --shadow:0 10px 30px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:
    radial-gradient(1200px 500px at 20% -10%, rgba(24,195,182,.18), transparent 55%),
    radial-gradient(900px 500px at 90% 10%, rgba(24,195,182,.10), transparent 55%),
    var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.9}
img{max-width:100%;display:block}

.container{
  width:min(1120px, calc(100% - 32px));
  margin:0 auto;
}

.small{color:var(--muted);font-size:.95rem}
.muted{color:var(--muted)}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(11,15,20,.72);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--stroke);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:200px;
}

.brand-logo{
  width:44px;
  height:44px;
  object-fit:contain;
  border-radius:12px;
  padding:6px;
  background:rgba(255,255,255,.03);
  border:1px solid var(--stroke);
}

/* Bigger logo on homepage */
.hero-logo{
  width:140px;
  height:auto;
  padding:0;
  background:none;
  border:none;
  border-radius:0;
}

.brand-text{display:flex;flex-direction:column;line-height:1}
.brand-name{font-weight:800;letter-spacing:.2px}
.brand-sub{font-weight:700;color:var(--accent);font-size:.85rem;letter-spacing:.22em}

.nav{
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.nav a{
  padding:8px 10px;
  border-radius:12px;
  color:var(--muted);
  border:1px solid transparent;
}

.nav a.active{
  color:var(--text);
  border-color:var(--stroke);
  background:rgba(255,255,255,.03);
}

.nav a.nav-cta{
  color:#061f1d;
  background:linear-gradient(135deg, var(--accent), #5eead4);
  border:none;
  font-weight:800;
  padding:10px 14px;
  border-radius:14px;
}

.menu-btn{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  cursor:pointer;
  padding:10px;
}
.menu-btn span{
  display:block;
  height:2px;
  background:var(--text);
  margin:6px 0;
  border-radius:2px;
}

.mobile-drawer{
  border-bottom:1px solid var(--stroke);
  background:rgba(11,15,20,.9);
}
.mobile-nav{
  display:grid;
  gap:8px;
  padding:14px 0 18px;
}
.mobile-nav a{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  color:var(--text);
}
.mobile-nav a.nav-cta{
  background:linear-gradient(135deg, var(--accent), #5eead4);
  color:#061f1d;
  font-weight:900;
  border:none;
}

main{padding:26px 0 34px}
h1{font-size:2.05rem;margin:0 0 10px}
h2{font-size:1.4rem;margin:0 0 10px}
h3{font-size:1.1rem;margin:0 0 8px}
h4{font-size:1rem;margin:0 0 8px}

.card{
  background:linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02));
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:16px;
}

.list{margin:10px 0 0;padding-left:18px;color:var(--muted)}
.list li{margin:6px 0}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  color:var(--text);
  font-weight:700;
}
.btn-primary{
  border:none;
  color:#061f1d;
  background:linear-gradient(135deg, var(--accent), #5eead4);
}

.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-size:.95rem;
}

.hero{
  display:grid;
  grid-template-columns:1.3fr .7fr;
  gap:14px;
  align-items:stretch;
  margin-top:14px;
}
.hero .card{height:100%}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}

/* Forms */
.form{display:grid;gap:10px;margin-top:12px}
.input, select, textarea{
  width:100%;
  padding:12px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  color:var(--text);
  outline:none;
}
textarea{resize:vertical;min-height:120px}

/* Code blocks */
code{
  font-family:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New", monospace;
  font-size:.95em;
  color:var(--text);
  background:rgba(255,255,255,.06);
  border:1px solid var(--stroke);
  padding:2px 6px;
  border-radius:10px;
}

/* Footer */
.footer{
  border-top:1px solid var(--stroke);
  background:rgba(11,15,20,.65);
  padding:16px 0;
}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}

/* --- Troubleshooting extras --- */
.icon-row{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}
.icon-badge{
  width:36px;
  height:36px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:rgba(24,195,182,.14);
  border:1px solid var(--stroke);
  color:var(--accent);
}

/* Screenshot images */
.screenshot-img{
  width:100%;
  margin-top:14px;
  border-radius:16px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.02);
}

.accordion{
  display:grid;
  gap:10px;
  margin-top:12px;
}
.accordion details{
  border:1px solid var(--stroke);
  border-radius:16px;
  background:rgba(255,255,255,.02);
  overflow:hidden;
}
.accordion summary{
  cursor:pointer;
  padding:12px 14px;
  font-weight:800;
  color:var(--text);
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.accordion summary::-webkit-details-marker{display:none}
.accordion summary::after{
  content:"+";
  font-weight:900;
  color:var(--accent);
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  width:28px;
  height:28px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}
.accordion details[open] summary::after{content:"–"}
.accordion-content{
  padding:0 14px 14px;
  color:var(--muted);
}

/* Responsive */
@media (max-width:980px){
  .nav{display:none}
  .menu-btn{display:block}
  .grid-3{grid-template-columns:1fr}
  .hero{grid-template-columns:1fr}
}
/* Sticky Call Now (mobile only) */
.sticky-call {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  padding: 14px 16px;
  border-radius: 18px;
  text-align: center;
  font-weight: 900;
  letter-spacing: .2px;
  background: linear-gradient(135deg, var(--accent), #5eead4);
  color: #061f1d;
  border: none;
  box-shadow: 0 12px 30px rgba(0,0,0,.45);
}

/* Give pages room so content doesn't hide behind the button */
@media (max-width: 980px) {
  .sticky-call { display: block; }
  body { padding-bottom: 86px; }
}
/* Veteran / First Responder badges */
.nt-badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.nt-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  color:var(--text);
  font-weight:900;
  font-size:.9rem;
}

.nt-badge-alt{
  background:rgba(24,195,182,.14);
  color:var(--text);
}

