/* Home-only landing styles (2026) */
/* Apply only when body has .home2026 */
.home2026{
  --h-bg:#f6f8ff;
  --h-card:#ffffff;
  --h-text:#0f172a;
  --h-muted:#475569;
  --h-border:rgba(15,23,42,.10);
  --h-shadow:0 10px 30px rgba(15,23,42,.10);
  --h-shadow-soft:0 6px 18px rgba(15,23,42,.08);
  --h-radius:20px;
  --h-accent:#2563eb; /* smart-blue */
  --h-accent2:#06b6d4; /* cyan */
}

/* override old background for home only */
body.home2026.bgrnd{
  background: radial-gradient(1200px 700px at 10% -10%, rgba(37,99,235,.18), transparent 55%),
              radial-gradient(900px 600px at 100% 0%, rgba(6,182,212,.16), transparent 55%),
              radial-gradient(900px 650px at 50% 115%, rgba(37,99,235,.10), transparent 60%),
              var(--h-bg);
  padding: 16px;
}

.home2026 a{ color: inherit; }
.home2026 .h-container{
  max-width: 1180px;
  margin: 0 auto;
}

.home2026 .h-shell{
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
  border: 1px solid var(--h-border);
  border-radius: var(--h-radius);
  box-shadow: var(--h-shadow);
  overflow: hidden;
}

/* Topbar */
.home2026 .h-topbar{
  position: sticky;
  top: 0;
  z-index: 2000;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--h-border);
}
.home2026 .h-topbar-in{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 12px 16px;
}
.home2026 .h-brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 200px;
}
.home2026 .h-brand img{
  width: 44px;
  height: auto;
  display:block;
}
.home2026 .h-brand-title{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.home2026 .h-brand-title b{
  font-family: Arial, sans-serif;
  font-size: 18px;
  color: var(--h-text);
}
.home2026 .h-brand-title span{
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: var(--h-muted);
}

.home2026 .h-nav{
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap: wrap;
  justify-content:center;
}
.home2026 .h-nav a{
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: var(--h-muted);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 12px;
}
.home2026 .h-nav a:hover{
  background: rgba(37,99,235,.08);
  color: var(--h-text);
}

.home2026 .h-actions{
  display:flex;
  align-items:center;
  gap:10px;
  justify-content:flex-end;
  min-width: 220px;
}

.home2026 .h-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 14px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  text-decoration:none;
  border: 1px solid var(--h-border);
  background: rgba(255,255,255,.9);
  color: var(--h-text);
  box-shadow: 0 2px 0 rgba(15,23,42,.04);
  white-space: nowrap;
}
.home2026 .h-btn:hover{ transform: translateY(-1px); }
.home2026 .h-btn:active{ transform: translateY(0px); }

.home2026 .h-btn-primary{
  background: linear-gradient(135deg, rgba(37,99,235,1), rgba(6,182,212,1));
  color:#fff;
  border-color: rgba(37,99,235,.35);
}
.home2026 .h-btn-primary:hover{
  filter: brightness(1.02);
}

.home2026 .h-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(37,99,235,.08);
  border: 1px solid rgba(37,99,235,.18);
  color: var(--h-text);
  font-family: Arial, sans-serif;
  font-size: 13px;
}

/* Mobile nav (simple) */
.home2026 .h-burger{ display:none; }
.home2026 #hMenuToggle{ display:none; }
.home2026 .h-mobile-nav{
  display:none;
  border-top: 1px solid var(--h-border);
  padding: 10px 16px 14px 16px;
}
.home2026 .h-mobile-nav a{
  display:block;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration:none;
  color: var(--h-muted);
}
.home2026 .h-mobile-nav a:hover{ background: rgba(37,99,235,.08); color: var(--h-text); }

.home2026 #hMenuToggle:checked ~ .h-mobile-nav{ display:block; }

/* Hero */
.home2026 .h-hero{
  padding: 22px 16px 10px 16px;
}
.home2026 .h-hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: stretch;
}
.home2026 .h-hero-card{
  background: var(--h-card);
  border: 1px solid var(--h-border);
  border-radius: var(--h-radius);
  box-shadow: var(--h-shadow-soft);
  padding: 18px;
}
.home2026 .h-hero h1{
  margin: 0 0 10px 0;
  font-family: Arial, sans-serif;
  font-size: 44px;
  line-height: 1.05;
  color: var(--h-text);
  letter-spacing: -0.5px;
}
.home2026 .h-hero p{
  margin: 0 0 14px 0;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--h-muted);
}
.home2026 .h-hero-list{
  margin: 0;
  padding-left: 18px;
  color: var(--h-muted);
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}
.home2026 .h-hero-cta{
  display:flex;
  gap:10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.home2026 .h-side{
  display:flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}
.home2026 .h-side .h-hero-card{ height: 100%; }
.home2026 .h-metrics{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.home2026 .h-metric{
  background: rgba(37,99,235,.06);
  border: 1px solid rgba(37,99,235,.14);
  border-radius: 16px;
  padding: 12px;
}
.home2026 .h-metric b{
  display:block;
  font-family: Arial, sans-serif;
  font-size: 22px;
  color: var(--h-text);
}
.home2026 .h-metric span{
  display:block;
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: var(--h-muted);
  margin-top: 2px;
}

/* Ad block wrapper */
.home2026 .h-ad{
  padding: 8px 16px 0 16px;
}
.home2026 .h-ad > div,
.home2026 .h-ad iframe,
.home2026 .h-ad img{
  max-width: 100%;
}

/* Sections */
.home2026 .h-section{
  padding: 16px;
}
.home2026 .h-section-title{
  display:flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.home2026 .h-section-title h2{
  margin:0;
  font-family: Arial, sans-serif;
  font-size: 22px;
  color: var(--h-text);
}
.home2026 .h-section-title p{
  margin:0;
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: var(--h-muted);
}

/* cards */
.home2026 .h-grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.home2026 .h-grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.home2026 .h-card{
  background: var(--h-card);
  border: 1px solid var(--h-border);
  border-radius: var(--h-radius);
  box-shadow: var(--h-shadow-soft);
  padding: 14px;
  overflow:hidden;
}
.home2026 .h-card-head{
  display:flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}
.home2026 .h-card-head img{
  width: 56px;
  height:auto;
  display:block;
}
.home2026 .h-card h3{
  margin:0;
  font-family: Arial, sans-serif;
  font-size: 18px;
  color: var(--h-text);
}
.home2026 .h-card .h-card-sub{
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: var(--h-muted);
  margin-top: 2px;
}
.home2026 .h-card ul{
  margin: 10px 0 0 0;
  padding-left: 18px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: var(--h-muted);
}
.home2026 .h-card .h-card-cta{
  margin-top: 12px;
  display:flex;
  justify-content:flex-end;
}

/* integrations */
.home2026 .h-logos{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items:center;
}
.home2026 .h-logos a{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.8);
  border: 1px solid var(--h-border);
  box-shadow: 0 3px 10px rgba(15,23,42,.06);
  text-decoration:none;
  color: var(--h-text);
}
.home2026 .h-logos img{ height: 34px; width:auto; display:block; }

/* misc */
.home2026 .h-divider{
  height:1px;
  background: var(--h-border);
  margin: 10px 0;
}

.home2026 .h-small{
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: var(--h-muted);
}

/* Footer */
.home2026 .h-footer{
  padding: 16px;
  background: rgba(15,23,42,.92);
  color: rgba(255,255,255,.9);
}
.home2026 .h-footer a{ color: rgba(255,255,255,.92); text-decoration:none; }
.home2026 .h-footer a:hover{ text-decoration: underline; }
.home2026 .h-footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
}
.home2026 .h-footer-brand{
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.home2026 .h-footer-brand img{ width: 54px; height:auto; display:block; }
.home2026 .h-footer h4{
  margin: 0 0 10px 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  letter-spacing: .2px;
  color: rgba(255,255,255,.86);
}
.home2026 .h-footer-list{
  display:flex;
  flex-direction:column;
  gap: 10px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,.80);
}
.home2026 .h-footer-item{
  display:flex;
  gap: 10px;
  align-items:center;
}
.home2026 .h-footer-item img{ width: 22px; height:auto; display:block; }

/* responsive */
@media (max-width: 980px){
  .home2026 .h-hero-grid{ grid-template-columns: 1fr; }
  .home2026 .h-actions{ min-width: auto; }
  .home2026 .h-brand{ min-width: auto; }
  .home2026 .h-nav{ display:none; }
  .home2026 .h-burger{ display:inline-flex; }
}
@media (max-width: 820px){
  body.home2026.bgrnd{ padding: 10px; }
  .home2026 .h-grid-3{ grid-template-columns: 1fr; }
  .home2026 .h-grid-2{ grid-template-columns: 1fr; }
  .home2026 .h-footer-grid{ grid-template-columns: 1fr; }
  .home2026 .h-hero h1{ font-size: 34px; }
}
@media (max-width: 420px){
  .home2026 .h-hero h1{ font-size: 30px; }
  .home2026 .h-btn{ width: 100%; }
  .home2026 .h-metrics{ grid-template-columns: 1fr; }
}
