
/* SOON V27 — unified sticky header for all public pages */
.soon-global-header{
  position:sticky;
  top:0;
  z-index:5000;
  width:100%;
  background:#fff;
  box-shadow:0 1px 0 rgba(15,18,24,.08),0 7px 22px rgba(15,18,24,.035);
  isolation:isolate;
}
.soon-global-shell{
  width:min(1240px,calc(100% - 36px));
  margin-inline:auto;
}
.soon-global-topbar{
  background:#0d0f12;
  color:#fff;
}
.soon-global-topbar-row{
  min-height:36px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  font-size:12px;
}
.soon-global-topbar-row a{
  color:#fff;
  text-decoration:none;
  font-weight:800;
  white-space:nowrap;
}
.soon-global-navshell{
  background:rgba(255,255,255,.98);
  backdrop-filter:saturate(150%) blur(10px);
  -webkit-backdrop-filter:saturate(150%) blur(10px);
}
.soon-global-navbar{
  min-height:72px;
  display:flex;
  align-items:center;
  gap:28px;
}
.soon-global-logo{
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
}
.soon-global-logo img{
  display:block;
  width:58px;
  height:58px;
  object-fit:contain;
}
.soon-global-nav{
  display:flex;
  align-items:center;
  gap:clamp(16px,1.7vw,28px);
  margin-inline-start:auto;
}
.soon-global-nav a{
  position:relative;
  display:inline-flex;
  align-items:center;
  min-height:72px;
  color:#17191d;
  text-decoration:none;
  font-size:14px;
  font-weight:800;
  white-space:nowrap;
  transition:color .18s ease;
}
.soon-global-nav a:hover,
.soon-global-nav a.active{
  color:#ed1c24;
}
.soon-global-nav a.active::after{
  content:"";
  position:absolute;
  inset-inline:0;
  bottom:14px;
  height:2px;
  border-radius:999px;
  background:#ed1c24;
}
.soon-global-cta{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 18px;
  border-radius:999px;
  background:#ed1c24;
  color:#fff!important;
  text-decoration:none;
  font-size:14px;
  font-weight:900;
  box-shadow:0 9px 22px rgba(237,28,36,.18);
  transition:background .18s ease,transform .18s ease;
}
.soon-global-cta:hover{
  background:#cd171e;
  transform:translateY(-1px);
}
@media(max-width:900px){
  .soon-global-shell{width:calc(100% - 28px)}
  .soon-global-navbar{
    min-height:64px;
    gap:14px;
  }
  .soon-global-logo img{
    width:50px;
    height:50px;
  }
  .soon-global-nav{
    display:none;
  }
  .soon-global-cta{
    margin-inline-start:auto;
    min-height:40px;
    padding:0 15px;
    font-size:13px;
  }
}
@media(max-width:640px){
  .soon-global-shell{width:calc(100% - 22px)}
  .soon-global-topbar-row{
    min-height:46px;
    flex-direction:column;
    justify-content:center;
    text-align:center;
    gap:2px;
    padding:5px 0;
    font-size:11px;
  }
  .soon-global-navbar{
    min-height:60px;
  }
  .soon-global-logo img{
    width:46px;
    height:46px;
  }
  .soon-global-cta{
    min-height:38px;
    padding:0 13px;
    font-size:12px;
  }
}
