/* ======================================================
   BAT HOME – STABLE LAYOUT (NO INLINE)
====================================================== */

:root{
  --bat-primary:#0f8c52;
  --bat-primary-2:#1ec97f;
  --bat-ink:#061824;
  --bat-text:#2b3a3a;
  --bat-muted:#6b7a7a;
  --bat-card:#ffffff;
  --bat-line:rgba(6,24,36,.10);
  --bat-shadow:0 18px 60px rgba(6,24,36,.10);
  --bat-radius:18px;
  --bat-max:1170px;
}

/* Safe resets inside sections */
.bat-hero, .bat-about-tech, .bat-about-stats, .bat-fields-grid-section, .bat-partners, .bat-trustbar{
  width:100%;
  position:relative;
}
.bat-hero *,.bat-about-tech *,.bat-about-stats *,.bat-fields-grid-section *,.bat-partners *,.bat-trustbar *{
  box-sizing:border-box;
}

/* Container style */
.bat-hero-inner,
.bat-about-wrap,
.bat-about-stats-inner,
.bat-fields-wrap,
.bat-partners-inner,
.bat-trustbar .inner{
  max-width:var(--bat-max);
  margin:0 auto;
  padding:0 15px;
}

/* ======================================================
   HERO
====================================================== */
.bat-hero{
  min-height:calc(100vh - 100px);
  display:flex;
  overflow:hidden;
  background:linear-gradient(180deg,#f6fbff 0%, #ffffff 60%);
  align-items:flex-start;
}
.bat-hero-bg{
  position:absolute; inset:0;
  z-index:0;
}
.bat-hero-bg img{
  width:100%; height:100%;
  object-fit:cover;
  filter:saturate(1.05) contrast(1.02);
}
.bat-hero::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.82) 45%, rgba(255,255,255,.25) 100%);
  z-index:1;
}
#batParticles{
  position:absolute; inset:0;
  width:100%; height:100%;
  z-index:2;
  pointer-events:none;
  opacity:.65;
}
.bat-hero-inner{
	position:relative;
	z-index:3;
	padding-top:170px;
	padding-bottom:80px;
}
.bat-hero-content{
  max-width:640px;
}
.bat-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(30,201,127,.10);
  border:1px solid rgba(30,201,127,.22);
  color:#ea5b0c;
  font-weight:600;
  font-size:13px;
  letter-spacing:.02em;
}
.bat-hero h1{
  margin:16px 0 10px;
  color:#204209;
  font-size:56px;
  line-height:1.02;
  letter-spacing:-.02em;
}
.bat-sub{
  margin:0;
  color:rgba(6,24,36,.72);
  font-size:16px;
  line-height:1.7;
}
.bat-hero-actions{
  margin-top:22px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* Buttons */
.bat-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
  letter-spacing:.01em;
  text-decoration:none;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.bat-btn.primary{
  color:#fff;
  background:linear-gradient(135deg,var(--bat-primary-2),var(--bat-primary));
  box-shadow:0 14px 38px rgba(15,140,82,.22);
}
.bat-btn.primary:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 50px rgba(15,140,82,.28);
}
.bat-btn.outline{
  color:var(--bat-primary);
  background:rgba(255,255,255,.82);
  border:1px solid rgba(15,140,82,.28);
  backdrop-filter:blur(10px);
}
.bat-btn.outline:hover{
  transform:translateY(-1px);
  border-color:rgba(15,140,82,.45);
  box-shadow:0 18px 50px rgba(6,24,36,.10);
}

/* ======================================================
   ABOUT
====================================================== */
.bat-about-tech{
  padding:56px 0;
  background:#fff;
}
.bat-about-wrap{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:28px;
  align-items:center;
}
.bat-about-pill{
  display:inline-block;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:700;
  color:rgba(6,24,36,.55);
  margin-bottom:12px;
}
.bat-about-left h2{
  margin:0 0 12px;
  color:#204209;
  font-size:32px;
  line-height:1.1;
}
.bat-about-left p{
  margin:0 0 12px;
  color:rgba(6,24,36,.72);
  line-height:1.75;
}
.bat-about-right img{
  width:100%;
  height:auto;
  border-radius:var(--bat-radius);
  box-shadow:var(--bat-shadow);
  border:1px solid var(--bat-line);
}

/* ======================================================
   STATS
====================================================== */
.bat-about-stats{
  padding:26px 0 60px;
  background:linear-gradient(180deg,#ffffff 0%, #f8fbff 100%);
}
.bat-about-stats-inner{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:14px;
}
.stat{
  background:rgba(255,255,255,.85);
  border:1px solid var(--bat-line);
  border-radius:16px;
  padding:16px 14px;
  box-shadow:0 10px 30px rgba(6,24,36,.06);
}
.stat span{
  display:block;
  font-size:24px;
  font-weight:800;
  color:#204209;
  letter-spacing:-.01em;
}
.stat div{
  margin-top:4px;
  font-size:13px;
  color:rgba(6,24,36,.62);
}
.stat-main{
  background:linear-gradient(135deg, rgba(30,201,127,.16), rgba(15,140,82,.10));
  border-color:rgba(15,140,82,.18);
}

/* ======================================================
   ECOSYSTEM GRID
====================================================== */
.bat-fields-grid-section{
  padding:56px 0;
  background:#fff;
}
.bat-eyebrow{
  display:inline-block;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:800;
  color:rgba(6,24,36,.55);
  margin-bottom:10px;
}
.bat-fields-head h2{
  margin:0 0 10px;
  font-size:34px;
  line-height:1.15;
  color:#204209;
}
.bat-fields-head p{
  margin:0;
  color:rgba(6,24,36,.68);
  line-height:1.7;
  max-width:720px;
}
.bat-fields-grid-cards{
  margin-top:22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.bat-field-card{
  display:block;
  text-decoration:none;
  background:var(--bat-card);
  border:1px solid var(--bat-line);
  border-radius:18px;
  padding:16px 14px;
  box-shadow:0 12px 40px rgba(6,24,36,.06);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  min-height:170px;
}
.bat-field-card:hover{
  transform:translateY(-2px);
  border-color:rgba(15,140,82,.25);
  box-shadow:0 18px 55px rgba(6,24,36,.10);
}
.bat-field-card .icon{
  width:44px; height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:rgba(30,201,127,.12);
  border:1px solid rgba(30,201,127,.20);
  margin-bottom:10px;
  font-size:20px;
}
.bat-field-card h3{
  margin:0 0 6px;
  color:rgba(6,24,36,.92);
  font-size:16px;
}
.bat-field-card p{
  margin:0 0 10px;
  color:rgba(6,24,36,.64);
  line-height:1.6;
  font-size:13.5px;
}
.bat-field-card .more{
  font-weight:700;
  color:var(--bat-primary);
  font-size:13.5px;
}

/* ======================================================
   PARTNERS
====================================================== */
.bat-partners{
  padding:42px 0;
  background:linear-gradient(180deg,#f8fbff 0%, #ffffff 100%);
}
.bat-partners-head h2{
  margin:0 0 10px;
  font-size:34px;
  line-height:1.15;
  color:#204209;
}
.bat-partners-head p{
  margin:0;
  max-width:760px;
  color:rgba(6,24,36,.68);
  line-height:1.7;
}
.bat-partners-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:12px;
}
.bat-partner-item{
  background:#fff;
  border:1px solid var(--bat-line);
  border-radius:16px;
  padding:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:70px;
  box-shadow:0 12px 35px rgba(6,24,36,.05);
}
.bat-partner-item img{
  max-width:100%;
  max-height:42px;
  object-fit:contain;
  filter:saturate(1.05);
}

/* ======================================================
   TRUSTBAR
====================================================== */
.bat-trustbar{
  padding:22px 0;
  background: linear-gradient(135deg, #107206, #036000);
}
.bat-trustbar .inner{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.bat-trust-item{
  color:rgba(255,255,255,.88);
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  padding:10px 12px;
  border-radius:999px;
  font-weight:600;
  font-size:13px;
}