.elementor-53 .elementor-element.elementor-element-579fe76{--display:flex;}/* Start custom CSS for html, class: .elementor-element-fe3a658 *//* ===== Palette: pure black hero ===== */
:root{
  --hero-bg: #000;               /* ← pure black */
  --panel-bg: #0f1520;
  --panel-brd: rgba(255,255,255,.10);
  --panel-glow: 0 14px 40px rgba(0,0,0,.45);
  --text-main: #e9eef6;
  --text-dim:  #c6cfdb;
  --title:     #ffffff;
}

/* Container */
.syre-hero{
  background: var(--hero-bg);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--panel-glow);
  color: var(--text-main);

  /* grid with a fixed area for the art so it can't disappear */
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  position: relative;           /* keep right art inside */
}
@media (max-width: 1024px){
  .syre-hero{ grid-template-columns: 1fr; }
}

/* Left */
.syre-hero__title{
  color: var(--title);
  font-weight: 800;
  font-size: clamp(30px, 3.6vw, 25px);
  line-height: 1.12;
  margin: 0 0 10px;
}
.syre-hero__sub{
  color: var(--text-dim);
  font-size: clamp(14px, 1.6vw, 10px);
  margin: 0 0 24px;
}

/* Feature cards: 3 across, roomy so text doesn’t break vertically */
.syre-hero__features{
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: clamp(12px, 2.2vw, 22px);
}
@media (max-width: 980px){
  .syre-hero__features{ grid-template-columns: 1fr; }
}
.syre-f__card{
  background: var(--panel-bg);
  border: 1px solid var(--panel-brd);
  border-radius: 16px;
  box-shadow: var(--panel-glow);
  padding: clamp(14px, 2vw, 18px);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px;
  align-items: start;
}
.syre-f__icon{
  width: 60px; height: 60px; border-radius: 12px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  overflow: hidden;
}
.syre-f__icon img{
  width:100%; height:100%; object-fit:contain;
  filter: grayscale(1) brightness(1.15);
}
.syre-f__title{
  margin: 2px 0 6px; color:#dde6f1; font-weight:800; font-size: clamp(16px, 1.6vw, 20px);
}
.syre-f__text{
  margin:0; color: var(--text-dim); font-size: clamp(14px, 1.4vw, 16px); line-height:1.5;
}

/* Right image – ensure it is VISIBLE */
.syre-hero__right{
  display:flex; align-items:center; justify-content:center;
  min-height: 260px;             /* reserve space so it can’t collapse */
}
.syre-hero__art{
  max-width: min(540px, 100%);
  height: auto;
  filter: grayscale(1) contrast(1.08) brightness(1.06);
  /* remove any masking that could hide it */
  -webkit-mask-image: none;
          mask-image: none;
  opacity: 1;
}

/* If your theme adds overflow hidden on containers, this extra ensures visibility */
.syre-hero, .syre-hero__right, .syre-hero__left { overflow: visible; }/* End custom CSS */