:root{
  --bg:#000000;
  --panel:#141414;
  --panel2:#2c2c2c;
  --text:#ffffff;
  --muted:rgba(255,255,255,.72);
  --brand:#b7f801;
  --brand2:rgba(183,248,1,.18);
  --border:rgba(255,255,255,.10);
  --shadow:0 14px 40px rgba(0,0,0,.55);
  --radius:18px;
  --max:1180px;
}

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

a{color:inherit; text-decoration:none}
a:hover{color:var(--brand)}
img{max-width:100%; height:auto}
code,kbd{font-family: ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px; width:auto; height:auto; padding:10px 12px;
  background:var(--panel); border:1px solid var(--border); border-radius:12px;
  z-index:9999;
}

.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.topbar{
  position:sticky; top:0; z-index:1000;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand img{width:clamp(160px, 18vw, 240px); height:auto; display:block; max-width:100%; filter: drop-shadow(0 0 8px rgba(183,248,1,.18));}
.nav-actions{display:flex; align-items:center; gap:12px}

.icon-cta{
  width:48px;
  height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:2px solid rgba(255,255,255,.9);
  background: rgba(0,0,0,.20);
  color: var(--brand);
  text-decoration:none;
  flex:0 0 auto;
}

.icon-cta:hover{filter:saturate(1.05) brightness(1.06); color: var(--brand); box-shadow:0 0 0 3px rgba(183,248,1,.12)}
.icon-cta svg{width:24px; height:24px; display:block}

.nav-toggle{
  display:none;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--text);
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
}
.nav-toggle:focus{outline:2px solid var(--brand); outline-offset:2px}
.nav-links{
  display:flex; gap:18px; align-items:center;
}
.nav-links a{
  padding:10px 10px;
  border-radius:12px;
  border:1px solid transparent;
  color:var(--brand);
}
.nav-links a[aria-current="page"]{
  color:var(--brand);
  background:rgba(183,248,1,.10);
  border:1px solid rgba(183,248,1,.28);
}

.nav-links a:hover{
  background:rgba(183,248,1,.08);
  border-color:rgba(183,248,1,.22);
}
.cta{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(183,248,1,.92), rgba(183,248,1,.62));
  color:#000;
  font-weight:700;
  border:1px solid rgba(183,248,1,.6);
  box-shadow: 0 10px 28px rgba(183,248,1,.12);
}
.cta:hover{filter:saturate(1.05) brightness(1.03); color:#000}
.cta.secondary{
  background:rgba(255,255,255,.06);
  color:var(--text);
  border:1px solid var(--border);
  box-shadow:none;
}
.cta.secondary:hover{color:var(--brand)}

.hero{
  padding:44px 0 22px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:stretch;
}
.hero-card{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  padding:22px;
}
.kicker{
  color:var(--brand);
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
}
.h1{
  margin:10px 0 10px;
  font-size: 40px;
  line-height:1.12;
}
.sub{
  margin:0 0 18px;
  color:var(--muted);
  font-size:16px;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap}
.hero-aside{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(20,20,20,.72);
  box-shadow: var(--shadow);
  padding:18px;
  overflow:hidden;
  position:relative;
}
.hero-aside img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:#0b0b0b;
}
.aside-meta{
  margin-top:12px;
  display:grid;
  gap:8px;
}
.pill{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color:rgba(255,255,255,.85);
  font-size:13px;
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin: 18px 0 8px;
}
.card{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  padding:16px;
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted); font-size:14px}

.section{padding:24px 0}
.section h2{
  margin:0 0 10px;
  font-size:24px;
}
.section p{margin:0 0 10px; color:var(--muted)}
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.list{
  margin:0; padding-left:18px; color:var(--muted);
}
.list li{margin:6px 0}
.hr{
  border-top:1px solid var(--border);
  margin:22px 0;
}

.callout{
  border:1px solid rgba(183,248,1,.30);
  background: linear-gradient(180deg, rgba(183,248,1,.10), rgba(255,255,255,.02));
  border-radius: var(--radius);
  padding:16px;
}
.callout p{margin:0; color:rgba(255,255,255,.86)}

.footer{
  padding:28px 0;
  border-top:1px solid var(--border);
  margin-top:22px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
  align-items:start;
}
.footer small{color:var(--muted)}
.footer a{color:rgba(255,255,255,.80)}
.footer a:hover{color:var(--brand)}
.footer-links{display:flex; flex-wrap:wrap; gap:10px}
.tagline{color:var(--muted); margin:10px 0 0}

.form{
  display:grid;
  gap:12px;
  margin-top:12px;
}
.field{
  display:grid;
  gap:6px;
}
label{font-size:13px; color:rgba(255,255,255,.86)}
input, textarea, select{
  width:100%;
  background: rgba(255,255,255,.04);
  border:1px solid var(--border);
  color:var(--text);
  border-radius: 14px;
  padding:12px 12px;
  font-size:14px;
}
textarea{min-height:120px; resize:vertical}
input:focus, textarea:focus, select:focus{
  outline:2px solid var(--brand);
  outline-offset:2px;
}
.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.captcha-row{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
}
.captcha-img{
  border:1px solid var(--border);
  border-radius: 12px;
  background: #0a0a0a;
  height:46px;
}
.note{color:var(--muted); font-size:13px}
.alert{
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  border-radius: 14px;
  padding:12px;
  color:rgba(255,255,255,.86);
}

.toplink{
  position:fixed;
  right:14px;
  bottom:14px;
  z-index:999;
  width:46px;
  height:46px;
  border-radius: 999px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(255,255,255,.86);
}

.textfab{
  position:fixed;
  left:14px;
  bottom:14px;
  z-index:999;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  background: linear-gradient(135deg, rgba(183,248,1,.95), rgba(183,248,1,.70));
  color:#000;
  border:1px solid rgba(183,248,1,.65);
  box-shadow: 0 14px 34px rgba(183,248,1,.16);
  text-decoration:none;
}
.textfab:hover{filter:saturate(1.05) brightness(1.03); color:#000}
.textfab .ico{display:inline-flex; align-items:center; justify-content:center}
.textfab .ico svg{width:18px; height:18px; display:block}
.textfab .label{
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
  line-height:1;
}
.textfab .num{
  font-weight:900;
  font-size:12px;
  line-height:1;
}
@media (max-width: 420px){
  .textfab{padding:11px 12px}
}
.toplink:hover{color:var(--brand); border-color:rgba(183,248,1,.35)}
.toplink:focus{outline:2px solid var(--brand); outline-offset:2px}

@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr; }
  .hero-aside img{height:240px}
  .grid3{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .h1{font-size:34px}
  .brand img{width:clamp(160px, 18vw, 240px); height:auto; display:block; max-width:100%; filter: drop-shadow(0 0 8px rgba(183,248,1,.18));}
  .nav-toggle{display:inline-flex}
  .nav-links{
    position:absolute;
    left:0; right:0; top:100%;
    background: rgba(0,0,0,.92);
    border-bottom:1px solid var(--border);
    display:none;
    flex-direction:column;
    align-items:flex-start;
    padding:12px 18px 16px;
    gap:6px;
  }
  .nav-links.open{display:flex}
  .nav{position:relative}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
}

/* Added Jan 1 2026: global phone + footer locations + article accordions */
.nav-phone{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 10px;
  border:1px solid var(--border);
  border-radius:999px;
  color:rgba(255,255,255,.86);
  text-decoration:none;
  font-weight:700;
  letter-spacing:.2px;
  background:rgba(255,255,255,.02)
}
.nav-phone:hover{border-color:rgba(183,248,1,.55);color:var(--brand)}
.contactline{margin-top:8px;color:rgba(255,255,255,.80);font-size:13px}
.contactline a{color:rgba(255,255,255,.90)}
.contactline a:hover{color:var(--brand)}
details{
  border:1px solid var(--border);
  border-radius:16px;
  padding:12px 14px;
  background:rgba(255,255,255,.02);
}
details + details{margin-top:10px}
summary{
  cursor:pointer;
  list-style:none;
  font-weight:800;
  letter-spacing:.2px;
}
summary::-webkit-details-marker{display:none}
summary::after{
  content:'+';
  float:right;
  color:rgba(183,248,1,.9);
}
details[open] summary::after{content:'–'}
/* --- 2026 polish: header action buttons + prevent overlap with chatbot --- */
.nav-actions{
  gap:10px;
}
.nav-actions .cta{
  padding:10px 12px;
  border-radius:12px;
  font-size:13px;
  line-height:1;
  white-space:nowrap;
}
.nav-actions .cta.secondary{
  background:rgba(255,255,255,.045);
}
.nav-actions .cta.ghost{
  background:transparent;
  border:1px solid rgba(255,255,255,.14);
  color:rgba(255,255,255,.86);
  box-shadow:none;
}
.nav-actions .cta.ghost:hover{
  border-color:rgba(183,248,1,.35);
  color:var(--brand);
}
@media (max-width: 980px){
  .nav-actions{
    gap:8px;
  }
  /* Keep header clean on mobile; reduce button width */
  .nav-actions .cta{
    padding:10px 10px;
    font-size:13px;
  }
  /* hide less-critical actions on small screens to reduce clutter */
  .nav-actions .cta.ghost{ display:none; }
}

/* Move back-to-top away from bottom-right (chatbot zone) */
.toplink{
  right:auto;
  left:14px;
  z-index:500;
}


/* --- 2026 header layout hardening (logo always visible) --- */
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  flex:1 1 260px;
  min-width:220px;
  padding:6px 10px;
  border-radius:14px;
  border:1px solid rgba(183,248,1,.18);
  background: rgba(20,20,20,.28);
}
.brand img{width:clamp(160px, 18vw, 240px); height:auto; display:block; max-width:100%; filter: drop-shadow(0 0 8px rgba(183,248,1,.18));}
.nav-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  flex:1 1 320px;
  flex-wrap:wrap;
}

.nav-actions .cta{
  padding:10px 12px;
  border-radius:12px;
  font-size:13px;
  line-height:1;
  white-space:nowrap;
}
.nav-actions .cta.secondary{
  background:rgba(255,255,255,.045);
}
.nav-actions .cta.ghost{
  background:transparent;
  border:1px solid rgba(255,255,255,.14);
  color:rgba(255,255,255,.86);
  box-shadow:none;
}
.nav-actions .cta.ghost:hover{
  border-color:rgba(183,248,1,.35);
  color:var(--brand);
}

/* compact multi-part button labels */
.cta .cta-label{ font-weight:600; }
.cta .cta-meta{
  margin-left:8px;
  opacity:.78;
  font-size:12px;
  font-weight:500;
}

/* Responsive: keep logo visible by stacking actions */
@media (max-width: 820px){
  .nav{
    justify-content:center;
  }
  .brand{
    justify-content:center;
    flex:1 1 100%;
    min-width:0;
  }
  .nav-actions{
    justify-content:center;
    flex:1 1 100%;
  }
  .nav-actions .cta.ghost{ display:none; } /* drop "See results" on mobile */
  .cta .cta-meta{ display:none; } /* shorter buttons */
  .brand img{width:clamp(160px, 18vw, 240px); height:auto; display:block; max-width:100%; filter: drop-shadow(0 0 8px rgba(183,248,1,.18));}
}

@media (max-width: 420px){
  .nav-actions .cta{
    padding:10px 10px;
  }
}

/* --- Responsive header polish (keep phone icon right on mobile) --- */
.nav{
  flex-wrap:nowrap;
  gap:12px;
}
.brand{flex:1 1 auto; min-width:0}
.nav-actions{
  flex-wrap:nowrap;
  width:auto;
  justify-content:flex-end;
}
@media (max-width: 980px){
  /* Make logo much larger on mobile while keeping menu + phone on the same row */
  .nav{gap:8px;}
  .brand img{width:min(320px, 65vw); height:auto; display:block; max-width:100%; filter: drop-shadow(0 0 8px rgba(183,248,1,.18));}
  .nav-toggle{margin-left:auto; padding:9px 10px; font-size:14px;}
  .icon-cta{width:56px; height:56px;}
  .icon-cta svg{width:28px; height:28px;}
}
@media (max-width: 420px){
  .brand img{width:min(340px, 72vw);}
  .nav{gap:7px;}
  .nav-toggle{padding:8px 9px;}
}


/* --- Logo: remove badge/border (requested) --- */
.brand{
  padding:0 !important;
  border:0 !important;
  background:transparent !important;
  border-radius:0 !important;
  box-shadow:none !important;
}


/* --- Testimonials / FAQ / Podcast additions (lightweight, no JS) --- */
.subtle{margin:0 0 12px; color:var(--muted)}
.fineprint{margin:0; color:var(--muted); font-size:13px; line-height:1.5}
.podcast-audio{width:100%; max-width:520px; display:block; margin:6px auto 0}

.stars{color:var(--brand); letter-spacing:2px; font-size:14px; margin:0 0 10px}
.quote{margin:0 0 12px; color:rgba(255,255,255,.92); font-size:14px; line-height:1.55}
.byline{margin:0; color:var(--muted); font-size:13px}
.byline .name{color:var(--text); font-weight:700}
.byline .org{color:var(--muted)}
.testimonial{display:flex; flex-direction:column; gap:0}

.faq-list{display:grid; gap:10px; margin-top:10px}
.faq-item{border:1px solid var(--border); border-radius:var(--radius); background:rgba(255,255,255,.03); overflow:hidden}
.faq-item summary{cursor:pointer; list-style:none; padding:14px 14px; font-weight:700; color:var(--text); display:flex; gap:8px; align-items:baseline}
.faq-item summary::-webkit-details-marker{display:none}
.faq-num{color:var(--brand); font-weight:800}
.faq-body{padding:0 14px 14px}
.faq-body p{margin:0; color:var(--muted); font-size:14px; line-height:1.6}

@media (min-width:880px){
  .faq-list{grid-template-columns:1fr 1fr}
}
