.oa-brand-switch{
  --switch-padding: 4px;
  --pill-padding-y: 7px;
  --pill-padding-x: 14px;
  --pill-font-size: 14px;
  --pill-radius: 999px;
  --switch-bg: rgba(255,255,255,0.03);
  --switch-border: rgba(255,255,255,0.12);
  --pill-text: #9fb0c3;
  --pill-text-active: #e8eef6;
  --indicator-bg: rgba(59,130,246,0.18);

  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  width: max-content;
  padding: var(--switch-padding);
  border: 1px solid var(--switch-border);
  border-radius: var(--pill-radius);
  background: var(--switch-bg);
  isolation: isolate;
  min-height: 42px;
}

.oa-brand-switch__indicator{
  display: none;
}

.oa-brand-pill{
  min-width: 0;
  width: auto;
}

.oa-brand-switch--oa .oa-brand-pill--oa,
.oa-brand-switch--nm .oa-brand-pill--nm{
  background: linear-gradient(
    180deg,
    rgba(59,130,246,0.28),
    rgba(59,130,246,0.18)
  );
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

.oa-brand-switch--oa .oa-brand-switch__indicator{
  transform: translateX(0%);
}

.oa-brand-switch--nm .oa-brand-switch__indicator{
  transform: translateX(calc(100% + 2px));
}

.oa-brand-pill{
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: var(--pill-padding-y) var(--pill-padding-x);
  font-size: var(--pill-font-size);
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.025em;
  color: var(--pill-text);
  border-radius: var(--pill-radius);
  transition: color 180ms ease, opacity 180ms ease;
}

.oa-brand-pill:hover,
.oa-brand-pill:focus-visible{
  color: #e8eef6;
  text-decoration: none;
  outline: none;
}

.oa-brand-pill:visited{
  color: inherit;
}

.oa-brand-switch--oa .oa-brand-pill--oa,
.oa-brand-switch--nm .oa-brand-pill--nm{
  color: var(--pill-text-active);
}

/* active brand emphasis */

.oa-brand-switch--oa .oa-brand-pill--oa,
.oa-brand-switch--nm .oa-brand-pill--nm{
  font-size: calc(var(--pill-font-size) * 1.8);
  letter-spacing: -0.02em;
}

.oa-brand-primary{
  color: #ffffff;
}

.oa-brand-accent{
  color: #3b82f6;
}

@media (max-width: 760px){
  .oa-brand-switch{
    --switch-padding: 3px;
    --pill-padding-y: 6px;
    --pill-padding-x: 10px;
    --pill-font-size: 12px;
    min-height: 36px;
    max-width: 100%;
  }
}