.hero{
  position: relative;
  min-height: 78vh;
  display:flex; align-items:center;
  background:
    linear-gradient(100deg, rgba(6,9,17,0.96) 0%, rgba(6,9,17,0.7) 45%, rgba(6,9,17,0.25) 80%),
    url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
}
.hero-heading{ font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight:800; line-height:1.1; }
.hero-heading .accent{ color: var(--gold); display:block; }
.hero-lede{ color: var(--text-muted); max-width: 480px; }
.play-circle{
  width:24px; height:24px; border-radius:50%;
  border:1px solid rgba(255,255,255,0.7);
  display:inline-flex; align-items:center; justify-content:center; font-size:.65rem;
}

.value-card, .focus-card, .pillar-card, .stat-card{
  background: var(--navy-card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 1.5rem;
  height: 100%;
}
.value-card .icon-badge, .focus-card .icon-badge, .pillar-card .icon-badge, .stat-card .icon-badge{
  width:44px; height:44px; border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.2rem; margin-bottom:.9rem;
}
.icon-blue{ background: rgba(63,94,251,0.18); color:#6c8cff; }
.icon-gold{ background: rgba(246,168,33,0.18); color: var(--gold); }
.icon-purple{ background: rgba(155,79,219,0.18); color:#c48cf0; }
.icon-green{ background: rgba(46,196,132,0.18); color:#3ddc97; }
.icon-orange{ background: rgba(255,140,66,0.18); color:#ff9a52; }

.discover-section{
  background: var(--navy-deep);
}
.discover-section .eyebrow{
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.8rem;
}
.discover-section .section-heading{
  color: #fff;
}
.discover-section .section-sub{
  color: var(--text-muted);
  max-width: 560px;
}
.discover-card{
  border-color: rgba(246,168,33,0.18);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.discover-card:hover{
  transform: translateY(-3px);
  border-color: rgba(246,168,33,0.3);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}
.discover-section .discover-card h3{
  color: #fff;
}
.discover-section .discover-card p{
  color: var(--text-muted);
}

.value-card h3, .focus-card h3, .pillar-card h3{ font-size:1.02rem; font-weight:700; margin-bottom:.4rem; }
.value-card p, .focus-card p, .pillar-card p{ color: var(--text-muted); font-size:.85rem; margin-bottom:0; }

.checklist{ list-style:none; padding:0; margin:0; }
.checklist li{ color: var(--text-muted); margin-bottom:.6rem; padding-left:1.6rem; position:relative; font-size:.95rem; }
.checklist li::before{
  content: "\f26e";
  font-family: "bootstrap-icons";
  position:absolute; left:0; color: var(--gold);
}

.pillar-track{ position:relative; }
.pillar-arrow{ color: var(--text-faint); font-size:1.4rem; }

.products-grid{
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
  align-items: stretch;
}
.products-grid li{
  display: flex;
}
@media (max-width: 1200px) {
  .products-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .products-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .products-grid{
    grid-template-columns: 1fr;
  }
}
.product-card{
  background: var(--navy-card);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  height: 100%;
}
.product-card .product-thumb{
  background: linear-gradient(180deg, rgba(255,255,255,0.95), #f2ece2);
  display:flex; align-items:center; justify-content:center;
  color: var(--navy-deep);
  font-size: 2.4rem;
  flex: 0 0 62%;
  min-height: 260px;
  overflow: hidden;
}
.product-card .product-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-card .product-body{
  padding: 1.25rem;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  flex:1;
}
.product-card .product-body{
  padding: 1.25rem;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  flex:1;
}
.product-card h3{ font-size:1rem; font-weight:700; margin-bottom:.35rem; }
.product-card .price{ color: var(--gold); font-weight:700; font-size:1rem; margin-bottom:1rem; }
.btn-add-cart{
  background: var(--gold); color: var(--navy-deep); border:none;
  border-radius: 12px; font-weight:700; font-size:.9rem; padding:.85rem 1rem; width:100%;
}
.carousel-nav-btn{
  width:44px; height:44px; border-radius:50%;
  border:1px solid var(--border-soft); background: var(--navy-card);
  color:#fff; display:flex; align-items:center; justify-content:center;
}

.ecosystem-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.ecosystem-card{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height: 290px;
  padding: 1.5rem;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.ecosystem-card:hover,
.ecosystem-card:focus-visible{
  transform: translateY(-6px);
  border-color: rgba(246,168,33,0.35);
  box-shadow: 0 22px 48px rgba(0,0,0,0.2);
}
.ecosystem-card.is-active{
  border-color: rgba(246,168,33,0.38);
  box-shadow: 0 20px 50px rgba(246,168,33,0.12);
}
.ecosystem-card__header{ display:flex; align-items:flex-start; justify-content:space-between; gap: 1rem; margin-bottom: 1.1rem; }
.ecosystem-icon{
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 1.35rem;
}
.ecosystem-badge{
  display:inline-flex;
  align-items:center;
  padding: .45rem .7rem;
  border-radius: 999px;
  background: rgba(246,168,33,0.12);
  color: var(--gold);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ecosystem-card h3{
  margin-bottom: .35rem;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}
.ecosystem-tagline{
  margin-bottom: .5rem;
  color: var(--gold);
  font-size: .94rem;
  font-weight: 600;
}
.ecosystem-description{
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.6;
  min-height: 3.4rem;
}
.ecosystem-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid rgba(246,168,33,0.2);
  border-radius: 999px;
  background: rgba(246,168,33,0.12);
  color: var(--gold);
  font-size: .9rem;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}
.ecosystem-card:hover .ecosystem-cta,
.ecosystem-card:focus-visible .ecosystem-cta,
.ecosystem-card.is-active .ecosystem-cta{
  background: var(--gold);
  color: var(--navy-deep);
}

@media (max-width: 768px) {
  .ecosystem-grid{ grid-template-columns: 1fr; }
  .ecosystem-card{ min-height: auto; }
}

.carousel-dots{ display:flex; gap:.4rem; justify-content:center; }
.carousel-dots span{ width:7px; height:7px; border-radius:50%; background: var(--text-faint); display:inline-block; }
.carousel-dots span.active{ background: var(--gold); width:20px; border-radius:4px; }

/* CTA banner styles removed */

.stat-card{ display:flex; align-items:center; gap:1rem; }
.stat-card .stat-num{ font-size:1.6rem; font-weight:800; }
.stat-card .stat-label{ color: var(--text-muted); font-size:.82rem; }

.impact-section{ padding: 4rem 0; }
.impact-carousel{ padding-bottom: 2.2rem; }
.impact-carousel-card{
  background: var(--navy-card);
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  min-height: 420px;
  padding: 1rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 16px 40px rgba(0,0,0,0.16);
}
.impact-image{
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1rem;
  display: block;
}
.impact-icon{ font-size: 2.2rem; margin-bottom: 1rem; }
.impact-carousel-card h3{ font-size: 1.35rem; font-weight: 700; margin-bottom: .5rem; }
.impact-carousel-card p{ color: var(--text-muted); font-size: 1rem; margin-bottom: 1rem; }
.impact-tags{ display:flex; flex-wrap:wrap; gap:.6rem; }
.impact-tags span{
  background: rgba(246,168,33,0.12);
  color: var(--gold);
  border: 1px solid rgba(246,168,33,0.2);
  border-radius: 999px;
  padding: .45rem .75rem;
  font-size: .8rem;
  font-weight: 600;
}
.impact-carousel .carousel-indicators{ bottom: -1rem; }
.impact-carousel .carousel-indicators [data-bs-target]{ width: 10px; height: 10px; border-radius: 50%; background-color: var(--text-faint); }
.impact-carousel .carousel-indicators .active{ background-color: var(--gold); width: 24px; border-radius: 999px; }
.impact-carousel .carousel-control-prev,
.impact-carousel .carousel-control-next{ width: 3rem; height: 3rem; top: auto; bottom: -1.2rem; opacity: 1; }
.impact-carousel .carousel-control-prev{ left: auto; right: 3.4rem; }
.impact-carousel .carousel-control-next{ right: 0; }
.impact-carousel .carousel-control-prev-icon,
.impact-carousel .carousel-control-next-icon{ filter: invert(1); }

.journey-step{ text-align:center; position:relative; z-index:2; padding-top:.6rem; }
.journey-step .step-icon{
  width:64px; height:64px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto .6rem; font-size:1.3rem;
  border: 2px solid rgba(246,168,33,0.18);
  background: linear-gradient(180deg, rgba(246,168,33,0.06), rgba(63,94,251,0.03));
  color: var(--gold);
  transition: transform .18s ease, box-shadow .18s ease;
}
.journey-step .step-icon:hover{ transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,0.18); }
.journey-step h3{ font-size:.95rem; font-weight:700; margin-bottom:.25rem; }
.journey-step p{ color: var(--text-muted); font-size:.82rem; margin-bottom:0; }
.journey-track{ position:relative; padding: 1.5rem 0 2.5rem; }
.journey-line{
  position:absolute; top:36px; left:6%; right:6%; height:2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.03), rgba(246,168,33,0.12), rgba(255,255,255,0.03));
  z-index:1;
}

/* Eyebrow styling for the Journey section */
#journey .eyebrow{
  color: var(--gold);
  letter-spacing: 2px;
  font-variant: small-caps;
  font-weight:700;
  font-size:0.78rem;
  margin-bottom: .6rem;
}

/* Layout for large screens: show 6 steps horizontally and center icons on the line */
@media(min-width: 992px){
  #journey .row{ display:flex; align-items:center; justify-content:space-between; }
  .journey-track .row > [class*='col-']{ display:flex; justify-content:center; }
  .journey-step{ padding-top:0; }
  .journey-line{ top:34px; }
  .journey-step .step-icon{ width:72px; height:72px; font-size:1.45rem; }
  .journey-step h3{ font-size:1rem; }
}

/* Responsive stacking for small screens */
@media(max-width: 991.98px){
  .journey-line{ display:none; }
  .journey-step .step-icon{ width:56px; height:56px; }
}

.blog-card{
  background: var(--navy-card); border:1px solid var(--border-soft);
  border-radius: 12px; overflow:hidden; height:100%;
}
.blog-card img{ width:100%; aspect-ratio: 16/10; object-fit: cover; }
.blog-card .blog-body{ padding: 1rem; }
.blog-card time{ color: var(--text-faint); font-size:.75rem; }
.blog-card h3{ font-size:.92rem; font-weight:700; margin: .4rem 0 .6rem; }
.blog-card a.read-more{ color: var(--gold); font-size:.82rem; font-weight:600; }

.connect-card{
  background: var(--navy-card); border:1px solid var(--border-soft);
  border-radius: 12px; padding: 1.6rem;
}

.site-footer{ /* kept minimal here; full styles in footer.css */ }
