/* ===== COMMUNITY CATEGORY SELECTOR ===== */
.hostTabs{
  display:flex;
  gap:18px;
  justify-content:flex-start;
  align-items:center;
  overflow-x:auto;
  overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
  padding:0 10px 8px;
  margin:0 0 16px;
  scrollbar-width:none;
  position:relative;
  white-space:nowrap;
  scroll-snap-type:x proximity;
}

.hostTabs::-webkit-scrollbar{
  display:none;
}

.hostTab{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:8px;
  padding:6px 2px 10px;
  border:none;
  background:none;
  border-radius:0;
  color:var(--muted);
  font-size:14px;
  font-weight:650;
  white-space:nowrap;
  position:relative;
  scroll-snap-align:start;
  cursor:pointer;   /* ← ADD THIS */
  -webkit-tap-highlight-color: transparent;
}

.hostTab::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:3px;
  border-radius:999px;
  background:transparent;
}



.hostTab:hover{
  transform:translateY(-1px);
  color:var(--accent);
}



.hostTabIcon{
  display:flex;
  align-items:center;
  justify-content:center;
  height:28px;
  margin:2px 0 2px;
}

.hostTabIcon svg{
  width:18px;
  height:18px;
  stroke-width:2;
}

.hostTabLabel{
  font-size:16px;
  line-height:1.05;
  font-weight:800;
  letter-spacing:-0.01em;
}

.hostTabMeta{
  font-size:12.5px;
  font-weight:600;
  opacity:.8;
}

.hostTab.active{
  color:var(--btn);
}

.hostTab.active::after{
  background:var(--btn);
}

.hostTab.active .hostTabMeta{
  color:rgba(255,255,255,.85);
}

.hostTabs,
.hostTab,
.hostTab *{
  user-select:none;
  -webkit-user-select:none;
}

.hostExplain{
  text-align:center;
  font-size:clamp(24px, 3vw, 34px);
  line-height:1.15;
  font-weight:800;
  letter-spacing:-0.02em;
  color:var(--text);
  margin:0 0 12px;
}

.hostExplain h2{
  font-size: clamp(26px,3vw,32px);
  font-weight:700;
  letter-spacing:-0.02em;
  line-height:1.2;
  text-align:center;
  margin:0 0 16px 0;
}

/* CTA Styles */

.cta{
  display:inline-block;
  padding:14px 22px;
  background:var(--btn);
  color:var(--btnText);
  border-radius:16px;
  font-weight:900;
  text-decoration:none;
  will-change: transform;
  animation: ctaBreathe 2.8s ease-in-out 1.2s infinite;
}

.secondaryCta{
  padding:12px 18px;
  font-size:14px;
  border-radius:14px;
  background:transparent;
  color:var(--btn);
  border:1px solid var(--border-accent);
  animation:none;
}

.heroMission {
  margin: 14px auto 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
  opacity: 0.8;
}

.heroBottomCtaRow{
  gap:14px;
  align-items:center;
}

.heroBottomCta {
  display: flex;
  justify-content: flex-start; /* aligns with left text blocks */
  margin-top: 20px;
}

.heroBottomCta.center {
  justify-content: center;
}


.sectionCta{
  display:flex;
  justify-content:flex-end;
  margin-top:28px;
}

.textLink {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(31,111,74,0.3);
  padding-bottom: 2px;
}

.textLink:hover {
  border-bottom-color: var(--accent);
}

/*Benefit Styles */

.benefit{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:18px;
  padding: 1.2rem 1.25rem 1.25rem;  /* reduce top padding */
  height: 100%;
}

.benefit h3{
  font-size: 1.38rem;
  line-height: 1.25;
  font-weight: 650; /* or 600 if you prefer */
  letter-spacing: -0.01em;
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.benefit p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.45;
}

.benefit.isPrimary{
  background: var(--surface-warm);
  border: 1.8px solid var(--border-warm);
  box-shadow: var(--shadow-soft);
}

.benefit.isPrimary h3{
  font-size: 1.42rem;
}

.benefit.newCommunity{
  background: linear-gradient(
    180deg,
    rgba(31,111,74,.10),
    rgba(31,111,74,.04)
  );
  border: 1.8px solid var(--border-accent-strong);
}

/* Panel Styles */

.panelShell{
  width:100%;
  max-width:1100px;
  margin:28px auto;
  padding:34px 34px 38px;
  background:var(--band);
  border:1px solid var(--line);
  border-radius:var(--radius-panel);
  box-shadow:var(--shadow);
  overflow:hidden;
}

/* Host Styles */

.hostBenefits{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:30px;
}

.hostBenefit{
  background:var(--card);
  padding:24px 22px;
  border-radius:18px;
  border:1px solid var(--line);
  text-align:center;
  height:100%;
}

.hostBenefit h3{
  font-size:1.4rem;
  line-height:1.2;
  margin:0 0 10px;
}

.hostBenefit p{
  margin:0;
  font-size:15px;
  line-height:1.45;
  color:var(--muted);
}

.hostExample{
  margin-top:24px;
  font-size:15px;
  line-height:1.45;
  color:var(--muted);
}

/* Community Styles */

.communityFeature{
  text-align:center;
  padding:18px;
  border-radius:14px;
  background:var(--card);
  border:1px solid var(--line);
}

.communityFeature h4{
  margin:6px 0 6px;
  font-size:16px;
}

.communityFeature p{
  font-size:13px;
  line-height:1.4;
  color:var(--muted);
}

.communityPlatform{
  margin-top:10px;
  padding:26px 26px 28px;
  border-radius:24px;
  border:1px solid var(--border-accent);
  background:var(--surface-soft);
}

.platformTitle{
  text-align:center;
  font-size:18px;
  font-weight:800;
  margin-bottom:16px;
  letter-spacing:-0.01em;
}

.communityTag{
  margin-top:16px;
  font-weight:700;
  color:var(--btn);
  text-align:center;
}

.icon{
  font-size:22px;
}

/* Arch Styles */

.archStack{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-top:28px;
  max-width:720px;
}

.archCard{
  padding:18px 16px;
  border-radius:20px;
  border:1px solid var(--line);
  background:var(--card);
  position:relative;
}

.archCommunity{
  border:1.6px solid var(--border-accent-strong);
  background:var(--surface-soft-2);
}

.archThin{
  padding:16px;
  border-radius:16px;
  border:1px solid var(--line);
  background:var(--card);
}

.archThin h3{
  font-size:18px;
  margin:0 0 6px;
}

.archThin p{
  margin:0;
  font-size:14px;
  color:var(--muted);
}


.archInfra{
  margin-top:12px;
  padding:16px 20px;
  border-radius:14px;
  border:1px solid var(--line);
  background:var(--surface-soft);
}

.archInfra p{
  margin:4px 0;
  font-size:14px;
}

.archFlowLabel{
  text-align:center;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:10px;
}

.archArrow{
  text-align:center;
  font-size:18px;
  color:var(--muted);
  margin:4px 0 2px;
}


    /* ===== SHARED SITE NAV ===== */

.siteNav{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(244,247,245,.92);
  border-bottom: 1px solid var(--line);
}

.siteNavInner{
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 18px;
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.siteBrand{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--btn);
  font-weight: 900;
  font-size: 17px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brandMark{
  width:30px;
  height:30px;
}

.siteBrand img{
  width: 30px;
  height: 30px;
  display: block;
}

.siteNavLinks{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.siteNavLink{
  position: relative;
  text-decoration: none;
  color: var(--muted);
  font-weight: 750;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 12px;
  white-space: nowrap;
}

.siteNavLink:hover{
  background: transparent;
  color: var(--text);
}

/* ACTIVE STATE */
.siteNavLink.isActive {
  color: var(--text);
  font-weight: 800;
}

.siteNavLink.isActive::after {
  content: "";
  position: absolute;
  left: 10px;          /* align with padding */
  right: 10px;
  bottom: -4px;
  height: 2px;
  background: var(--btn);
  border-radius: 2px;
}

.siteNavActions{
  display: flex;
  align-items: center;
  gap: 10px;
}

.siteNavCta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 16px;
  background: var(--btn);
  color: var(--btnText);
  font-weight: 900;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
}

.siteNavCta:hover{
  background: var(--accent-hover);
  color: var(--btnText);
}

.siteFooter{
  border-top:1px solid rgba(16,32,24,.08);
  margin-top:56px;
  padding:48px 20px 32px;
  background:#f6f8f6;
}

.siteFooterInner{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  gap:14px;
  text-align:center;
}

.siteFooterBrand{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-weight:800;
  margin-bottom: 10px;
  color:var(--text);
}

.footerMark{
  width:18px;
  height:18px;
  opacity:.8;
}

.siteFooterLinks{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  margin-bottom: 10px;
  gap:14px;
}

.siteFooterLinks a,
.siteFooterContact a{
  color:var(--accent);
  text-decoration:none;
  font-weight:700;
}

.siteFooterContact{
  color:var(--muted);
  font-size:14px;
  opacity: 0.85;
}

.siteFooterLegal{
  font-size:12px;
  color:var(--muted);
  margin-top:6px;
  opacity: 0.6;
}

.siteFooter a {
  font-weight: 700;
  opacity: 0.85;
}

.siteFooter a:hover {
  opacity: 1;
}

.siteFooterInfra{
  margin-top: 6px;
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.6;
}

.heroHelp {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  opacity: 0.7;
}



.heroHelp a{
  color:var(--accent);
  text-decoration:none;
  font-weight:700;
}

.bottomHelp{
  margin-top:14px;
  text-align:center;
  font-size:14px;
  color:var(--muted);
}

.bottomHelp a{
  color:var(--accent);
  text-decoration:none;
  font-weight:700;
}

.menuToggle{
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(31,111,74,.22);
  border-radius: 14px;
  background: var(--card);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menuToggle span{
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  display: block;
}

.mobileMenu{
  display: none;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 18px 16px;
}

.mobileMenu.open{
  display: block;
}

.mobileMenuLink,
.mobileMenuCta{
  display: block;
  text-decoration: none;
  border-radius: 14px;
  padding: 14px 16px;
  margin-top: 10px;
  font-weight: 750;
}

.mobileMenuLink{
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--line);
}

.mobileMenuCta{
  background: var(--btn);
  color: var(--btnText);
  font-weight: 900;
}

/* ===== Business Case Section ===== */

.businessCaseSection{
  padding:28px 0 6px;
}

.businessCasePanel{
  max-width:980px;
  margin:0 auto;
  padding:34px 36px 38px;
  text-align:center;
}

.businessCaseKicker{
  display:inline-block;
  margin:0 auto 12px;
  padding:5px 12px;
  border:1px solid var(--border-warm);
  border-radius:8px;
  color:var(--accent);
  font-size:13px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.businessCasePanel h2{
  font-size:clamp(32px,4vw,48px);
  line-height:1.05;
  letter-spacing:-0.04em;
  margin:0 0 16px;
}

.businessCaseIntro,
.businessCaseScale{
  margin:0 auto 10px;
  max-width:640px;
  color:var(--muted);
  font-size:18px;
  line-height:1.42;
}

.businessMathStrip{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  margin:28px auto 24px;
  max-width:760px;
}

.businessMathItem{
  padding:8px 18px;
  text-align:center;
}

.businessMathItem + .businessMathItem{
  border-left:1px solid rgba(16,32,24,.14);
}

.businessMathIcon{
  font-size:24px;
  line-height:1;
  margin-bottom:10px;
}

.businessMathTitle{
  color:var(--accent);
  font-size:20px;
  font-weight:900;
  line-height:1.15;
  margin-bottom:5px;
}

.businessMathCopy{
  color:var(--muted);
  font-size:15px;
  line-height:1.35;
}

.businessUpsideBox{
  max-width:760px;
  margin:0 auto 26px;
  padding:16px 18px;
  border:1.6px solid var(--border-accent-strong);
  border-radius:16px;
  background:var(--surface-soft);
  color:var(--text);
  font-size:17px;
  line-height:1.35;
}

.businessUpsideBox strong{
  display:block;
}

.businessUpsideBox span{
  display:block;
  color:var(--muted);
  margin-top:3px;
}

.businessUrgency{
  max-width:760px;
  margin:0 auto;
  padding-top:22px;
  border-top:1px solid rgba(16,32,24,.12);
}

.businessUrgency h3{
  font-size:clamp(24px,3vw,34px);
  line-height:1.1;
  letter-spacing:-0.03em;
  margin:0 0 12px;
}

.businessUrgency p{
  margin:0 auto 8px;
  color:var(--muted);
  font-size:17px;
  line-height:1.4;
}

.businessUrgency span{
  color:var(--accent);
  font-weight:900;
}

.businessUrgency b{
  color:var(--text);
}

.businessValueStatement{
  max-width:760px;
  margin:20px auto 0;
  color:var(--muted);
  font-size:16px;
  line-height:1.45;
}

.businessCaseFootnote{
  max-width:700px;
  margin:18px auto 0;
  color:var(--muted);
  font-size:15px;
  line-height:1.45;
  font-style:italic;
}

.businessIncluded{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin:18px auto 0;
  max-width:820px;
}

.businessIncluded span{
  padding:8px 10px;
  border-radius:999px;
  background:rgba(31,111,74,.08);
  border:1px solid rgba(31,111,74,.14);
  color:var(--text);
  font-size:13px;
  font-weight:700;
  line-height:1.2;
}


/* Mobile */
@media (max-width:768px){
  .businessCasePanel{
    padding:30px 20px 32px;
  }

  .businessCasePanel h2{
    font-size:38px;
  }

  .businessCaseIntro,
  .businessCaseScale{
    font-size:18px;
  }

  .businessMathStrip{
    grid-template-columns:1fr;
    gap:14px;
    margin:24px auto;
  }

  .businessMathItem{
    padding:16px 14px;
    border:1px solid var(--line);
    border-radius:16px;
    background:var(--card);
  }

  .businessMathItem + .businessMathItem{
    border-left:1px solid var(--line);
  }

  .businessMathTitle{
    font-size:22px;
  }

  .businessUrgency h3{
    font-size:30px;
  }
}

/* Small mobile */
@media (max-width:480px){
  .businessCasePanel{
    padding:26px 16px 28px;
  }

  .businessCasePanel h2{
    font-size:34px;
  }

  .businessCaseIntro,
  .businessCaseScale,
  .businessUrgency p{
    font-size:16px;
  }

  .businessUrgency h3{
    font-size:26px;
  }
}

@media (max-width: 900px){
  .siteNavInner{
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 0 16px;
  }

  .siteNavLinks{
    display: none;
  }

  .menuToggle{
    display: inline-flex;
  }
}

@media (max-width: 640px){
  .siteNavCta{
    display: none;
  }

  .siteBrand{
    font-size: 16px;
  }

  .siteBrand img{
    width: 28px;
    height: 28px;
  }

  .siteNavInner{
    min-height: 60px;
    padding: 0 14px;
  }

  .mobileMenu{
    padding: 0 14px 14px;
  }

  .sectionCta{
    justify-content:center;
  }

  .heroBottomCtaRow{
    flex-direction:column;
  }

  .heroBottomCtaRow .cta{
    width:100%;
    text-align:center;
  }
}
