:root{
  --org-bg:#0b0b0d;
  --org-text:#ffffff;
  --org-muted:#cfcfcf;
  --org-line:#34343b;
  --org-accent:#9f1010;
  --org-accent-border:#ff2b2b;
  --org-accent-dark:#760c0c;
  --org-max:1100px;
}

.org-topbar{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(10,10,12,.94);
  backdrop-filter:blur(8px);
  border-bottom:1px solid #202028;
}

.org-topbar *{
  box-sizing:border-box;
}

.org-topbar a{
  color:inherit;
  text-decoration:none;
}

.org-topbar-inner{
  width:100%;
  max-width:var(--org-max);
  margin:0 auto;
  padding:0 18px;
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.org-brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  font-size:25px;
  letter-spacing:1px;
  color:var(--org-text);
}

.org-brand-mark{
  width:40px;
  height:40px;
  border-radius:12px;
  background:linear-gradient(180deg,var(--org-accent),var(--org-accent-dark));
  border:1px solid var(--org-accent-border);
  box-shadow:0 6px 18px rgba(0,0,0,.25);
  flex:0 0 40px;
}

.org-nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  flex-wrap:wrap;
}

.org-nav a{
  font-size:14px;
  color:#f3f3f3;
  opacity:.92;
}

.org-nav a:hover{
  opacity:1;
}

.org-nav-cta{
  display:inline-block;
  padding:12px 18px;
  border-radius:14px;
  font-weight:900;
  background:#17171c;
  border:1px solid var(--org-line);
  color:#fff !important;
}

@media (max-width:700px){
  .org-topbar-inner{
    align-items:flex-start;
    flex-direction:column;
    padding:14px 18px;
  }

  .org-brand{
    font-size:23px;
  }

  .org-brand-mark{
    width:35px;
    height:35px;
    border-radius:10px;
    flex-basis:35px;
  }

  .org-nav{
    width:100%;
    justify-content:flex-start;
  }
}
